/* =============================================
   ROOT VARIABLES (MERGED)
   ============================================= */
:root {
    /* Core colours */
    --navy: #002367;
    --navy-light: #1a3f7a;
    --accent: #56AD32;
    --accent-light: #6bc44a;
    --accent-dark: #3e8a26;
    --success: #16a34a;
    --danger: #dc2626;
    --navy-deep: #041a4d;
    --navy-mid: #1e40af;
    --green: #59c135;
    --green-deep: #3f9e2c;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --ink: #0d1b3d;
    --steel: #64748b;
    --steel-light: #94a3b8;
    --line: #e6ecf5;
    --bg: #f5f7fb;

    /* Neutrals & backgrounds */
    --border: #e6ecf5;
    --border-light: #F1F5F9;
    --text-muted: #64748b;
    --text-body: #2c3e66;
    --text-heading: #0a1c3a;
    --bg-body: #F8FAFE;
    --white: #FFFFFF;
    --card-bg: #ffffff;
    --light-gray: #f1f5f9;
    --navy-light-bg: #EBF0FF;
    --navy-pale: #F5F7FF;
    --accent-light-bg: #EEFAE8;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 35, 103, 0.12);
    --shadow-elevation: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 25px 45px -14px rgba(6, 43, 132, 0.16);
    --shadow-soft: var(--shadow-md);
    --shadow-hover: var(--shadow-lg);

    /* Radius */
    --radius: 16px;
    --radius-sm: 16px;
    --radius-xs: 12px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-smooth: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    /* Glass / extra */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --gradient-main: linear-gradient(135deg, var(--navy), var(--accent));
    --card-border: var(--border);
    --text-main: var(--text-body);
    --font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* =============================================
   RESET
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   BASE BODY
   ============================================= */
body {
    background: var(--bg-body);
    font-family: var(--font-family);
    color: var(--text-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 35, 103, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(86, 173, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* =============================================
   SCROLL BAR
   ============================================= */
.scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--accent), var(--navy));
    width: 0%;
    transition: width 0.05s linear;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -40px) scale(1.05);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shared fade-up (merged) */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s all ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: 0.65s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(35px);
    transition: 0.65s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   1. SETTINGS PAGE
   ============================================= */
.settings-wrapper {
    min-height: 100vh;
    padding: 3rem 1.5rem;
    animation: fadeSlideUp 0.5s ease-out forwards;
}

.settings-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(125deg, var(--navy) 20%, var(--navy-light) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header h1 i {
    background: linear-gradient(135deg, var(--navy), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.9rem;
}

.page-header p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.success-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeSlideUp 0.4s ease-out forwards;
}

.success-banner i {
    font-size: 1.15rem;
}

.settings-card {
    background: var(--card-bg);
    border-radius: 1.6rem;
    padding: 1.8rem 2rem;
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.settings-card:hover {
    box-shadow: var(--shadow-lg);
}

.settings-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--accent), #8bc34a);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 0.9rem;
}

.card-header .icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 35, 103, 0.08), rgba(86, 173, 50, 0.08));
    flex-shrink: 0;
}

.card-header .icon-badge i {
    font-size: 1.3rem;
    color: var(--navy);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

.notif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0.25rem;
    border-radius: 12px;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.notif-item:hover {
    background: #f8fafc;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notif-info i {
    font-size: 1.15rem;
    color: var(--accent);
    width: 26px;
    text-align: center;
}

.notif-info span {
    font-weight: 500;
    color: var(--text-body);
}

.notif-info small {
    display: block;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.78rem;
    margin-top: 2px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.25s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--accent);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

input:focus-visible+.slider {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.pref-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}

.pref-item {
    flex: 1;
    min-width: 200px;
}

.pref-label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-heading);
    font-size: 0.92rem;
}

.pref-label i {
    color: var(--navy);
}

select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: white;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-body);
    cursor: pointer;
    transition: 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d6f8f' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

select:hover {
    border-color: #c7d2e3;
}

select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 35, 103, 0.1);
}

.security-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.sec-btn {
    background: white;
    border: 1.5px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.sec-btn i {
    font-size: 1.1rem;
    color: var(--navy);
}

.sec-btn:hover {
    border-color: var(--navy);
    background: #f0f4ff;
    transform: translateY(-2px);
}

.security-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 10px;
}

.security-note i {
    color: #f59e0b;
    margin-top: 2px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid transparent;
}

.support-link i {
    font-size: 1.2rem;
    color: var(--navy);
}

.support-link:hover {
    background: #eef2ff;
    transform: translateX(4px);
    color: var(--navy);
    border-color: #dbe4ff;
}

hr {
    margin: 1.2rem 0;
    border: none;
    border-top: 1px solid var(--border);
}

.save-btn {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 0.5rem;
}

.save-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 35, 103, 0.25);
}

.save-btn:disabled {
    opacity: 0.7;
    cursor: progress;
    transform: none;
}

.save-btn .spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.7s linear infinite;
}

.save-btn.is-loading .spinner {
    display: inline-block;
}

.save-btn.is-loading i {
    display: none;
}

/* =============================================
   2. ABOUT PAGE
   ============================================= */
.about-section {
    padding: 20px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy-light-bg);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-sub {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.02rem;
}

.hero-about {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: white;
    padding: 5rem 0 6.5rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.2rem;
    line-height: 1.08;
}

.hero-title span {
    color: var(--accent);
}

.hero-tagline {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
    max-width: 540px;
    line-height: 1.7;
}

.hero-mission {
    font-size: 0.92rem;
    opacity: 0.65;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-floating-card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    z-index: 3;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--border-light);
}

.hero-floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-light-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    padding: 1.8rem;
    margin-top: 50px;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 35, 103, 0.12);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.card-icon.green {
    background: var(--accent-light-bg);
    color: var(--accent);
}

.card-icon.blue {
    background: var(--navy-light-bg);
    color: var(--navy);
}

.card-icon.center {
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.about-image-accent {
    position: absolute;
    z-index: -1;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    border: 2px solid var(--accent);
    opacity: 0.2;
}

.who-list {
    list-style: none;
    padding: 0;
    margin-top: 1.8rem;
}

.who-list li {
    padding: 0.65rem 0;
    color: var(--text-body);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.who-list li .wl-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--accent-light-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.why-item {
    display: flex;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--navy-pale);
}

.why-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2px;
}

.why-item strong:hover {
    color: var(--text-body);
}

.why-item small {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.stats-box {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

.stat-item {
    padding: 0.8rem;
    text-align: center;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.55rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    height: 55px;
    margin: auto;
}

.step-num {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 35, 103, 0.2);
    transition: var(--transition);
}

.step-col {
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 27px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-col:hover .step-num {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent);
    box-shadow: 0 8px 25px rgba(86, 173, 50, 0.3);
}

.team-card {
    text-align: center;
}

.team-img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.1rem;
    display: block;
    border: 3px solid var(--accent-light-bg);
    transition: var(--transition);
}

.team-social {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.team-social a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--navy);
}

/* ===== SWIPER ===== */
.testimonialSwiper {
    padding: 20px 10px 60px;
    position: relative;
}

.swiper-slide {
    display: flex;
    height: auto !important;
}

.swiper-slide .about-card {
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 35, 103, 0.12);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--navy);
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 0;
}

.rating-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* =============================================
   3. BLOG
   ============================================= */
.badge-category {
    background: #eef2ff;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #062b84;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #4b5563;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.25rem;
}

.blog-full-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1f2937;
}

.blog-full-content p {
    margin-bottom: 1.5rem;
}

.blog-full-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecef;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #062b84;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    text-decoration: none;
    color: #062b84;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: 0.2s;
}

.read-more:hover {
    gap: 0.5rem;
    color: #1e40af;
}

/* =============================================
   4. MARKET / JOB BOARD
   ============================================= */
.market-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.service-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.cat-card {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.cat-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.cat-card:hover .cat-bg {
    transform: scale(1.08);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .15),
            transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
}

.cat-overlay h6 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.cat-card.active {
    background: var(--navy);
    border-color: var(--navy);
}

.cat-card.active h6,
.cat-card.active {
    color: #fff;
}



/* Hero clean */
.hero-clean {
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 2.5rem;
}

.hero-clean .container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.search-wrapper {
    background: var(--white);
    border-radius: 60px;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 0;
    font-size: 1rem;
    outline: none;
    min-width: 100px;
}

.search-btn {
    background: var(--accent);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    white-space: nowrap;
}

.filter-section {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.filter-chip.active,
.filter-chip:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.main-grid {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

/* Stats (job) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem 0.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-card .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Job list */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.job-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.job-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-body);
    border-radius: 30px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job-action {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.apply-form {
    display: flex;
    gap: 0.8rem;
}

.apply-input {
    flex: 1;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-size: 0.9rem;
}

.apply-btn {
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* =============================================
   5. LANGUAGE SELECTION (GLASS)
   ============================================= */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--white);
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: floatOrb 12s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--navy-light-bg);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-light-bg);
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #f3e8ff;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    animation-delay: 5s;
}

.glass-container {
    width: 100%;
    max-width: 800px;
    margin: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 10;
}

.logo-section {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 35, 103, 0.1);
}

.brand-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(86, 173, 50, 0.2);
    transform: translateY(-3px);
}

.section-block {
    margin-bottom: 45px;
}

.section-block img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.section-block img:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lang-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lang-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 35, 103, 0.1);
}

.lang-card.active {
    background: var(--white);
    border: 2px solid var(--accent);
    box-shadow: 0 8px 20px rgba(86, 173, 50, 0.2);
}

.lang-card.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--white), var(--white)), var(--gradient-main);
    z-index: 0;
}

.lang-card span {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.lang-card::after {
    content: attr(data-lang);
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    color: var(--white);
    background: var(--accent);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.lang-card.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

.action-section {
    margin-top: 25px;
}

/* CONTINUE BUTTON (merged) */
.btn-continue {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
}

.btn-continue.enabled {
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 35, 103, 0.3);
}

.btn-continue.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(86, 173, 50, 0.4);
}

.btn-continue:active {
    transform: scale(0.98);
}

.btn-continue {
    background: #012974 !important;
    color: white !important;
}

.btn-continue:hover {
    background: #50A833 !important;
}

/* =============================================
   6. CTA / MISC
   ============================================= */
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--navy-light) 100%);
    border-radius: var(--radius);
    padding: 4rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.btn-pill {
    border-radius: 50px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-green {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(86, 173, 50, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: white;
    color: var(--navy);
}

.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%);
    color: white;
    position: relative;
}

.spacer-top {
    padding-top: 6rem !important;
}

.spacer-bottom {
    padding-bottom: 6rem !important;
}

.bg-white-block {
    background: var(--white);
}

/* Modal overrides */
.modal .form-control,
.modal .form-select {
    width: 100%;
    display: block;
    padding: 12px 15px;
    border: 1px solid #d0d7de;
    border-radius: 10px;
    background: #fff;
    color: #222;
}

.modal textarea {
    min-height: 120px;
}

.contact-card {
    text-align: center;
}

.contact-icon {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .settings-wrapper {
        padding: 1.5rem 1rem;
    }

    .settings-card {
        padding: 1.4rem 1.3rem;
    }

    .pref-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }

    .security-actions {
        flex-direction: column;
    }

    .sec-btn {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-about {
        padding: 3.5rem 0 4.5rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .hero-floating-card {
        display: none;
    }

    .stats-box {
        padding: 2.5rem 1.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .glass-container {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 20px;
        background: var(--white);
    }

    h2 {
        font-size: 1.3rem;
    }

    .lang-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lang-card span {
        font-size: 0.85rem;
    }

    .lang-card {
        min-height: 120px;
        padding: 20px 10px;
    }

    .lang-card::after {
        font-size: 0.75rem;
    }

    .hero-clean {
        padding: 2rem 0;
        text-align: center;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .search-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
    }

    .search-input {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .search-btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card:last-child {
        grid-column: span 2;
    }

    .job-header {
        flex-direction: column;
    }

    .job-badge {
        align-self: flex-start;
        margin-top: 5px;
    }

    .apply-form {
        flex-direction: column;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
    }

    .job-meta span {
        width: 100%;
    }

    .service-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card:last-child {
        grid-column: span 1;
    }
}



/* ============================================================
   pricing.css — LabourNex Subscription Plans page
   Save this at: Static/css/pricing.css
   ============================================================ */

/* ============ HERO ============ */
.pricing-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d5c08 130%);
    padding: 64px 0 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 90% 0%, rgba(89, 193, 53, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 45% at 5% 100%, rgba(217, 119, 6, 0.12) 0%, transparent 55%);
}

.pricing-hero .wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(89, 193, 53, 0.14);
    border: 1px solid rgba(89, 193, 53, 0.4);
    color: #8be07a;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.3rem;
}

.pricing-hero h1 {
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin-bottom: 0.9rem;
    line-height: 1.15;
}

.pricing-hero p {
    color: #C9D2E8;
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto;
}

.status-banner {
    max-width: 780px;
    margin: 2rem auto 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    backdrop-filter: blur(6px);
}

.status-banner i {
    font-size: 1.4rem;
    color: var(--green);
    flex-shrink: 0;
}

.status-banner strong {
    color: #fff;
    font-size: 0.92rem;
    display: block;
    margin-bottom: 2px;
}

.status-banner span {
    color: #C9D2E8;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ============ YOUR-ROLE BANNER (logged-in users) ============ */
.your-role-bar {
    max-width: 1180px;
    margin: -26px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.your-role-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(6, 43, 132, 0.12);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.your-role-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.your-role-text {
    flex: 1;
    min-width: 200px;
}

.your-role-text small {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel-light);
    margin-bottom: 2px;
}

.your-role-text strong {
    font-size: 1.05rem;
    color: var(--navy);
}

.your-role-switch {
    background: #f0f4ff;
    color: var(--navy);
    border: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.your-role-switch:hover {
    background: var(--navy);
    color: #fff;
}

/* ============ ROLE TABS (guests only) ============ */
.role-tab-bar {
    max-width: 1180px;
    margin: -26px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.role-tabs {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(6, 43, 132, 0.12);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.role-tab {
    border: none;
    background: transparent;
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--steel);
    font-family: inherit;
}

.role-tab i {
    font-size: 1.35rem;
}

.role-tab span {
    font-size: 0.82rem;
    font-weight: 700;
}

.role-tab:hover {
    background: #f0f4ff;
    color: var(--navy);
}

.role-tab.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(6, 43, 132, 0.28);
}

@media (max-width: 576px) {
    .role-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .role-tab span {
        font-size: 0.74rem;
    }
}

/* ============ PLANS GRID ============ */
.plans-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 20px 30px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--line);
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
    overflow: hidden;
}

.plan-card.featured {
    border-color: var(--green);
    box-shadow: 0 18px 40px rgba(89, 193, 53, 0.16);
    transform: translateY(-6px);
}

.plan-card.locked {
    background: #fbfcfe;
}

.plan-card.locked .plan-card-inner {
    opacity: 0.55;
    filter: grayscale(0.15);
}

.plan-card.is-current {
    border-color: var(--navy);
    box-shadow: 0 10px 26px rgba(6, 43, 132, 0.12);
}

.coming-soon-ribbon {
    position: absolute;
    top: 16px;
    right: -34px;
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(40deg);
    box-shadow: 0 3px 8px rgba(217, 119, 6, 0.35);
    z-index: 3;
}

.plan-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.plan-name {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
}

.plan-current {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
}

.plan-price {
    margin: 4px 0 4px;
}

.plan-price .amt {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ink);
}

.plan-price .per {
    font-size: 0.78rem;
    color: var(--steel);
    font-weight: 600;
}

.plan-price-note {
    font-size: 0.76rem;
    color: var(--steel-light);
    margin-bottom: 18px;
}

.plan-cta {
    width: 100%;
    border: none;
    border-radius: 40px;
    padding: 11px;
    font-weight: 700;
    font-size: 0.86rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-cta.active-btn {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
}

.plan-cta.active-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(89, 193, 53, 0.3);
}

.plan-cta.locked-btn {
    background: #eef1f7;
    color: var(--steel);
    cursor: not-allowed;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.83rem;
    color: var(--ink);
    line-height: 1.4;
}

.plan-features li .fic {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.plan-features li.yes .fic {
    color: var(--green-deep);
}

.plan-features li.no .fic {
    color: #cbd5e1;
}

.plan-features li.no .fname {
    color: var(--steel-light);
    text-decoration: line-through;
    text-decoration-color: #e2e8f0;
}

.plan-features li .fval {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--navy);
    background: #eef2ff;
    padding: 2px 8px;
    border-radius: 10px;
}

.price-hint {
    text-align: center;
    margin-top: 30px;
    padding: 18px;
    background: #fff9ed;
    border: 1px dashed #f5d19a;
    border-radius: 14px;
    font-size: 0.82rem;
    color: #92400e;
}

.price-hint strong {
    color: #b45309;
}

/* ============ FULL COMPARISON TOGGLE ============ */
.compare-toggle-row {
    text-align: center;
    margin: 36px 0 8px;
}

.compare-toggle-btn {
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.compare-toggle-btn:hover {
    border-color: var(--navy);
    background: #f0f4ff;
}

.compare-toggle-btn i {
    transition: transform 0.25s;
}

.compare-toggle-btn.open i {
    transform: rotate(180deg);
}

.compare-table-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: none;
}

.compare-table-wrap.show {
    display: block;
}

.compare-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(6, 43, 132, 0.05);
}

table.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.compare-table th,
.compare-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
}

.compare-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: sticky;
    top: 0;
}

.compare-table tbody tr:hover td {
    background: #fafcff;
}

.compare-table td i.bi-check-circle-fill {
    color: var(--green-deep);
}

.compare-table td i.bi-x-circle {
    color: #cbd5e1;
}

/* ============ FAQ / FOOTNOTE ============ */
.plans-footnote {
    max-width: 780px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
    color: var(--steel);
    font-size: 0.85rem;
    line-height: 1.7;
}