/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
    --primary: #1a3c5e;
    --primary-dark: #0f2540;
    --primary-light: #2a5a8c;
    --accent: #c9922a;
    --accent-light: #e8b44d;
    --accent-pale: rgba(201, 146, 42, .10);
    --white: #ffffff;
    --light-bg: #f4f7fb;
    --lighter-bg: #f8fafd;
    --text: #1e2d42;
    --text-muted: #6b7a93;
    --border: #d6e0ef;
    --shadow: 0 4px 20px rgba(15, 37, 64, .08);
    --shadow-lg: 0 8px 40px rgba(15, 37, 64, .13);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--primary);
}

li {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   SITE HEADER  — sticky wrapper for both rows
═══════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}


/* ═══════════════════════════════════════════
   TOPBAR  (Row 1) — logo left | info + CTA right
═══════════════════════════════════════════ */
.topbar {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 15px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

/* — Brand / Logo — */
.topbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.tb-icon {
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
}

.tb-name {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
    line-height: 1;
}

.tb-accent {
    color: var(--accent-light);
}

.tb-pipe {
    color: rgba(255, 255, 255, .25);
    font-size: 1.1rem;
    font-weight: 300;
}

.tb-tagline {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .14em;
    color: #93aec8;
    text-transform: uppercase;
}

/* — Right group — */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Contact links */
.tb-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tb-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b8c8dc;
    font-size: .83rem;
    transition: color var(--transition);
}

.tb-contact-link i {
    color: var(--accent-light);
    font-size: .8rem;
}

.tb-contact-link:hover {
    color: var(--accent-light);
}

.tb-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .18);
    display: inline-block;
}

/* Social icons */
.tb-social {
    display: flex;
    gap: 7px;
}

.tb-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c8dc;
    font-size: .72rem;
    transition: background var(--transition), color var(--transition);
}

.tb-social a:hover {
    background: var(--accent);
    color: var(--white);
}

/* CTA buttons */
.tb-cta-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.tb-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: var(--radius);
    padding: 7px 16px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
}

.tb-btn i {
    font-size: .82rem;
}

.tb-btn-outline {
    background: transparent;
    color: #ccddef;
    border: 1.5px solid rgba(255, 255, 255, .25);
}

.tb-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.tb-btn-solid {
    background: var(--accent);
    color: var(--white);
    border: 1.5px solid var(--accent);
}

.tb-btn-solid:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}


/* ═══════════════════════════════════════════
   MAIN NAV  (Row 2) — full-width nav links bar
═══════════════════════════════════════════ */
.main-nav {
    background: var(--primary);
    border-bottom: 3px solid var(--accent);
    padding: 0;
}

/* Toggler */
.navbar-toggler {
    border: none;
    color: #fff;
    padding: 8px 10px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Nav list — full width, spread items */
.nav-top {
    gap: 0;
    width: 100%;
}

.nav-top .nav-item {
    position: relative;
}

.nav-top .nav-link {
    color: #ccddef !important;
    font-size: .84rem;
    font-weight: 500;
    padding: 16px 10px !important;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.nav-top .nav-link:hover,
.nav-top .nav-link.active-link {
    color: var(--accent-light) !important;
    background: rgba(255, 255, 255, .05);
}

.caret {
    font-size: .58rem;
    opacity: .7;
    transition: transform var(--transition);
}

.nav-item:hover .caret {
    transform: rotate(180deg);
}


/* ── Mega dropdown ── */
.mega-wrapper {
    position: fixed;
    top: auto;
    left: 5rem;
    right: 5rem;
    width: fit-content;
    max-width: 1200px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(15, 37, 64, .15);
    padding: 28px 40px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-height: 500px;
    overflow-y: auto;
}

.nav-item:hover .mega-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Column count variants */
.mega-wrapper.mega-4col .mega-col {
    flex: 1 1 22%;
}

/* ── Mini dropdown ── */
.mini-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 10px 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-item:hover .mini-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Right-align mini dropdowns at end of nav */
.mini-wrapper.mini-right {
    left: auto;
    right: 0;
}

/* Mega columns */
.mega-col {
    flex: 1 1 18%;
    padding: 0 20px;
    border-right: 1px solid var(--border);
    max-width: 300px;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-col-title i {
    color: var(--accent);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3a4a60;
    font-size: .83rem;
    padding: 4px 0;
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
}

.mega-link i {
    color: var(--primary-light);
    font-size: .78rem;
    width: 14px;
}

.mega-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.mega-link:hover i {
    color: var(--accent);
}

.mini-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3a4a60;
    font-size: .88rem;
    padding: 9px 18px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.mini-link i {
    color: var(--primary-light);
    font-size: .82rem;
    width: 16px;
}

.mini-link:hover {
    background: var(--light-bg);
    color: var(--accent);
}

/* Scrollbar width */
.mega-wrapper::-webkit-scrollbar {
    width: 5px;
}

/* Track (background) */
.mega-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Thumb (scroll handle) */
.mega-wrapper::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 10px;
}

/* Hover effect */
.mega-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ═══════════════════════════════════════════
   MOBILE — ≤ 1199px (xl breakpoint)
═══════════════════════════════════════════ */
@media (max-width: 1199px) {

    /* Hide all dropdowns on mobile */
    .mega-wrapper,
    .mini-wrapper {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    /* Collapsed nav panel */
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 8px 0 16px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-top {
        flex-direction: column;
        width: 100%;
    }

    .nav-top .nav-link {
        padding: 11px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    /* Hide tagline on small screens */
    .tb-tagline {
        display: none;
    }

    .tb-pipe {
        display: none;
    }
}

@media (max-width: 767px) {
    .tb-btn span {
        display: none;
    }

    .tb-btn {
        padding: 7px 10px;
    }

    .tb-btn i {
        font-size: .95rem;
        margin: 0;
    }

    .topbar-inner {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .tb-name {
        font-size: 1.2rem;
    }

    .tb-icon {
        font-size: 2rem;
    }
}


/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section-pad {
    padding: 60px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 5px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(201, 146, 42, .2);
}

.section-label i {
    font-size: .8rem;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent);
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 100%;
    line-height: 1.7;
}

.section-sub.centered {
    margin: 0 auto;
}


/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary-c {
    background: linear-gradient(135deg, var(--accent), #a87520);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(201, 146, 42, .35);
}

.btn-primary-c:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 146, 42, .45);
}

.btn-outline-c {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(26, 60, 94, .2);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline-c:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(26, 60, 94, .04);
    transform: translateY(-2px);
}

/* Button Styles using Theme Colors */
.btn-white-c {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

/* WhatsApp Button - Green accent */
.btn-white-c:first-child {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-white-c:first-child:hover {
    background: #20b859;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-white-c:first-child i {
    font-size: 18px;
    color: var(--white);
}

/* Call Now Button - Primary Theme Color */
.btn-white-c:last-child {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(26, 60, 94, 0.3);
}

.btn-white-c:last-child:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 60, 94, 0.4);
}

.btn-white-c:last-child i {
    font-size: 16px;
    color: var(--white);
}

/* Alternative: Accent Color for Call Button */
.btn-white-c-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(201, 146, 42, 0.3);
}

.btn-white-c-alt:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 146, 42, 0.4);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section {
    background: linear-gradient(135deg, #eef3fa 0%, #f4f7fc 50%, #e8eff8 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%231a3c5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 146, 42, .07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 60, 94, .07);
    color: var(--primary);
    border: 1px solid rgba(26, 60, 94, .14);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #a87520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    color: #5c6f87;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    margin-left: -10px;
}

.hero-trust-avatars .avatar:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-trust-text strong {
    color: var(--primary);
}

.hero-stats-row {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(26, 60, 94, .09);
    margin-top: 40px;
    padding-top: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.hero-stat+.hero-stat {
    border-left: 1px solid rgba(26, 60, 94, .09);
}

.hero-stat .num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-card-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 60, 94, .08);
}

.hero-card-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.hero-img-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dce8f5 0%, #c8daf0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-img-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
}

.hero-img-placeholder span {
    font-size: .9rem;
    color: var(--primary-light);
    font-weight: 600;
}

.float-chip {
    position: absolute;
    background: var(--white);
    border-radius: 40px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    border: 1px solid rgba(201, 146, 42, .18);
    white-space: nowrap;
    animation: floatAnim 3s ease-in-out infinite;
}

.float-chip i {
    color: var(--accent);
}

.float-chip-1 {
    top: -12px;
    left: -12px;
    animation-delay: 0s;
}

.float-chip-2 {
    bottom: 16px;
    right: -16px;
    animation-delay: .6s;
}

.float-chip-3 {
    top: 42%;
    right: -20px;
    animation-delay: 1.2s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@media (max-width: 991px) {
    .float-chip {
        display: none;
    }

    .hero-visual {
        margin-top: 40px;
    }
}


/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section {
    background: var(--white);
}

.about-img-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-block .img-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5a8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.about-img-block .img-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, .4);
}

.about-img-block .img-placeholder span {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.about-exp-badge {
    position: absolute;
    bottom: 24px;
    left: -12px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
}

.about-exp-badge .exp-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-exp-badge .exp-lbl {
    font-size: .78rem;
    opacity: .9;
}

.about-feature-item {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.about-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(201, 146, 42, .2);
}

.about-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.about-feature-text h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 10px;
}

.about-feature-text p {
    font-size: 16px;
    margin: 0;
}


/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-section {
    background: var(--lighter-bg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 42, .3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 146, 42, .2);
    transition: background var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--accent);
    transition: color var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-card p {
    font-size: 16px;
    margin: 0;
}


/* ═══════════════════════════════════════════
   SERVICES — tabs
═══════════════════════════════════════════ */
.services-section {
    background: var(--lighter-bg);
}

.service-tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.svc-tab {
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
}

.svc-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.svc-tab:hover {
    color: var(--primary);
}

.svc-panel {
    display: none;
}

.svc-panel.active {
    display: block;
}

.svc-card {
    background: var(--lighter-bg);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    height: 100%;
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.svc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card-icon i {
    color: var(--accent);
    font-size: 1rem;
}

.svc-card h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 16px;
    margin: 0;
}


/* ═══════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.stat-block {
    text-align: center;
    padding: 10px;
}

.stat-block .big-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.stat-block .stat-lbl {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-top: 8px;
    font-weight: 500;
}

.stat-block .stat-icon {
    font-size: 1.6rem;
    color: #ffffffd4;
    margin-bottom: 12px;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
    background: var(--lighter-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
    font-weight: 700;
    color: rgba(201, 146, 42, .3);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: .9rem;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
}

.author-role {
    font-size: .8rem;
    color: var(--text-muted);
}

.rating {
    color: var(--accent);
    font-size: .82rem;
    margin-bottom: 6px;
}

.testimonial-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .97rem;
    color: var(--primary);
    background: var(--lighter-bg);
    padding: 18px 22px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: var(--white);
}

.faq-accordion .accordion-button::after,
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion .accordion-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 16px 22px 22px;
    border-top: 1px solid #ddd;
}


/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: var(--lighter-bg);
}

.cta-section .cta-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary)
}

.cta-section .cta-sub {
    font-size: 16px;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════
   PROCESS / STEPS
═══════════════════════════════════════════ */
.process-section {
    background: var(--white);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    width: 35px;
    height: 35px;
    top: 20px;
    right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a87520);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(201, 146, 42, .35);
    position: absolute;
    opacity: 0.3;
}

.step-card:hover .step-num {
    opacity: 0.9;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.step-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 16px;
    margin: 0;
}


/* ═══════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════ */
.trust-strip {
    background: var(--primary-dark);
    padding: 24px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--accent-light);
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-top-strip {
    background: var(--accent);
    padding: 25px 0;
}

.footer-top-strip .strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.strip-text {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.strip-text i {
    margin-right: 7px;
}

.btn-strip {
    background: var(--white);
    color: var(--accent);
    border: none;
    border-radius: var(--radius);
    padding: 7px 20px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
    letter-spacing: .02em;
}

.btn-strip:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-main {
    background: #0d2238;
    padding: 56px 0 36px;
    color: #93aec8;
}

.footer-brand {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 800;
}

.footer-brand span {
    color: var(--accent-light);
}

.footer-tagline {
    font-size: .8rem;
    color: #6a85a0;
    margin-top: 4px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 14px;
    color: #7a96b2;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93aec8;
    font-size: .88rem;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7a96b2;
    font-size: 15px;
    padding: 4px 0;
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-link i {
    font-size: .72rem;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-link:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #7a96b2;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #7a96b2;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--accent-light);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .8rem;
    color: #93aec8;
    margin: 3px;
}

.footer-badge i {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .07);
}

.footer-bottom {
    background: #091828;
    padding: 16px 0;
    color: #4f6880;
    font-size: .82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #4f6880;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-light);
}

.footer-bottom-copy {
    color: #3a5268;
}

.footer-bottom-copy span {
    color: var(--accent);
}


/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.breadcrumb-item {
    font-size: .88rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .35);
}


/* ═══════════════════════════════════════════
   RESPONSIVE EXTRAS
═══════════════════════════════════════════ */
@media (max-width: 767px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-stats-row {
        flex-wrap: wrap;
    }

    .hero-stat+.hero-stat {
        border-left: none;
        border-top: 1px solid rgba(26, 60, 94, .09);
    }

    .trust-items {
        gap: 20px;
    }

    .about-exp-badge {
        left: 12px;
    }
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: var(--lighter-bg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-section .cta-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary);
    line-height: 1.3;
}

.cta-section .cta-sub {
    font-size: 16px;
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-pale);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
}

.section-label i {
    font-size: 14px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    font-family: var(--font-body);
}

.feature-item i {
    color: var(--accent);
    font-size: 18px;
}

/* Consultation Form Card */
.consultation-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.consultation-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Consultation Title */
.consultation-title {
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1.35rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

/* Form Input Styles */
.consultation-input,
.consultation-select,
.consultation-textarea {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
}

.consultation-input:focus,
.consultation-select:focus,
.consultation-textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.1) !important;
    outline: none !important;
}

.consultation-input::placeholder,
.consultation-textarea::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

/* Select dropdown styling */
.consultation-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7a93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    appearance: none !important;
}

.consultation-select option {
    background: var(--white);
    color: var(--text);
    padding: 10px;
}

/* Textarea */
.consultation-textarea {
    resize: vertical;
    min-height: 80px;
}

/* CTA Button */
.btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-cta-white:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-white:active {
    transform: translateY(0);
}

.btn-cta-white i {
    font-size: 15px;
    transition: var(--transition);
}

.btn-cta-white:hover i {
    transform: translateX(3px);
}

/* Form Note */
.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: var(--accent);
    font-size: 13px;
}

/* Button White (WhatsApp & Call) */
.btn-white-c {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
}


.btn-white-c:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.btn-white-c:hover i {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-form-card {
        padding: 24px;
    }

    .consultation-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .consultation-input,
    .consultation-select,
    .consultation-textarea {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    .btn-cta-white,
    .btn-white-c {
        padding: 10px 20px;
        font-size: 13px;
    }

    .feature-item {
        font-size: 14px;
    }
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* ═══════════════════════════════════════════
   BREADCRUMB SECTION
═══════════════════════════════════════════ */

.breadcrumb-section {
    background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f0 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 60, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 146, 42, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-wrapper {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.breadcrumb-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item i {
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 400;
}

/* Breadcrumb Title */
.breadcrumb-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-top: 12px;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Breadcrumb Description */
.breadcrumb-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 600px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 40px 0 35px;
    }

    .breadcrumb-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .breadcrumb-description {
        font-size: 14px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 30px 0 25px;
    }

    .breadcrumb-title {
        font-size: 1.5rem;
    }

    .breadcrumb-description {
        font-size: 13px;
    }
}

/* Inner Pages Additional Styles */

/* About Page */
.about-milestone {
    background: var(--accent-pale);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.milestone-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-head);
}

.milestone-text {
    font-size: 14px;
    color: var(--text-muted);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.value-card {
    text-align: center;
    padding: 25px;
    background: var(--lighter-bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #ddd;
}

.value-card h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Why Choose Us */
.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #ddd;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201, 146, 42, 0.1);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reason-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.reason-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.reason-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.reason-list li i {
    color: var(--accent);
}

.usp-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--lighter-bg);
    border-radius: var(--radius);
}

.usp-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Team Page */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 30px;
}

.team-placeholder i {
    font-size: 5rem;
    color: var(--white);
}

.team-role {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin: 5px 0 10px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.expert-badge {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expert-badge:hover {
    background: var(--accent);
    color: var(--white);
}

/* Pricing Page */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-price {
    margin: 20px 0;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    color: var(--accent);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--accent);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-pricing:hover {
    background: var(--accent-light);
    color: var(--white);
}

.payment-badge {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Scholarship Page */
.scholarship-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.scholarship-card:hover {
    transform: translateY(-5px);
}

.scholarship-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.discount-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 10px 0;
}

.scholarship-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.scholarship-card ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-scholarship {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-scholarship:hover {
    background: var(--accent);
    color: var(--white);
}

.terms-box {
    background: var(--accent-pale);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px;
}

/* FAQ Page */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-category-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.faq-cat {
    display: block;
    width: 100%;
    padding: 12px 15px;
    text-align: left;
    background: none;
    border: none;
    border-radius: var(--radius);
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.faq-cat.active,
.faq-cat:hover {
    background: var(--accent-pale);
    color: var(--accent);
}

.faq-contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.faq-contact-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn-faq-contact {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-top: 15px;
    transition: var(--transition);
}

.btn-faq-contact:hover {
    background: var(--white);
    color: var(--primary);
}

/* Contact Page */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-muted);
    margin: 0;
}

.contact-info-item h4,
.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-input,
.contact-select,
.contact-textarea {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 15px;
    width: 100%;
    transition: var(--transition);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.btn-contact {
    background: var(--accent);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--accent-light);
}

.map-placeholder {
    background: var(--lighter-bg);
    height: 350px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .faq-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .contact-info-card,
    .contact-form-card {
        margin-bottom: 20px;
    }
}

.mission-card h4,
.vision-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
}

.reason-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
}

/* USP Highlight Card */
.usp-highlight-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.usp-highlight-card:hover {
    transform: translateY(-3px);
}

.usp-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.usp-highlight-icon i {
    font-size: 1.8rem;
    color: var(--accent-light);
}

.usp-highlight-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.usp-highlight-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════ */

.team-section {
    background: var(--white);
    position: relative;
}

/* Team Card */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 146, 42, 0.2);
}

/* Team Avatar - Small User Icon */
.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 3px solid var(--accent);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    border-color: var(--accent-light);
}

.team-avatar i {
    font-size: 2.2rem;
    color: var(--white);
}

/* Team Info */
.team-info h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}


/* Expertise Tags */
.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
}

.team-expertise span {
    background: var(--accent-pale);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    transition: var(--transition);
}

.team-expertise span:hover {
    background: var(--accent);
    color: var(--white);
}

/* Team Social Icons */
.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 34px;
    height: 34px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link i {
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Expert Grid */
.expert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.expert-badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.expert-badge i {
    color: var(--accent);
    font-size: 14px;
}

.expert-badge:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.expert-badge:hover i {
    color: var(--white);
}

/* Expert Title */
.expert-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.expert-title span {
    color: var(--accent);
}

/* Section Subtitle */
.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 100%;
    line-height: 1.7;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        padding: 20px 18px;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .team-avatar i {
        font-size: 1.8rem;
    }

    .team-info h4 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.75rem;
    }

    .team-info p {
        font-size: 13px;
    }

    .expert-badge {
        padding: 7px 15px;
        font-size: 12px;
    }

    .expert-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .team-avatar {
        width: 60px;
        height: 60px;
    }

    .team-avatar i {
        font-size: 1.5rem;
    }

    .expert-grid {
        gap: 8px;
    }

    .expert-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
}

/* ═══════════════════════════════════════════
   PRICING PAGE STYLES
═══════════════════════════════════════════ */

/* Pricing Toggle */
.pricing-toggle {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    gap: 5px;
}

.toggle-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.toggle-btn.active {
    background: var(--accent);
    color: var(--white);
}

.save-badge {
    background: #25D366;
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    margin-left: 8px;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-card-header {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.plan-name {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.yearly-note {
    display: block;
    font-size: 11px;
    color: #25D366;
    margin-top: 5px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Pricing Features */
.pricing-features-list {
    padding: 20px 25px;
    flex: 1;
}

.pricing-features-list h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.pricing-features li i {
    font-size: 14px;
    width: 18px;
}

.pricing-features li i.text-success {
    color: #25D366;
}

.pricing-features li i.text-danger {
    color: #dc3545;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

/* Pricing Card Footer */
.pricing-card-footer {
    padding: 20px 25px 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.savings-info {
    font-size: 12px;
    color: #25D366;
    margin-bottom: 15px;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-pricing:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-pricing.btn-featured {
    background: var(--accent);
}

.btn-pricing.btn-featured:hover {
    background: var(--accent-light);
}

.money-back {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border-collapse: collapse;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border: 1px solid var(--border);
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.pricing-table tr:hover {
    background: var(--lighter-bg);
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* Custom Services */
.custom-features {
    margin-top: 25px;
}

.custom-feature {
    display: flex;
    gap: 15px;
}

.custom-feature i {
    font-size: 1.5rem;
    color: var(--accent);
}

.custom-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
    font-weight: 700;
}

.custom-feature p {
    font-size: 14px;
    color: var(--text-muted);
}

.custom-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 35px;
    color: var(--white);
}

.custom-card h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}

.custom-card p{
    color: rgba(255, 255, 255, 0.85);
}
.contact-options {
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option i {
    font-size: 1.2rem;
}

/* Discount Cards */
.discount-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
}

.discount-card:hover {
    transform: translateY(-5px);
}

.discount-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.discount-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-head);
}

.discount-percent {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 10px 0;
    font-family: var(--font-head);
}

.discount-card p {
    font-size: 15px;
}

.terms-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Items */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid #ddd;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
}

.faq-item h4 i {
    color: var(--accent);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    padding-left: 28px;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-card-header {
        padding: 20px;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }

    .pricing-table {
        font-size: 13px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
    }

    .custom-card {
        padding: 25px;
    }

    .toggle-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .pricing-table {
        font-size: 11px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 8px 10px;
    }
}

.contact-page-section {
    background: var(--lighter-bg);
}

.apply-process-section .stat-block {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    background: #fff;
}

/* Hover Effect */
.apply-process-section .stat-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

/* Optional: icon animation */
.apply-process-section .stat-block:hover .stat-icon i {
    transform: scale(1.2);
    transition: 0.3s;
}

.apply-process-section .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 146, 42, .2);
    transition: background var(--transition);
}

.apply-process-section .stat-icon i {
    color: var(--accent);
    font-size: 20px;
}

.apply-process-section .stat-block .stat-lbl {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 1.1rem;
}

.bg-lighter {
    background: #f8fafd;
}

.accordion-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 16px 22px 22px;
    border-top: 1px solid #ddd;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.solution-card h4 {
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.solution-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.checklist-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.stats-timeline {
    position: relative;
    padding-left: 30px;
}

.stats-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--primary-light));
    border-radius: 3px;
}

.timeline-node {
    position: relative;
    margin-bottom: 20px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-pale);
}

.timeline-node h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-node p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Section 4: Comparison Table (Unique) */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 18px 20px;
    font-size: 1rem;
}

.comparison-col {
    padding: 16px 20px;
    background: var(--white);
}

.comparison-col.weak {
    background: rgba(220, 53, 69, 0.03);
}

.comparison-col.strong {
    background: rgba(37, 211, 102, 0.03);
}

.comparison-col i.bi-check-circle {
    color: #25D366;
    margin-right: 8px;
}

.comparison-col i.bi-x-circle {
    color: #dc3545;
    margin-right: 8px;
}

.hero-stats-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stat-item {
    flex: 1;
    min-width: 120px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-head);
}

.hero-stat-item .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-discussion {
    background: linear-gradient(135deg, #f8fafd 0%, #eef3fc 100%);
    position: relative;
}

.hero-quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent);
    position: relative;
}

.hero-quote-card i {
    font-size: 3rem;
    color: var(--accent-pale);
    position: absolute;
    bottom: 20px;
    right: 25px;
}

.hero-quote-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-quote-card .quote-author {
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}

/* ═══════════════════════════════════════════
           SECTION 2: 4-STEP PROCESS CARDS (Unique)
        ═══════════════════════════════════════════ */
.process-icon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-icon-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-icon-card:hover::after {
    transform: scaleX(1);
}

.process-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 75px;
    height: 75px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.process-icon-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201, 146, 42, 0.08);
}

/* ═══════════════════════════════════════════
           SECTION 3: ACCORDION + STATS COMBO (Unique)
        ═══════════════════════════════════════════ */
.discussion-stats {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.discussion-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    font-family: var(--font-head);
}

.discussion-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.discussion-accordion .accordion-button {
    font-weight: 700;
    color: var(--primary);
    background: var(--lighter-bg);
    padding: 18px 22px;
    font-family: var(--font-head);
}

.discussion-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--accent);
}

.discussion-accordion .accordion-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 20px 22px;
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
           SECTION 4: COMPARISON SPLIT (Unique)
        ═══════════════════════════════════════════ */
.comparison-split {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-split-left {
    background: var(--white);
    padding: 40px;
    height: 100%;
    border-right: 1px solid var(--border);
}

.comparison-split-right {
    background: var(--primary);
    padding: 40px;
    height: 100%;
    color: var(--white);
}

.comparison-split-right h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i.bi-x-circle {
    color: #dc3545;
}

.comparison-list li i.bi-check-circle {
    color: #25D366;
}

.comparison-list-right {
    list-style: none;
    padding: 0;
}

.comparison-list-right li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-list-right li:last-child {
    border-bottom: none;
}

.comparison-list-right li i {
    color: var(--accent-light);
    font-size: 1.2rem;
}


/* Responsive */
@media (max-width: 768px) {

    .comparison-split-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .discussion-stats {
        padding: 25px;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


.hero-centered {
    background: linear-gradient(135deg, #f8fafd 0%, #eef3fc 100%);
    text-align: center;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.hero-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

/* ═══════════════════════════════════════════
           SECTION 2: TWO COLUMN FEATURE CARDS
        ═══════════════════════════════════════════ */
.feature-row {
    background: var(--white);
}

.feature-card-simple {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.feature-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-card-simple .feature-icon-simple {
    width: 55px;
    height: 55px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-simple .feature-icon-simple i {
    font-size: 1.4rem;
    color: var(--accent);
}

.feature-card-simple h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
           SECTION 3: KEY ELEMENTS GRID
        ═══════════════════════════════════════════ */
.elements-section {
    background: var(--lighter-bg);
}

.element-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.element-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.element-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.element-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-split {
    background: linear-gradient(135deg, #f5f7fc 0%, #edf2f8 100%);
}

.title-preview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.title-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.preview-line {
    height: 12px;
    background: var(--border);
    border-radius: 6px;
    margin: 15px 0;
}

.preview-line.short {
    width: 60%;
}

.preview-line.medium {
    width: 80%;
}

.preview-line.long {
    width: 100%;
}

/* ═══════════════════════════════════════════
           UNIQUE SECTION 2: FORMATTING CHECKLIST (GRID)
        ═══════════════════════════════════════════ */
.formatting-checklist {
    background: var(--lighter-bg);
}

.checklist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checklist-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.checklist-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
           UNIQUE SECTION 3: STYLE GUIDE TABS
        ═══════════════════════════════════════════ */
.style-guide-section {
    background: var(--white);
}

.style-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.style-tab-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.style-tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.style-tab-btn:hover:not(.active) {
    border-color: var(--accent);
    color: var(--accent);
}

.style-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.style-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.style-card {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
}

.style-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-list {
    list-style: none;
    padding: 0;
}

.style-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted)
}

.style-list li:last-child {
    border-bottom: none;
}

.style-list li i {
    color: var(--accent);
    margin-top: 3px;
}

/* ═══════════════════════════════════════════
           UNIQUE SECTION 4: SERVICE HIGHLIGHT CARDS (BORDER STYLE)
        ═══════════════════════════════════════════ */
.service-highlight {
    background: var(--lighter-bg);
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
           UNIQUE SECTION 5: PROCESS TIMELINE (HORIZONTAL)
        ═══════════════════════════════════════════ */
.process-timeline {
    background: var(--white);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 75px;
    right: 75px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.timeline-step.active .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.timeline-step h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}



@media (max-width: 768px) {
    .timeline-steps {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-steps::before {
        display: none;
    }

    .timeline-step {
        text-align: left;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .step-circle {
        margin: 0;
    }
}

/* ═══════════════════════════════════════════
           CTA SECTION (Simple)
        ═══════════════════════════════════════════ */
.cta-simple {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
}

.cta-simple .cta-title {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-simple .cta-sub {
    color: rgba(255, 255, 255, 0.8);
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-pad {
        padding: 50px 0;
    }

    .title-preview-card {
        padding: 25px;
    }
}

.two-column-content {
    background: var(--white);
}

.content-block {
    padding: 20px;
}

.content-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.process-step {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.step-number-circle {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin: 0 auto;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   DOMAIN-SPECIFIC PAGE STYLES
═══════════════════════════════════════════ */

/* Management/MBA - Vertical Timeline */
.timeline-vertical {
    position: relative;
    padding: 20px 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 25px;
    bottom: 68px;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
}

.timeline-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-muted);
    margin: 0;
}

/* Medical/Healthcare - Icon Grid with Stats */
.stat-card {
    background: linear-gradient(135deg, rgba(26, 60, 94, 0.05), rgba(201, 146, 42, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Social Sciences - Accordion Sections */
.accordion-custom {
    border: none;
}

.accordion-custom .accordion-item {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.accordion-custom .accordion-button {
    background: var(--light-bg);
    color: var(--primary);
    font-weight: 600;
    border: none;
    padding: 18px 20px;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--accent-pale);
    color: var(--primary);
}

.accordion-custom .accordion-body {
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border);
}

/* Humanities - Two Column with Rich Typography */
.content-rich {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.content-rich strong {
    color: var(--primary);
    font-weight: 700;
}

.highlight-box {
    background: var(--accent-pale);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: var(--radius);
    height: 100%;
}

/* Computer Science - Code-like Boxes */
.service-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    height: 100%;
}

.service-box h5 {
    color: var(--accent-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-box p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 16px;
    margin-bottom: 0;
}

.service-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.service-box li {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-box li::before {
    content: '→';
    color: var(--accent-light);
    position: absolute;
    left: 0;
}

/* Education - Checklist Style */
.checklist-group {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}


.checklist-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.checklist-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.checklist-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.checklist-separator {
    border: none;
    height: 4px;
    background: var(--accent);
    margin: 15px 0 20px 0;
    border-radius: 1px;
    max-width: 100px;
    opacity: 1;
}

/* Economics - Data Comparison Tables */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 20px 0;
}

.comparison-table table {
    width: 100%;
    margin: 0;
}

.comparison-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

/* Psychology - Card Grid with Shadows */
.insight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
    border-top: 4px solid var(--accent);
    height: 100%;
}

.insight-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.insight-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.insight-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Environmental Science - Eco-friendly Cards */
.eco-feature {
    background: linear-gradient(135deg, rgba(26, 60, 94, 0.03), rgba(40, 100, 60, 0.05));
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.eco-feature .icon-large {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.eco-feature h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Biotechnology - Lab Notes Style */
.lab-note {
    background: #fffbe6;
    border-left: 5px solid #f0ad4e;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.lab-note h6 {
    color: #d39e00;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.lab-note p {
    color: #664d03;
    margin: 0;
}

/* Mathematics/Statistics - Formula Boxes */
.formula-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    text-align: center;
    font-size: 1.1rem;
}

.formula-box code {
    color: var(--accent-light);
    font-weight: 600;
}

/* Physics & Chemistry - Molecular-inspired Layout */
.molecule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.molecule-node {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    aspect-ratio: 1;
    transition: var(--transition);
}

.molecule-node:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .timeline-vertical::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-item::before {
        width: 25px;
        height: 25px;
    }

    .molecule-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .stat-number {
        font-size: 2rem;
    }
}

.highlight-box h6,
.checklist-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.highlight-box h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

/* Humanities Page Unique Styles */
.foundation-card {
    background: linear-gradient(180deg, rgba(201, 146, 42, .12), rgba(255, 255, 255, 1));
    border: 1px solid rgba(201, 146, 42, .2);
    border-radius: 20px;
    padding: 30px;
    min-height: 220px;
}

.foundation-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.foundation-card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.bridge-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.bridge-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
}

.bridge-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.bridge-panel ul li {
    margin-bottom: 12px;
}

.bridge-summary {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bridge-count {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.bridge-count span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
}

.bridge-count p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary);
}

.bridge-note h5 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.bridge-note p {
    margin: 0;
    color: var(--text-muted);
}

.roadmap-list {
    counter-reset: roadmap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.roadmap-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.roadmap-list li::before {
    counter-increment: roadmap;
    content: counter(roadmap, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.momentum-panel {
    background: linear-gradient(135deg, rgba(26, 60, 94, .06), rgba(201, 146, 42, .12));
    border: 1px solid rgba(26, 60, 94, .08);
    border-radius: 28px;
    padding: 40px 30px;
}

.momentum-panel .btn {
    min-width: 210px;
}

/* Education Page Styles */
.edu-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.hero-stat-item {
    background: rgba(201, 146, 42, .1);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.edu-hero-panel {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.hero-panel-content h5 {
    color: var(--white);
    font-size: 1.3rem;
}

.hero-panel-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-panel-item:last-child {
    margin-bottom: 0;
}

.hero-panel-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-panel-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.hero-panel-item p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
    font-size: 0.9rem;
}

.edu-feature-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
}

.edu-feature-block h4 {
    color: var(--primary);
    font-size: 1.25rem;
}

.edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-list li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 20px;
}

.edu-list li:last-child {
    border-bottom: none;
}

.edu-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.edu-pathway-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
}

.pathway-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.edu-pathway-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.edu-pathway-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.edu-method-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.method-item {
    background: rgba(201, 146, 42, .08);
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.method-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.edu-support-box {
    background: rgba(201, 146, 42, .05);
    border: 1px solid rgba(201, 146, 42, .15);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.edu-support-box h5 {
    color: var(--primary);
}

.edu-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-support-list li {
    padding: 10px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}

.edu-support-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   ECONOMICS PAGE STYLES
═══════════════════════════════════════════ */
.econ-hero {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.econ-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.econ-hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Economics Hero Panel */
.econ-hero-panel {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-lg);
}

.econ-panel-heading {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.econ-pathway-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pathway-step {
    display: flex;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.pathway-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h6 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
    font-size: 0.9rem;
}

/* Economics Domain Cards */
.econ-domain-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: all var(--transition);
}

.econ-domain-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(201, 146, 42, .15);
    transform: translateY(-3px);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.domain-header i {
    font-size: 1.8rem;
    color: var(--accent);
}

.domain-header h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.econ-domain-card p {
    margin: 0;
    line-height: 1.6;
}

/* Method Support Cards */
.method-support-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    text-align: center;
    height: 100%;
}

.method-support-card.featured-card {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.method-support-card.featured-card h6,
.method-support-card.featured-card p,
.method-support-card.featured-card .additional-content {
    color: var(--white);
}

.method-support-card.featured-card .additional-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.method-support-card.featured-card .additional-content small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.method-icon {
    font-size: 2.2rem;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 15px;
}

.method-support-card h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.method-support-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Thesis Support Box */
.thesis-support-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all var(--transition);
}

.thesis-support-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.thesis-support-box i {
    font-size: 2rem;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 15px;
}

.thesis-support-box h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.thesis-support-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PSYCHOLOGY PAGE - SIMPLE & MODERN DESIGN
═══════════════════════════════════════════ */
.tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.visual-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.process-card h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-pale);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-visual {
        margin-top: 40px;
    }

    .visual-circle {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════
   PSYCHOLOGY PAGE STYLES - NEW DESIGN
═══════════════════════════════════════════ */
.psych-centered-hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.psych-hero-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.psych-hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.psych-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.psych-hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.psych-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.psych-stat-item {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Psychology Timeline */
.psych-timeline-section {
    background: var(--white);
}

.psych-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.psych-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: 3px;
}

.detail-tag {
    background: var(--accent-pale);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Psychology Domains Grid */
.psych-domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.psych-domain-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.psych-domain-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.domain-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.psych-domain-item h5 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.psych-domain-item p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.domain-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.domain-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.domain-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Psychology Support Matrix */
.psych-support-matrix {
    max-width: 1000px;
    margin: 0 auto;
}

.support-row {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 30px;
}

.support-row:last-child {
    margin-bottom: 0;
}

.support-category {
    min-width: 200px;
    flex-shrink: 0;
}

.support-category h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-category h5 i {
    color: var(--accent);
    font-size: 1.2rem;
}

.support-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.support-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--accent);
}

.support-item h6 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.support-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .psych-hero-title {
        font-size: 2rem;
    }

    .psych-stats-row {
        gap: 20px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .support-row {
        flex-direction: column;
        gap: 20px;
    }

    .support-items {
        grid-template-columns: 1fr;
    }

    .timeline-content {
        padding: 20px;
    }

    .psych-domains-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════
   ENVIRONMENTAL PAGE - NEW HERO DESIGN
═══════════════════════════════════════════ */
.env-hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.env-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23c9922a" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23c9922a" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="%23c9922a" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%23c9922a" opacity="0.12"/></svg>');
    pointer-events: none;
}

.env-hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.env-hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.env-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.env-hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.env-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.env-stat-item {
    display: flex;
    justify-content: center;
}

.stat-circle-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.stat-circle-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.stat-label-large {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

/* Responsive adjustments for new hero */
@media (max-width: 768px) {
    .env-hero-title {
        font-size: 2.2rem;
    }

    .env-hero-description {
        font-size: 1rem;
    }

    .env-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-circle-large {
        width: 120px;
        height: 120px;
    }

    .stat-number-large {
        font-size: 1.8rem;
    }
}

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

.scopus-hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 60px 0;
}

.scopus-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-pale);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
}

.scopus-stat-pill span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    margin-right: 8px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Subject Cards */
.subject-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}

.subject-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.subject-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(201, 146, 42, 0.2);
}

.subject-card .icon-circle i {
    font-size: 1.8rem;
    color: var(--accent);
}

.subject-card h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Criteria Timeline */
.criteria-timeline {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
}

.criteria-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    z-index: 0;
}

.criteria-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
    min-width: 140px;
}

.criteria-step .dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    transition: all var(--transition);
}

.criteria-step:hover .dot {
    background: var(--accent);
    color: var(--white);
}

.criteria-step h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.criteria-step p {
    color: var(--text-muted);
    margin: 0;
}

/* Why Items */
.why-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    height: 100%;
    transition: all var(--transition);
    flex-direction: column;
}

.why-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.why-item .icon-sq {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item .icon-sq i {
    color: var(--accent);
    font-size: 1.2rem;
}

.why-item h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.why-item p {
    margin: 0;
}

/* Process Accordion */
.process-acc .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.process-acc .accordion-button {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--primary);
    background: var(--lighter-bg);
    padding: 16px 22px;
    box-shadow: none;
}

.process-acc .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: var(--white);
}

.process-acc .accordion-body {
    font-size: 16px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding: 18px 22px;
}

/* Related Section Cards */
.related-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.related-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.related-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .criteria-timeline::before {
        display: none;
    }

    .criteria-step {
        margin-bottom: 25px;
    }
}

.wos-hero {
    background: linear-gradient(145deg, #fff 0%, #f8f8ff 100%);
    position: relative;
    overflow: hidden;
}

.wos-hero::after {
    content: '';
    position: absolute;
    right: -200px;
    bottom: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 120px solid rgba(26, 60, 94, 0.04);
}

.wos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.wos-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Index Cards */
.index-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all var(--transition);
}

.index-card.active {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(201, 146, 42, 0.15);
}

.index-card .card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.index-card.active .card-head {
    border-bottom-color: var(--accent);
}

.index-card .card-head .logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-card .card-head .logo i {
    font-size: 1.3rem;
    color: var(--accent);
}

.index-card .card-head h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.collection-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.collection-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.collection-item .tag {
    display: inline-block;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.collection-item h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.collection-item p {
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.proc-step {
    flex: 1;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
    text-align: center;
    position: relative;
    background: var(--white);
}

.proc-step:last-child {
    border-right: none;
}

.proc-step::before {
    counter-increment: step;
    content: counter(step, 'decimal-leading-zero');
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    color: rgba(201, 146, 42, 0.1);
}

.proc-step {
    counter-increment: step;
}

.proc-step:first-child {
    counter-reset: step;
}

.proc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(201, 146, 42, 0.2);
}

.proc-icon i {
    font-size: 1.4rem;
    color: var(--accent);
}

.proc-step h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}


/* Feature Image Box */
.feature-img-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

.feature-img-box i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

/* Report Item */
.report-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--lighter-bg);
    transition: all var(--transition);
}

.report-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.report-item i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.report-item strong {
    color: var(--primary);
    font-family: var(--font-head);
}

/* Responsive */
@media (max-width: 991px) {
    .process-steps {
        flex-direction: column;
    }

    .proc-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .proc-step:last-child {
        border-bottom: none;
    }

    .stats-bar-item {
        border-right: none;
        margin-bottom: 15px;
    }
}

/* SPSS Output Preview Cards — dashboard style */
.output-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
}

.output-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.output-card-header {
    background: var(--primary);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.output-card-header i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

.output-card-header span {
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    font-family: var(--font-head);
}

.output-card-body {
    padding: 18px;
}

.output-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.output-table th {
    background: var(--lighter-bg);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 8px;
    border: 1px solid var(--border);
    font-size: 11px;
}

.output-table td {
    padding: 5px 8px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
}

.output-table tr:hover td {
    background: var(--accent-pale);
}

.output-sig {
    color: #25D366;
    font-weight: 700;
}

.output-tag {
    display: inline-block;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 8px;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.pkg-badge {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 14px 10px;
    text-align: center;
    transition: all var(--transition);
}

.pkg-badge:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.pkg-badge .pkg-name {
    color: var(--accent-light);
    font-size: .9rem;
    font-weight: 700;
}

.pkg-badge .pkg-use {
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    margin-top: 4px;
}


.sas-expert-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.sas-expert-badge i {
    color: var(--accent);
    font-size: 0.8rem;
}

.sas-expert-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.sas-cap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    transition: var(--transition);
    height: 100%;
}

.sas-cap-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.sas-cap-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
}

.sas-cap-card h6 {
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.sas-cap-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.sas-why-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
}

.sas-feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}

.sas-feature-row:last-child {
    border-bottom: none;
}

.sas-feature-row i {
    font-size: 1rem;
    width: 20px;
    color: var(--accent);
}


@media (max-width: 768px) {
    .sas-why-box {
        padding: 20px;
    }

    .sas-cap-card {
        padding: 15px;
    }
}


.path-diagram-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.path-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .8rem;
    font-weight: 700;
    font-family: var(--font-head);
}

.path-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-pale);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: .7rem;
    font-weight: 700;
    font-family: var(--font-head);
}

.path-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

.path-coef {
    font-size: .75rem;
    font-weight: 700;
    color: var(--accent);
}

/* Fit index cards */
.fit-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.fit-card.good {
    border-color: #25D366;
}

.fit-card.good .fit-value {
    color: #25D366;
}

.fit-card.acceptable {
    border-color: var(--accent);
}

.fit-card.acceptable .fit-value {
    color: var(--accent);
}

.fit-index {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.fit-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-head);
}

.fit-threshold {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.excel-mock {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.excel-toolbar {
    background: #217346;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.excel-toolbar span {
    color: white;
    font-size: .8rem;
    font-weight: 600;
}

.excel-tab {
    background: rgba(255, 255, 255, .15);
    color: white;
    font-size: .75rem;
    padding: 4px 12px;
    border-radius: 4px;
}

.excel-formula-bar {
    background: #f3f3f3;
    border-bottom: 1px solid #ddd;
    padding: 6px 14px;
    font-size: .82rem;
    color: #217346;
}

.excel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.excel-table .col-header {
    background: #e1efda;
    color: #196534;
    font-weight: 700;
    padding: 6px 10px;
    border: 1px solid #c6e0b4;
    text-align: center;
}

.excel-table .row-header {
    background: #e1efda;
    color: #196534;
    font-weight: 700;
    padding: 5px 8px;
    border: 1px solid #c6e0b4;
    text-align: center;
}

.excel-table td {
    padding: 5px 10px;
    border: 1px solid #ddd;
    color: var(--text);
}

.excel-table .formula {
    color: #217346;
    font-size: 11px;
}

.excel-table .number {
    text-align: right;
}

.excel-table .sig {
    background: #e2efda;
    color: #196534;
    font-weight: 700;
    text-align: right;
}

.excel-table .selected {
    background: #c9daf8;
}

/* Problem Statement Formulation Page */


/* Comparison Table Section */
.comparison-section  {
    background:  var(--white);
 }

.compare-card  {
     border:  1px solid var(--border);
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     transition:  var(--transition);
 }

.compare-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-4px);
     border-color:  var(--accent);
 }

.compare-header  {
     background:  var(--primary-dark);
     color:  var(--white);
     padding:  20px 24px;
 }

.compare-header.accent-header  {
     background:  var(--accent);
 }

.compare-header h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     margin:  0;
     font-size:  1rem;
     color:  var(--white);
 }

.compare-body  {
     padding:  20px 24px;
 }

.compare-item  {
     display:  flex;
     align-items:  flex-start;
     gap:  10px;
     padding:  10px 0;
     border-bottom:  1px solid var(--border);
     font-size:  .9rem;
     color:  var(--text);
 }

.compare-item:last-child  {
     border-bottom:  none;
 }

.compare-item i  {
     color:  var(--accent);
     margin-top:  2px;
     flex-shrink:  0;
 }
  .title-preview-card ul {
     padding-left:0;
 }
 .title-preview-card ul li {
     list-style:none;
 }
 .title-preview-card > i {
     font-size:2.5rem;
     color:var(--accent);
     opacity:.5;
 }
 .element-card i {
     font-size:2rem;
     color:var(--accent);
 }
 /* Hypothesis type cards */
.hypo-section  {
     background:  var(--white);
 }

.hypo-card  {
     border:  1px solid var(--border);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     transition:  var(--transition);
     position:  relative;
     overflow:  hidden;
 }

.hypo-card::after  {
     content:  '';
     position:  absolute;
     bottom:  0;
     left:  0;
     right:  0;
     height:  4px;
     background:  var(--accent);
     transform:  scaleX(0);
     transition:  var(--transition);
     transform-origin:  left;
 }

.hypo-card:hover  {
     transform:  translateY(-5px);
     box-shadow:  var(--shadow-lg);
 }

.hypo-card:hover::after  {
     transform:  scaleX(1);
 }

.hypo-badge  {
     display:  inline-block;
     background:  var(--accent-pale);
     color:  var(--accent);
     font-size:  .72rem;
     font-weight:  700;
     letter-spacing:  1px;
     text-transform:  uppercase;
     padding:  4px 12px;
     border-radius:  20px;
     margin-bottom:  12px;
 }

.hypo-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--primary-dark);
     font-size:  1rem;
 }

.hypo-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.65;
     margin:  0;
 }
 
 /* Framework showcase */
.framework-showcase  {
     background:  var(--white);
 }

.framework-card  {
     border:  1px solid var(--border);
     border-radius:  var(--radius-lg);
     padding:  28px;
     transition:  var(--transition);
     height:  100%;
     position: relative;
 }

.framework-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-4px);
     border-color:  var(--accent);
 }

.framework-number  {
     font-family:  var(--font-head);
     font-size:  3rem;
     font-weight:  900;
     color:  var(--accent-pale);
     line-height:  1;
     margin-bottom:  8px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
 }

.framework-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  10px;
 }

.framework-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.65;
     margin:  0;
 }

.framework-tag  {
     display:  inline-block;
     background:  var(--accent-pale);
     color:  var(--accent);
     font-size:  .7rem;
     font-weight:  700;
     padding:  3px 10px;
     border-radius:  20px;
     margin-bottom:  12px;
     text-transform:  uppercase;
     letter-spacing:  1px;
 }
.foundation-card.found-card-two {
    background: linear-gradient(135deg, #f5f7fc 0%, #edf2f8 100%);
    border-left: 3px solid var(--accent);
}
.foundation-card.found-card-three {
    background: #fff;
    border-bottom: 5px solid var(--accent);
}
.element-card.element-card-two {
    text-align: left;
    position: relative;
}
.element-card.element-card-two i {
    width: 70px;
    height: 70px;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.element-card.element-card-two .framework-number {
    top: 10px;
    right: 10px;
}

/* Feasibility dimension cards */
.dimension-section { background: var(--white); }
.dimension-card { border-radius: var(--radius-lg); padding: 30px 24px; transition: var(--transition); height: 100%; border: 1px solid var(--border); position: relative; overflow: hidden; }
.dimension-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dimension-icon-wrap { width: 56px; height: 56px; border-radius: var(--radius); background: var(--accent-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent); margin-bottom: 16px; transition: var(--transition); }
.dimension-card:hover .dimension-icon-wrap { background: var(--accent); color: var(--white); }
.dimension-card h5 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); font-size: 1rem; margin-bottom: 8px; }
.dimension-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin: 0; }
.dimension-accent-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--border); transition: var(--transition); }
.dimension-card:hover .dimension-accent-line { background: var(--accent); }

.card-left-br {
    border-left: 4px solid var(--primary) !important;
}
.card-left-br i {
    font-size: 2rem; 
    color: var(--primary);
}
.card-left-br h5 {
    font-family: var(--font-head); 
    font-weight: 700;
}



/* Instrument Development */

.id-hero  {
    background:  var(--primary-dark);
    padding:  80px 0;
 }

.id-hero-badge  {
    font-family:  var(--font-label);
    font-size:  .7rem;
    letter-spacing:  3px;
    text-transform:  uppercase;
    color:  var(--accent-light);
    display:  inline-block;
    border:  1px solid rgba(201, 146, 42, .3);
    padding:  6px 16px;
    border-radius:  30px;
    margin-bottom:  22px;
 }

.id-hero-title  {
    font-family:  var(--font-head);
    font-size:  3rem;
    font-weight:  900;
    color:  var(--white);
    line-height:  1.15;
    margin-bottom:  20px;
 }

.id-hero-title em  {
    font-style:  italic;
    color:  var(--accent-light);
 }

.id-hero-desc  {
    color:  rgba(255, 255, 255, .7);
    font-size:  1rem;
    line-height:  1.8;
    font-weight:  300;
    margin-bottom:  32px;
 }

.id-hero-btn  {
    background:  var(--accent);
    color:  var(--primary);
    font-family:  var(--font-label);
    font-size:  .78rem;
    letter-spacing:  1px;
    text-transform:  uppercase;
    font-weight:  700;
    padding:  13px 32px;
    border-radius:  var(--radius);
    text-decoration:  none;
    display:  inline-block;
    transition:  var(--transition);
    border:  2px solid var(--accent);
 }

.id-hero-btn:hover  {
    background:  transparent;
    color:  var(--accent-light);
 }

.id-hero-btn-outline  {
    background:  transparent;
    color:  var(--white);
    font-size:  .78rem;
    letter-spacing:  1px;
    text-transform:  uppercase;
    font-weight:  700;
    padding:  13px 32px;
    border-radius:  var(--radius);
    text-decoration:  none;
    display:  inline-block;
    transition:  var(--transition);
    border:  2px solid rgba(255, 255, 255, .3);
 }

.id-hero-btn-outline:hover  {
    border-color:  var(--white);
    color:  var(--white);
 }

.id-info-box  {
    background:  rgba(255, 255, 255, .05);
    border:  1px solid rgba(255, 255, 255, .1);
    border-radius:  var(--radius-lg);
    padding:  36px 32px;
 }

.id-info-box h4  {
    font-size:  1.3rem;
    color:  var(--accent-light);
    margin-bottom:  20px;
 }

.id-info-item  {
    display:  flex;
    align-items:  flex-start;
    gap:  12px;
    padding:  10px 0;
    border-bottom: 1px solid rgba(201, 146, 42, .3);
 }

.id-info-item:last-child  {
    border-bottom:  none;
 }

.id-info-icon  {
    color:  var(--accent);
    font-size:  .9rem;
    margin-top:  3px;
    flex-shrink:  0;
 }

.id-info-text  {
    font-size:  .92rem;
    line-height:  1.55;
 }

.id-type-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  32px 26px;
     position:  relative;
     transition:  var(--transition);
     border:  2px solid var(--border);
 }

.id-type-card:hover  {
     border-color:  var(--accent);
     transform:  translateY(-5px);
     box-shadow:  var(--shadow-lg);
 }

.id-type-num  {
     font-size:  .65rem;
     letter-spacing:  2px;
     color:  var(--text-muted);
     display:  block;
     margin-bottom:  14px;
 }

.id-type-icon  {
     font-size:  2rem;
     color:  var(--accent);
     margin-bottom:  14px;
     display:  block;
 }

.id-type-card h5  {
     font-size:  1.1rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  10px;
 }

.id-type-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.7;
     margin:  0;
 }

 .id-step-card  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     position:  relative;
     transition:  var(--transition);
     border: 1px solid var(--border)
 }

.id-step-card:hover  {
    border-color: var(--primary);
    transform: translatey(5px);
 }
.id-step-num  {
     font-family:  var(--font-label);
     font-size:  2rem;
     font-weight:  700;
     color:  var(--border);
     display:  block;
     margin-bottom:  10px;
     transition:  var(--transition);
     position: absolute;
    right: 10px;
    top: 0;
    margin: 10px;
 }

.id-step-card h5  {
     font-family:  var(--font-head);
     font-size:  1.05rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  8px;
     transition:  var(--transition);
 }

.id-step-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.65;
     margin:  0;
     transition:  var(--transition);
 }

 .id-split-list  {
    background: var(--light-bg);
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
     list-style:  none;
     padding: 20px;
 }

.id-split-list li  {
     font-size:  .92rem;
     padding:  8px 0;
     border-bottom:  1px solid rgba(255, 255, 255, .08);
     display:  flex;
     gap:  10px;
     align-items:  flex-start;
 }

.id-split-list li:last-child  {
     border-bottom:  none;
 }

.id-split-list li i  {
     color:  var(--accent);
     margin-top:  3px;
     flex-shrink:  0;
 }

.fw-visual-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid  rgba(201, 146, 42, .3); }
.fw-visual-item:last-child { border-bottom: none; }
.fw-visual-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.fw-visual-text { font-size: .92rem; }

.fw-srv-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  32px 26px;
     transition:  var(--transition);
     border: 1px solid var(--border);
     border-top:  4px solid var(--border);
 }

.fw-srv-card:hover  {
     border-top-color:  var(--accent);
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-4px);
 }

.fw-srv-icon  {
     width:  52px;
     height:  52px;
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     font-size:  1.3rem;
     color:  var(--accent);
     margin-bottom:  18px;
     transition:  var(--transition);
 }

.fw-srv-card:hover .fw-srv-icon  {
     background:  var(--accent);
     color:  var(--white);
 }

.fw-srv-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  10px;
 }

.fw-srv-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.7;
     margin:  0;
 }
.fw-ch-card  {
     background:  var(--white);
     border-left:  4px solid var(--accent);
     padding:  26px 22px;
     border-radius:  0 var(--radius) var(--radius) 0;
     transition:  0.5s all;
 }

.fw-ch-card:hover  {
    transform: translateY(5px);
     border-left-color:  var(--accent-light);
 }

.fw-ch-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  8px;
     transition:  var(--transition);
 }

.fw-ch-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
     transition:  var(--transition);
 }
.db-kw-tag  {
     display:  inline-block;
     background:  var(--accent-pale);
     border:  1px solid rgba(201, 146, 42, .25);
     color:  var(--accent);
     font-family:  var(--font-label);
     font-size:  .68rem;
     letter-spacing:  1px;
     padding:  5px 12px;
     border-radius:  5px;
     transition:  var(--transition);
     width: 100%;
 }

.db-kw-tag:hover  {
     background:  var(--accent);
     color:  var(--white);
 }
.db-card  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     text-align:  center;
     transition:  var(--transition);
     border: 1px solid var(--border);
 }

.db-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.db-card:hover .db-card-icon  {
     color:  var(--accent-light);
 }

.db-card-icon  {
     font-size:  2.2rem;
     color:  var(--accent);
     margin-bottom:  14px;
     transition:  var(--transition);
 }

.db-card-name  {
     font-family:  var(--font-head);
     font-size:  1.05rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  8px;
     transition:  var(--transition);
 }

.db-card-desc  {
     font-size:  .85rem;
     color:  var(--text-muted);
     line-height:  1.6;
     margin:  0;
     transition:  var(--transition);
 }


.db-strategy-panel  {
     background:  var(--primary);
     border-radius:  var(--radius-lg);
     padding:  30px 30px 20px;
 }

.db-strategy-panel h3  {
     font-family:  var(--font-head);
     font-size:  1.6rem;
     color:  var(--accent-light);
     margin-bottom:  26px;
 }

.db-step  {
     display:  flex;
     gap:  16px;
     margin-bottom:  20px;
     align-items:  flex-start;
 }

.db-step-num  {
     width:  36px;
     height:  36px;
     border-radius:  50%;
     background:  var(--accent);
     color:  var(--primary);
     font-family:  var(--font-label);
     font-size:  .7rem;
     font-weight:  700;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     flex-shrink:  0;
 }

.db-step-body h6  {
     font-family:  var(--font-head);
     font-size:  1rem;
     color:  var(--white);
     margin-bottom:  4px;
 }

.db-step-body p  {
     color:  rgba(255, 255, 255, .6);
     font-size:  .86rem;
     line-height:  1.6;
     margin:  0;
 }

.db-strategy-right h2  {
     font-family:  var(--font-head);
     font-size:  2.2rem;
     font-weight:  900;
     color:  var(--primary);
     margin-bottom:  16px;
 }

.db-strategy-right h2 em  {
     font-style:  italic;
     color:  var(--accent);
 }

.db-strategy-right p  {
     color:  var(--text-muted);
     line-height:  1.8;
 }

.db-strategy-right ul  {
     list-style:  none;
     padding:  0;
     margin:  20px 0 0;
 }

.db-strategy-right ul li  {
     display:  flex;
     gap:  10px;
     padding:  9px 0;
     border-bottom:  1px solid var(--border);
     color:  var(--text-muted);
     font-size:  .92rem;
 }

.db-strategy-right ul li:last-child  {
     border-bottom:  none;
 }

.db-strategy-right ul li i  {
     color:  var(--accent);
     flex-shrink:  0;
     margin-top:  2px;
 }

.db-bool-card  {
     border:  1px solid var(--border);
     border-radius:  var(--radius);
     padding:  26px 22px;
     transition:  var(--transition);
 }

.db-bool-card:hover  {
     border-color:  var(--accent);
     box-shadow:  var(--shadow);
 }

.db-bool-op  {
     font-family:  var(--font-label);
     font-size:  1.8rem;
     font-weight:  700;
     color:  var(--accent);
     display:  block;
     margin-bottom:  10px;
 }

.db-bool-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  8px;
 }

.db-bool-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
 }
.ri-method-item  {
     display:  flex;
     gap:  14px;
     padding:  12px 0;
     border-bottom:  1px solid var(--border);
     align-items:  flex-start;
 }

.ri-method-item:last-child  {
     border-bottom:  none;
 }

.ri-method-icon  {
     width:  36px;
     height:  36px;
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     color:  var(--accent);
     flex-shrink:  0;
     font-size:  .9rem;
 }

.ri-method-body h6  {
     font-family:  var(--font-head);
     font-size:  .95rem;
     color:  var(--primary);
     margin-bottom:  2px;
 }

.ri-method-body p  {
     color:  var(--text-muted);
     font-size:  .83rem;
     margin:  0;
 }
.ri-int-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  24px;
     border-left:  5px solid var(--border);
     transition:  var(--transition);
 }

.ri-int-card:hover  {
     border-left-color:  var(--accent);
     transform:  translateX(5px);
     box-shadow:  var(--shadow-lg);
 }

.ri-int-num  {
     font-family:  var(--font-label);
     font-size:  14px;
     letter-spacing:  2px;
     color:  var(--text-muted);
     display:  block;
     margin-bottom:  12px;
 }

.ri-int-card h5  {
     font-family:  var(--font-head);
     font-size:  1.1rem;
     font-weight:  700;
     color:  var(--primary);
     margin-bottom:  8px;
 }

.ri-int-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.7;
     margin:  0;
 }

.ri-int-icon  {
     font-size:  1.8rem;
     color:  var(--accent);
     margin-bottom:  14px;
     display:  block;
}
.ri-mistake-card  {
      background:  rgba(201, 146, 42, .1);
     border:  1px solid rgba(201, 146, 42, .3);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     transition:  var(--transition);
     text-align: center;
 }

.ri-mistake-card:hover  {
    transform: translateY(-5px);
     border-color:  var(--accent);
 }

.ri-mistake-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight: 700;
     margin-bottom:  8px;
 }

.ri-mistake-card p  {
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
 }

.ri-mistake-icon  {
     font-size:  1.5rem;
     color:  var(--accent);
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border:  1px solid rgba(201, 146, 42, .3);
     border-radius: 5px;
     margin: 0 auto 15px;
 }
 .inner-ban-card {
    background: var(--accent-pale); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg);
 }
.dl-hl-item  {
     display:  flex;
     gap:  12px;
     padding:  10px 0;
     border-bottom:  1px solid rgba(15, 37, 64, .1);
     align-items:  flex-start;
 }

.dl-hl-item:last-child  {
     border-bottom:  none;
 }

.dl-hl-item i  {
     color:  var(--primary);
     flex-shrink:  0;
     margin-top:  3px;
 }

.dl-hl-item span  {
     font-size:  .92rem;
     color:  var(--primary);
 }

.dl-comp-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  24px;
     transition:  var(--transition);
     position:  relative;
     border: 1px solid var(--border);
 }

.dl-comp-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-4px);
 }
.dl-comp-card:hover .dl-comp-num  {
    opacity: 1;
 }

.dl-comp-num  {
     font-family:  var(--font-label);
     font-size:  28px;
     letter-spacing:  2px;
     color:  var(--text-muted);
     display:  block;
     margin-bottom:  14px;
     position: absolute;
     right: 0;
     top: 0;
     margin: 20px;
     opacity: 0.5;
     transition:  var(--transition);
 }

.dl-comp-card h5  {
     font-family:  var(--font-head);
     font-size:  1.1rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  10px;
 }

.dl-comp-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.7;
     margin:  0;
 }

.dl-comp-icon  {
     font-size:  1.8rem;
     color:  var(--accent);
     margin-bottom:  14px;
     display:  block;
 }

 .dl-split  {
     background:  var(--white);
     padding:  90px 0;
 }

.dl-split-img  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  30px;
 }

.dl-split-img h4  {
     font-family:  var(--font-head);
     font-size:  1.3rem;
     color:  var(--primary-dark);
     margin-bottom:  22px;
     font-weight: 600;
 }

.dl-timeline  {
     position:  relative;
 }

.dl-timeline::before  {
     content:  '';
     position:  absolute;
     left:  7px;
     top:  10px;
     bottom:  0;
     width:  2px;
     background:  var(--border);
     max-height: calc(100% - 55px);
 }

.dl-tl-item  {
     position:  relative;
     margin-bottom:  20px;
     padding-left: 35px;
 }

.dl-tl-dot  {
     position:  absolute;
     left:  0;
     top:  4px;
     width:  16px;
     height:  16px;
     border-radius:  50%;
     background:  #fff;
     border:  2px solid var(--accent);
 }

.dl-tl-item h6  {
     font-family:  var(--font-head);
     font-size:  .95rem;
     color:  var(--white);
     margin-bottom:  2px;
 }

.dl-tl-item p  {
     color:  var(--text-muted);
     font-size:  .83rem;
     margin:  0;
 }

.dl-split-content h2  {
     font-family:  var(--font-head);
     font-size:  2.2rem;
     font-weight:  900;
     color:  var(--primary-dark);
     margin-bottom:  18px;
 }

.dl-split-content h2 em  {
     font-style:  italic;
     color:  var(--accent);
 }

.dl-split-content p  {
     color:  var(--text-muted);
     line-height:  1.8;
 }

.dl-check-list  {
     list-style:  none;
     padding:  0;
     margin:  20px 0 0;
 }

.dl-check-list li  {
     display:  flex;
     gap:  10px;
     padding:  9px 0;
     border-bottom:  1px solid var(--border);
     color:  var(--text-muted);
     font-size:  .92rem;
 }

.dl-check-list li:last-child  {
     border-bottom:  none;
 }

.dl-check-list li i  {
     color:  var(--accent);
     flex-shrink:  0;
     margin-top:  2px;
 }
.dl-wr-card  {
     background:  var(--white);
     border-left:  4px solid var(--accent);
     padding:  26px 22px;
     border-radius:  0 var(--radius) var(--radius) 0;
     margin-bottom:  16px;
     transition:  var(--transition);
 }

.dl-wr-card:hover  {
    transform: translateY(-5px);
     border-left-color:  var(--accent-light);
 }


.dl-wr-card h6  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  6px;
     transition:  var(--transition);
 }

.dl-wr-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
     transition:  var(--transition);
 }


 .ck-kpi  {
     text-align:  center;
     padding:  20px 0 0;
 }

.ck-kpi-val  {
     font-family:  var(--font-head);
     font-size:  1.5rem;
     font-weight:  700;
     color:  var(--accent-light);
     display:  block;
 }

.ck-kpi-label  {
     font-family:  var(--font-label);
     font-size:  .6rem;
     letter-spacing:  2px;
     text-transform:  uppercase;
     display:  block;
     margin-top:  4px;
 }
.ck-type-card  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  36px 28px;
     text-align:  center;
     transition:  var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    height: 100%;
 }
.ck-type-card::before  {
     content: "";
     width: 0;
     height: 100%;
     border-bottom: 3px solid var(--accent);
     opacity: 0;
     transition: 0.3s all;
     position: absolute;
     bottom: 0;
     left: 0;

 }
.ck-type-card:hover::before  {
     width: 100%;
     height: 100%;
     opacity: 1;
     transition: 0.3s all;

 }

.ck-type-card:hover  {
     transform:  translateY(-5px);
     box-shadow:  var(--shadow-lg);
 }


.ck-type-card:hover .ck-type-icon  {
     color:  var(--accent-light);
 }

.ck-type-num  {
     font-family:  var(--font-label);
     font-size:  .65rem;
     letter-spacing:  2px;
     color:  var(--text-muted);
     display:  block;
     margin-bottom:  14px;
     transition:  var(--transition);
 }

.ck-type-icon  {
     font-size:  2rem;
     color:  var(--accent);
     margin-bottom:  14px;
     display:  block;
     transition:  var(--transition);
 }

.ck-type-card h5  {
     font-family:  var(--font-head);
     font-size:  1.1rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  10px;
     transition:  var(--transition);
 }

.ck-type-card p  {
     color:  var(--text-muted);
     font-size:  .88rem;
     line-height:  1.7;
     margin:  0;
     transition:  var(--transition);
 }
.ck-check-list  {
     list-style:  none;
     padding:  0;
     margin:  20px 0 0;
 }

.ck-check-list li  {
     display:  flex;
     gap:  10px;
     padding:  9px 0;
     border-bottom:  1px solid var(--border);
     color:  var(--text-muted);
     font-size:  .92rem;
 }

.ck-check-list li:last-child  {
     border-bottom:  none;
 }

.ck-check-list li i  {
     color:  var(--accent);
     flex-shrink:  0;
     margin-top:  2px;
 }

.ck-split-right  {
     background:  var(--accent);
     border-radius:  var(--radius-lg);
     padding:  40px 36px;
 }

.ck-split-right h4  {
     font-family:  var(--font-head);
     font-size:  1.4rem;
     color:  var(--primary-dark);
     font-weight:  700;
     margin-bottom:  22px;
 }

.ck-eg-item  {
     background:  rgba(15, 37, 64, .08);
     border-radius:  var(--radius);
     padding:  16px;
     margin-bottom:  12px;
 }

.ck-eg-item h6  {
     font-family:  var(--font-head);
     font-size:  .92rem;
     color:  var(--primary-dark);
     margin-bottom:  4px;
     font-weight: 700;
 }

.ck-eg-item p  {
     font-size:  .83rem;
     color:  rgba(15, 37, 64, .7);
     margin:  0;
 }
.ck-stmt-card  {
      background:  rgba(201, 146, 42, .08);
     border:  1px solid rgba(201, 146, 42, .3);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     transition:  var(--transition);
 }

.ck-stmt-card:hover  {
    transform: translateY(5px);
 }

.ck-stmt-icon  {
     font-size:  1.5rem;
     color:  var(--accent);
     margin-bottom:  14px;
 }

.ck-stmt-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     margin-bottom:  8px;
     font-weight: 700;
 }

.ck-stmt-card p  {
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
 }

.ti-stat-row { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}
.ti-stat-item  {
     text-align:  center;
 }

.ti-stat-val  {
     font-family:  var(--font-head);
     font-size:  2rem;
     font-weight:  700;
     color:  var(--accent-light);
     display:  block;
 }

.ti-stat-key  {
     font-family:  var(--font-label);
     font-size:  .6rem;
     letter-spacing:  2px;
     text-transform:  uppercase;
     display:  block;
     margin-top:  4px;
 }
.ti-ch-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  28px 24px;
     transition:  var(--transition);
     border-top:  3px solid var(--border);
 }

.ti-ch-card:hover  {
     border-top-color:  var(--accent);
     box-shadow:  var(--shadow-lg);
 }

.ti-ch-header  {
     display:  flex;
     justify-content:  space-between;
     align-items:  flex-start;
     margin-bottom:  14px;
 }

.ti-ch-badge  {
     font-family:  var(--font-label);
     font-size:  .6rem;
     letter-spacing:  2px;
     text-transform:  uppercase;
     background:  var(--accent-pale);
     color:  var(--accent);
     padding:  4px 10px;
     border-radius:  20px;
 }

.ti-ch-icon  {
     font-size:  1.4rem;
     color:  var(--accent);
 }

.ti-ch-card h5  {
     font-family:  var(--font-head);
     font-size:  1.05rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  10px;
 }

.ti-ch-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.7;
     margin:  0;
 }
.ti-issue-card  {
     background:  var(--white);
     border-radius:  var(--radius);
     padding:  26px 22px;
     transition:  var(--transition);
     display:  flex;
     gap:  16px;
     align-items:  flex-start;
 }

.ti-issue-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-3px);
 }

.ti-issue-num  {
     width:  40px;
     height:  40px;
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     font-family:  var(--font-label);
     font-size:  .65rem;
     color:  var(--accent);
     font-weight:  700;
     flex-shrink:  0;
 }

.ti-issue-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  6px;
 }

.ti-issue-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.65;
     margin:  0;
 }


.vv-stat-item {
    padding: 18px 0;
    text-align: center;
}

.vv-stat-divider {
    height: 1px;
    background: var(--accent-light);
}

.vv-stat-val {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent-light);
    display: block;
    line-height: 1;
}

.vv-stat-desc {
    font-family: var(--font-body);
    font-size: .8rem;
    margin-top: 6px;
    display: block;
}


.vv-cover-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    border-bottom: 4px solid var(--border);
    transition: var(--transition);
}

.vv-cover-card:hover {
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.vv-cover-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.vv-cover-card:hover .vv-cover-icon {
    background: var(--accent);
    color: var(--white);
}

.vv-cover-card h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.vv-cover-card p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.7;
    margin: 0;
}


.vv-timeline {
    margin-top: 28px;
    position: relative;
    padding-left: 36px;
}

.vv-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    max-height: calc(100% - 40px);
}

.vv-tl-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    padding-left: 10px;
}

.vv-tl-item:last-child {
    margin-bottom: 0;
}

.vv-tl-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: -34px;
    top: 2px;
    transition: var(--transition);
}

.vv-tl-item:hover .vv-tl-num {
    background: var(--accent);
}

.vv-tl-body h6 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.vv-tl-body p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.65;
    margin: 0;
}

/* EXPECT BOX */
.vv-expect-box {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.vv-expect-box h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.vv-expect-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.vv-expect-item:last-child {
    border-bottom: none;
}

.vv-expect-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .95rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vv-expect-item:hover .vv-expect-icon {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.vv-expect-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.vv-expect-text p {
    color: var(--text-muted);
    font-size: .83rem;
    margin: 0;
    line-height: 1.6;
}


.vv-q-card {
     background: rgba(201, 146, 42, .1);
    border: 1px solid rgba(201, 146, 42, .35);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
}

.vv-q-card:hover {
   
    transform: translateY(-4px);
}

.vv-q-num {
    font-family: var(--font-head);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 30px;
}

.vv-q-icon {
    font-size: 1.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 14px;
    transition: var(--transition);
}

.vv-q-card:hover .vv-q-icon {
    color: var(--accent-light);
}

.vv-q-card h5 {
    font-family: var(--font-head);
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vv-q-card p {
    font-size: .86rem;
    line-height: 1.65;
    margin: 0;
}
.pp-metrics {
    display: flex;
    gap: 0;
    align-items: center;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 16px 20px;
    border: 1px solid var(--border);
}

.pp-metric {
    flex: 1;
    text-align: center;
}

.pp-metric strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pp-metric span {
    font-size: .75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.pp-metric-div {
    width: 1px;
    height: 36px;
    background: var(--border);
    margin: 0 10px;
}


.pp-slides-list {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pp-slide-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.pp-slide-row:last-child { border-bottom: none; }

.pp-slide-row:hover { background: var(--white); }

.pp-slide-num {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent);
    width: 28px;
    flex-shrink: 0;
}

.pp-slide-info {
    flex: 1;
}

.pp-slide-info strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.pp-slide-info p {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.pp-slide-badge {
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}


/* AI-Powered Tools */
.tg-ui-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.tg-ui-label {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.tg-ui-field {
    margin-bottom: 14px;
}

.tg-ui-field label {
    display: block;
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.tg-ui-input {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: .85rem;
    color: var(--text-muted);
    font-style: italic;
}

.tg-ui-generate {
    background: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    padding: 11px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    cursor: default;
}

.tg-ui-results { display: flex; flex-direction: column; gap: 8px; }

.tg-ui-result-item {
    background: var(--accent-pale);
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .84rem;
    color: var(--text);
    line-height: 1.5;
}

.tg-step-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 50px 24px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.tg-step-card:hover {
    border-top-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.tg-step-num {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.tg-step-icon {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.tg-step-card:hover .tg-step-icon { color: var(--accent); }

.tg-step-card h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tg-step-card p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.7;
    margin: 0;
}


.tg-feat-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tg-feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.tg-feat-item:last-child { border-bottom: none; }

.tg-feat-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: .95rem;
    transition: var(--transition);
}

.tg-feat-item:hover .tg-feat-icon {
    background: var(--accent);
    color: var(--white);
}

.tg-feat-body strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.tg-feat-body p {
    color: var(--text-muted);
    font-size: .84rem;
    margin: 0;
    line-height: 1.6;
}

/* TOPICS SHOWCASE */
.tg-topics-showcase {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.tg-showcase-header {
    background: var(--primary-dark);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 600;
}

.tg-showcase-badge {
    background: var(--accent);
    color: var(--primary-dark);
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.tg-topic-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.tg-topic-card:last-child { 
    border-bottom: none; 
}

.tg-topic-card:hover { 
    background: var(--lighter-bg); 
}

.tg-topic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.tg-topic-card p {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}

.tg-disc-pill {
    background: var(--accent-pale);
    border: 1px solid rgba(201, 146, 42, .4);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
    border-left-width: 3px;
}

.tg-disc-pill:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateX(-3px);
}
.rq-hero-stat-grid { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 2px; background: rgba(255,255,255,.06); 
    border-radius: var(--radius-lg); 
    overflow: hidden; width: 100%; 
}

.rq-stat  {
     background:  var(--accent-pale);;
     padding:  20px;
     text-align:  center;
 }

.rq-stat-icon  {
     font-size:  1.6rem;
     color:  var(--accent);
     display:  block;
     margin-bottom:  10px;
 }

.rq-stat-val  {
     font-family:  var(--font-head);
     font-size:  1.8rem;
     font-weight:  800;
     color:  var(--accent-light);
     display:  block;
 }

.rq-stat-label  {
     font-size:  .75rem;
     display:  block;
     margin-top:  4px;
 }
.rq-type-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  32px 26px;
     transition:  var(--transition);
    background: var(--light-bg);
    border: 1px solid var(--border);
 }

.rq-type-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateX(-4px);
 }

.rq-type-tag  {
     font-family:  var(--font-head);
     font-size:  .62rem;
     font-weight:  700;
     letter-spacing:  2px;
     text-transform:  uppercase;
     color:  var(--accent);
     display:  block;
     margin-bottom:  12px;
 }

.rq-type-icon  {
     font-size:  1.8rem;
     color:  var(--primary-dark);
     display:  block;
     margin-bottom:  14px;
     transition:  var(--transition);
 }

.rq-type-card:hover .rq-type-icon  {
     color:  var(--accent);
 }

.rq-type-card h5  {
     font-family:  var(--font-head);
     font-size:  .97rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  10px;
 }

.rq-type-card p  {
     color:  var(--text-muted);
     font-size:  .87rem;
     line-height:  1.7;
     margin:  0;
 }
.rq-framework-panel  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  36px 32px;
 }

.rq-framework-panel h4  {
     font-family:  var(--font-head);
     font-size:  1.05rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  24px;
 }

.rq-fw-item  {
     display:  flex;
     gap:  16px;
     padding:  14px 0;
     border-bottom:  1px solid var(--border);
     align-items:  flex-start;
 }

.rq-fw-item:last-child  {
     border-bottom:  none;
 }

.rq-fw-abbr  {
     background:  var(--primary-dark);
     color:  var(--accent-light);
     font-family:  var(--font-head);
     font-size:  .65rem;
     font-weight:  800;
     letter-spacing:  1px;
     padding:  5px 8px;
     border-radius:  var(--radius);
     flex-shrink:  0;
     white-space:  nowrap;
 }

.rq-fw-content strong  {
     display:  block;
     font-family:  var(--font-head);
     font-size:  .85rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  3px;
 }

.rq-fw-content p  {
     color:  var(--text-muted);
     font-size:  .82rem;
     margin:  0;
     line-height:  1.55;
 }


.rq-process-steps  {
     margin-top:  24px;
     display:  flex;
     flex-direction:  column;
     gap:  0;
 }

.rq-ps-item  {
     display:  flex;
     gap:  14px;
     padding:  14px 0;
     border-bottom:  1px solid var(--border);
     align-items:  flex-start;
 }

.rq-ps-item:last-child  {
     border-bottom:  none;
 }

.rq-ps-num  {
     background:  var(--accent);
     color:  var(--primary-dark);
     font-family:  var(--font-head);
     font-size:  .68rem;
     font-weight:  800;
     width:  28px;
     height:  28px;
     border-radius:  50%;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     flex-shrink:  0;
     margin-top:  2px;
 }

.rq-ps-item strong  {
     display:  block;
     font-family:  var(--font-head);
     font-size:  .9rem;
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  2px;
 }

.rq-ps-item p  {
     color:  var(--text-muted);
     font-size:  .83rem;
     margin:  0;
 }
.rq-benefit-card  {
     background:  rgba(201, 146, 42, .1);
     border: 1px solid  rgba(201, 146, 42, .3);
     border-radius:  var(--radius-lg);
     padding:  26px 22px;
     display:  flex;
     gap:  18px;
     align-items:  flex-start;
     transition:  var(--transition);
 }

.rq-benefit-card:hover  {
     transform: translateY(-5px);
 }

.rq-b-icon  {
     font-size:  1.6rem;
     color:  var(--accent);
     flex-shrink:  0;
     margin-top:  3px;
     width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 146, 42, .3);
    border-radius: 5px;
     transition:  var(--transition);
 }

.rq-benefit-card:hover .rq-b-icon  {
     color:  var(--accent-light);
     
 }

.rq-benefit-card h5  {
     font-family:  var(--font-head);
     font-size:  .95rem;
     font-weight:  700;
     margin-bottom:  6px;
 }

.rq-benefit-card p  {
     font-size:  .86rem;
     line-height:  1.65;
     margin:  0;
 }


 /* Gap Visualizer card */
.lg-visual-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.lg-visual-card-title {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--accent);
}
.lg-gap-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.lg-gap-bar-label { font-size: .8rem; width: 120px; flex-shrink: 0; }
.lg-gap-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    overflow: hidden;
}
.lg-gap-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent));
    animation: lgBarGrow 1.4s ease forwards;
    transform-origin: left;
}
@keyframes lgBarGrow { from { width: 0 !important; } }
.lg-gap-badge { color: var(--accent); font-size: .78rem; width: 36px; text-align: right; }
.lg-gap-type-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}
.lg-gap-type-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -20px;
    height: 95px;
    width: 95px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .5;
}
.lg-gap-type-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lg-gap-type-num {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    opacity: 0.2;
}
.lg-gap-type-icon {
    width: 52px; height: 52px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.lg-gap-type-card h5 { 
    font-weight: 700; 
    color: var(--primary-dark); 
    margin-bottom: 10px; 
    font-size: 1.05rem; 
}
.lg-gap-type-card p { 
    color: var(--text-muted); 
    font-size: .88rem; 
    line-height: 1.65; 
    margin: 0; 
}
.lg-timeline { position: relative; padding-left: 40px; }
.lg-timeline::before {
    content: '';
    position: absolute;
    left: 30px; 
    top: 8px; 
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
    max-height: calc(100% - 60px);
}
.lg-tl-item {
    position: relative;
    padding: 0 0 32px 28px;
}
.lg-tl-item:last-child { 
    padding-bottom: 0; 
}
.lg-tl-dot {
    position: absolute;
    left: -32px; top: 4px;
    width: 46px; 
    height: 46px;
    background: var(--white);
    border: 2.5px solid var(--primary);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: .68rem;
    font-weight: 700;
    color: var(--primary);
}
.lg-tl-item:nth-child(even) .lg-tl-dot { border-color: var(--accent); color: var(--accent); }
.lg-tl-item strong { display: block; color: var(--primary-dark); font-size: 1rem; margin-bottom: 5px; }
.lg-tl-item p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin: 0; }
 .lg-analysis-panel {
    background: var(--white);
    padding: 36px;
    height: 100%;
}
.lg-analysis-panel h4 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.lg-analysis-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
    padding: 15px;
    margin: 8px 0;
    background: rgba(201, 146, 42, .1);
}
.lg-analysis-icon {
    width: 40px; height: 40px;
    background: rgba(201,146,42,.15);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    flex-shrink: 0;
}
.lg-analysis-item strong { 
    display: block; ; 
    font-size: .92rem; 
    margin-bottom: 3px; }
.lg-analysis-item p { 
    font-size: .82rem; 
    line-height: 1.5; 
    margin: 0; 
}
.lg-benefit-row-card {
    background: var(--light-bg);
    display: flex;
    transition: var(--transition);
    border: 1px dashed var(--border);
}
.lg-benefit-row-card:hover { border-color: var(--accent); background: var(--white); box-shadow: var(--shadow); }
.lg-benefit-icon-wrap {
    width: 56px;
    background: rgba(201,146,42,.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-light);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.lg-benefit-row-card h5 { 
    color: var(--primary-dark); 
    font-weight: 700; 
    margin-bottom: 7px; 
}
.lg-benefit-row-card p { 
    color: var(--text-muted); 
    font-size: .88rem; 
    line-height: 1.65; 
    margin: 0; 
}
 /* Editor mockup cards */
.ar-editor-compare {
    display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden;
    border: 1.5px solid var(--border); box-shadow: var(--shadow-lg);
    margin-top: 20px;
}
.ar-editor-pane {
    flex: 1; padding: 22px 20px;
}
.ar-editor-pane.original { background: #fff8f0; }
.ar-editor-pane.rewritten { background: #f0f5fc; }
.ar-pane-header {
    display: flex; align-items: center; gap: 7px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.ar-pane-header.orig { color: var(--accent); }
.ar-pane-header.rew { color: var(--primary); }
.ar-pane-text { font-size: .82rem; line-height: 1.7; color: var(--text-muted); }
.ar-pane-divider {
    width: 40px; background: var(--border); display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.ar-mode-card {
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    height: 100%;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    background: var(--white);
}
.ar-mode-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); transform: translateY(-3px); }
.ar-mode-badge {
    position: absolute; top: -1px; right: 20px;
    background: var(--accent); color: var(--white);
    font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 0 0 6px 6px;
}
.ar-mode-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.ar-mode-icon.dark { background: rgba(201,146,42,.15); color: var(--accent-light); }
.ar-mode-icon.light { background: var(--light-bg); color: var(--primary); }
.ar-mode-card h5 { font-weight: 700; font-size: 1rem; color: var(--primary-dark); margin-bottom: 8px; }
.ar-mode-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.ar-benefit-hexgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ar-benefit-item {
    padding: 28px 22px;
    border-left: 4px solid var(--accent);
    background: var(--light-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: var(--transition);
}
.ar-benefit-item:hover { background: var(--white); box-shadow: var(--shadow); border-left-color: var(--primary); }
.ar-benefit-item i { font-size: 1.5rem; color: var(--accent); margin-bottom: 12px; display: block; }
.ar-benefit-item h5 { font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; font-size: .98rem; }
.ar-benefit-item p { color: var(--text-muted); font-size: .85rem; line-height: 1.65; margin: 0; }

/* Stat grid (hero right side) */
.cg-hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cg-stat {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.cg-stat:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(201, 146, 42, .3);
}

.cg-stat-icon {
    font-size: 1.6rem;
    color: var(--accent-light);
    display: block;
    margin-bottom: 10px;
}

.cg-stat-val {
    display: block;
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.cg-stat-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .01em;
}
 .cg-style-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cg-style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.cg-style-card:hover {
    border-color: rgba(201, 146, 42, .4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cg-style-card:hover::before {
    opacity: 1;
}

.cg-style-tag {
    display: inline-block;
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.cg-style-abbr {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.03em;
}

.cg-style-fullname {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 14px;
}

.cg-style-card p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.cg-style-example {
    background: var(--lighter-bg);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 10px 14px;
    font-size: .76rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.65;
}
/* Process panel */
.cg-process-panel {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: 100%;
}

.cg-process-panel h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cg-proc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.cg-proc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cg-proc-num {
    width: 38px;
    height: 38px;
    background: rgba(201, 146, 42, .15);
    border: 1px solid rgba(201, 146, 42, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 800;
    color: var(--accent-light);
    flex-shrink: 0;
}

.cg-proc-item strong {
    display: block;
    font-size: .92rem;
    margin-bottom: 4px;
}

.cg-proc-item p {
    font-size: .82rem;
    line-height: 1.6;
    margin: 0;
}

/* Source types right panel */
.cg-source-panel {
    padding-left: 10px;
}

.cg-process-steps {
    margin-top: 20px;
}

.cg-ps-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.cg-ps-item:last-child {
    margin-bottom: 0;
}

.cg-ps-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
}

.cg-ps-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: .95rem;
    margin-bottom: 4px;
    margin-top: 4px;
}

.cg-ps-item p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.65;
    margin: 0;
}

/* Source type chips */
.cg-source-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.cg-source-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: .82rem;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.cg-source-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-pale);
}

.cg-source-chip i {
    color: var(--primary-light);
    font-size: .9rem;
}

.cg-source-chip:hover i {
    color: var(--accent);
}
.cg-benefit-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}

.cg-benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cg-b-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cg-benefit-card h5 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cg-benefit-card p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.68;
    margin: 0;
}

/* Citation Preview Block */
.cg-preview-block {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 44px;
}

.cg-preview-block-title {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.cg-preview-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cg-tab {
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}

.cg-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.cg-citation-output {
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    font-size: .83rem;
    line-height: 1.8;
    font-style: italic;
}

.cg-citation-output strong {
    font-style: normal;
    color: var(--accent-light);
}

 .rf-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.rf-hero-stat-item {
    border-left: 3px solid rgba(201,146,42,.5);
    padding-left: 14px;
}

.rf-hero-stat-item .stat-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.rf-hero-stat-item .stat-lbl {
    font-size: .75rem;
    margin-top: 3px;
    display: block;
}

/* Search UI Mockup */
.rf-search-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.rf-sm-topbar {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rf-sm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.rf-sm-searchbar {
    flex: 1;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    position: relative;
}
.rf-sm-searchbar i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.rf-sm-searchbar input {
    padding-left: 25px;
}
.rf-sm-searchbar input:focus {
    outline: 0;
    box-shadow: none;
}

.rf-sm-searchbar span {
    font-size: .78rem;
    color: var(--text-muted);
    flex: 1;
}

.rf-sm-searchbar i { color: var(--primary-light); font-size: .8rem; }

.rf-sm-search-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    cursor: default;
}

.rf-sm-body { padding: 14px; }

.rf-sm-result {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 10px;
    position: relative;
    transition: var(--transition);
}

.rf-sm-result:last-child { margin-bottom: 0; }

.rf-sm-result:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.rf-sm-match {
    position: absolute;
    top: 12px;
    right: 14px;
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: .67rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.rf-sm-result-title {
    font-family: var(--font-head);
    font-size: .83rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    padding-right: 70px;
}

.rf-sm-result-meta {
    font-size: .73rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rf-sm-result-abstract {
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.rf-db-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}
 .rf-db-card {
    background: rgba(255,255,255,1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rf-db-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.rf-db-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(201,146,42,.25);
    transform: translateY(-4px);
}

.rf-db-card:hover::after { transform: scaleX(1); }

.rf-db-icon-wrap {
    width: 58px;
    height: 58px;
    background: rgba(201,146,42,.12);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--accent-light);
    transition: var(--transition);
}

.rf-db-card:hover .rf-db-icon-wrap {
    background: rgba(201,146,42,.2);
}

.rf-db-card h5 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.rf-db-card p {
    font-size: .8rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.rf-db-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201,146,42,.12);
    border: 1px solid rgba(201,146,42,.2);
    color: var(--accent-light);
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

  /* Step ribbon */
.rf-steps-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.rf-steps-ribbon::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5%);
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    z-index: 0;
}

.rf-step-node {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.rf-step-bubble {
    width: 56px;
    height: 56px;
    background: var(--primary-dark);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.rf-step-bubble.active-step {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(201,146,42,.2);
}

.rf-step-node strong {
    display: block;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.rf-step-node p {
    font-size: .77rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 150px;
    margin: 0 auto;
}
  /* Capabilities + Filter showcase */
.rf-cap-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

.rf-cap-header {
    background: var(--primary-dark);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rf-cap-header span {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
}

.rf-cap-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.rf-cap-row:last-child { border-bottom: none; }

.rf-cap-row:hover { background: var(--lighter-bg); }

.rf-cap-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.rf-cap-row strong {
    display: block;
    color: var(--primary-dark);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.rf-cap-row p {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.6;
    margin: 0;
}

.rf-filter-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.rf-filter-header {
    background: var(--primary-light);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.rf-filter-header span {
    font-family: var(--font-head);
    font-size: .86rem;
    font-weight: 700;
    color: var(--white);
}

.rf-filter-body { padding: 20px 22px; }

.rf-filter-group {
    margin-bottom: 18px;
}

.rf-filter-group:last-child { margin-bottom: 0; }

.rf-filter-group label {
    display: block;
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--text-muted);
    margin-bottom: 9px;
}

.rf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.rf-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .76rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    background: var(--light-bg);
    transition: var(--transition);
}

.rf-tag.rf-tag-on {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.rf-tag.rf-tag-acc {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}


/* =============================================
           SECTION 1 – HERO
           Design: Dark gradient bg, left text column
           + right stacked floating journal match cards
        ============================================= */
.aj-sug-list {
    border-top:1px solid rgba(255,255,255,.1); 
    padding-top:20px;
}
.aj-sug-tit {
    font-size:1.45rem;
    font-weight:800;
    line-height:1;
    color: var(--accent);
}
.aj-sug-text {
    font-size:.74rem;
    margin-top:3px;
}

.js-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 76px 0 84px;
    position: relative;
    overflow: hidden;
}

.js-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 15%, rgba(201,146,42,.1) 0%, transparent 50%),
        radial-gradient(circle at 5% 85%, rgba(255,255,255,.04) 0%, transparent 40%);
    pointer-events: none;
}

.js-hero-ring {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(255,255,255,.03);
    border-radius: 50%;
    pointer-events: none;
}

.js-hero .section-desc {
    color: rgba(255,255,255,.65);
    font-size: .97rem;
    line-height: 1.78;
    margin-bottom: 30px;
    max-width: 460px;
}

/* Journal match cards stacked */
.js-match-stack {
    position: relative;
    height: 340px;
}

.js-match-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: 0 16px 48px rgba(0,0,0,.22);
    width: 100%;
    transition: var(--transition);
}

.js-match-card:nth-child(1) {
    top: 0;
    transform: rotate(-2deg) scale(.96);
    z-index: 1;
}

.js-match-card:nth-child(2) {
    top: 44px;
    transform: rotate(1deg) scale(.98);
    z-index: 2;
}

.js-match-card:nth-child(3) {
    top: 88px;
    transform: rotate(0deg) scale(1);
    z-index: 3;
}

.js-match-card:hover {
    transform: translateY(-4px) rotate(0deg) scale(1) !important;
    z-index: 10;
    box-shadow: 0 20px 56px rgba(0,0,0,.28);
}

.js-mc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.js-mc-rank {
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .67rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
}

.js-mc-if {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    color: var(--primary);
}

.js-mc-if i { color: var(--accent); font-size: .65rem; }

.js-mc-title {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.35;
}

.js-mc-field {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.js-mc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.js-mc-tag {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .68rem;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 20px;
}

.js-mc-tag.oa {
    background: rgba(46,125,50,.08);
    border-color: rgba(46,125,50,.2);
    color: #2e7d32;
}

/* =============================================
    SECTION 2 – MATCH CRITERIA
    Design: White bg, 4-column icon cards
    with top-border color reveal on hover
============================================= */
.js-criteria-card {
    background: var(--lighter-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.js-criteria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.js-criteria-card:hover {
    background: var(--white);
    border-color: rgba(201,146,42,.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.js-criteria-card:hover::before {
    transform: scaleX(1);
}

.js-criteria-icon {
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.js-criteria-card:hover .js-criteria-icon {
    background: var(--accent-pale);
    border-color: rgba(201,146,42,.3);
    color: var(--accent);
}

.js-criteria-card h5 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.js-criteria-card p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.68;
    margin: 0;
}

/* =============================================
    SECTION 3 – JOURNAL METRICS + PROCESS
    Design: Two columns – left dark metrics
    panel with progress bars, right numbered
    process list on light background
============================================= */
.js-metric-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.js-metric-row:last-child { border-bottom: none; }

.js-metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,146,42,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: .95rem;
    flex-shrink: 0;
}

.js-metric-info { flex: 1; }

.js-metric-info strong {
    display: block;
    font-size: .88rem;
    margin-bottom: 2px;
}

.js-metric-info span {
    font-size: .75rem;
}

.js-metric-bar-wrap {
    width: 80px;
    flex-shrink: 0;
}

.js-metric-bar-track {
    height: 5px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.js-metric-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: jsBarGrow 1.2s ease forwards;
}

@keyframes jsBarGrow {
    from { width: 0 !important; }
}

.js-metric-bar-pct {
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    color: var(--accent-light);
    text-align: right;
    display: block;
}

/* Process list */
.js-process-list {
    padding-left: 8px;
}

.js-proc-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.js-proc-item:first-child { padding-top: 0; }
.js-proc-item:last-child { border-bottom: none; padding-bottom: 0; }

.js-proc-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 800;
    color: var(--primary-dark);
    flex-shrink: 0;
    transition: var(--transition);
}

.js-proc-item:hover .js-proc-num {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.js-proc-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: .93rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 8px;
}

.js-proc-item p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.65;
    margin: 0;
}

/* =============================================
    SECTION 4 – BENEFITS
    Design: Light-bg, 2-col layout:
    left = 2x2 stat boxes,
    right = benefit list with icon + hover shift
    + full-width bottom CTA band
============================================= */

.js-stat-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.js-stat-box:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.js-stat-box i {
    font-size: 1.7rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.js-stat-box:hover i { color: var(--accent); }

.js-stat-val {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.js-stat-lbl {
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Benefit list items */
.js-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    transition: var(--transition);
}

.js-benefit-item:last-child { margin-bottom: 0; }

.js-benefit-item:hover {
    border-color: rgba(201,146,42,.35);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.js-bi-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.js-benefit-item:hover .js-bi-icon {
    background: var(--accent);
    color: var(--white);
}

.js-benefit-item h5 {
    font-family: var(--font-head);
    font-size: .93rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.js-benefit-item p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.65;
    margin: 0;
}


/* HERO – Minimalist with text transformation focus */
.rp-hero  {
    background:  var(--white);
    padding:  80px 0;
    border-bottom:  1px solid var(--border);
    position:  relative;
}

.rp-hero-bg-line {

	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 40%;

	background: var(--lighter-bg);

	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);

	pointer-events: none;

}

.rp-badge {

	display: inline-flex;
	align-items: center;
	gap: 7px;

	background: var(--primary-dark);
	color: var(--accent-light);

	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;

	padding: 6px 14px;
	border-radius: var(--radius);
	margin-bottom: 20px;

}

.rp-hero-title {

	font-family: var(--font-head);
	font-size: clamp(2.3rem, 4vw, 3.8rem);

	font-weight: 900;
	color: var(--primary-dark);
	line-height: 1.14;
	margin-bottom: 18px;

}

.rp-hero-title span {
	color: var(--accent);
}

.rp-hero-desc {
	color: var(--text-muted);
	font-size: .98rem;
	line-height: 1.75;
	max-width: 440px;
	margin-bottom: 28px;
}

.rp-hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.rp-btn-primary {

	display: inline-flex;
	align-items: center;
	gap: 9px;

	background: var(--primary-dark);
	color: var(--white);

	font-weight: 600;
	font-size: .9rem;
	padding: 12px 24px;

	border-radius: var(--radius);
	text-decoration: none;
	transition: var(--transition);

}

.rp-btn-primary:hover {
	background: var(--accent);
	color: var(--white);
}

.rp-btn-outline {

	display: inline-flex;
	align-items: center;
	gap: 9px;

	border: 2px solid var(--border);
	color: var(--text-muted);

	font-weight: 600;
	font-size: .9rem;
	padding: 10px 22px;

	border-radius: var(--radius);
	text-decoration: none;
	transition: var(--transition);

}

.rp-btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}


/* Transform demo */
.rp-transform-demo {

	background: var(--white);
	border-radius: var(--radius-lg);

	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1.5px solid var(--border);

}

.rp-demo-header {

	background: var(--primary-dark);
	padding: 14px 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;

}

.rp-demo-header span {
	color: rgba(255, 255, 255, .7);
	font-size: .78rem;
	font-weight: 500;
}

.rp-demo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.rp-demo-body {
	padding: 0;
}

.rp-sentence-orig {

	padding: 20px 22px;
	background: #fff8f0;

	border-bottom: 1px dashed var(--border);
	position: relative;

}

.rp-sentence-orig::before {

	content: 'ORIGINAL';

	position: absolute;
	top: 10px;
	right: 14px;

	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .1em;

	color: var(--accent);
	opacity: .7;

}

.rp-sentence-orig p {
	font-size: .85rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

.rp-arrow-row {

	padding: 12px;
	text-align: center;
	background: var(--lighter-bg);

	border-bottom: 1px dashed var(--border);

}

.rp-arrow-row i {
	color: var(--accent);
}

.rp-sentence-new {
	padding: 20px 22px;
	position: relative;
}

.rp-sentence-new::before {

	content: 'REPHRASED';

	position: absolute;
	top: 10px;
	right: 14px;

	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .1em;

	color: var(--primary);
	opacity: .7;

}

.rp-sentence-new p {
	font-size: .85rem;
	color: var(--text);
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
}


/* SECTION 2 – Rephrase Styles */
.rp-styles-section {
	padding: 80px 0;
	background: var(--primary-dark);
}

.rp-section-tag-light {

	display: inline-flex;
	align-items: center;
	gap: 7px;

	background: rgba(201, 146, 42, .12);
	color: var(--accent-light);

	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;

	padding: 5px 14px;
	border-radius: var(--radius);
	margin-bottom: 12px;

}

.rp-section-title-light {

	font-family: var(--font-head);
	font-size: clamp(1.9rem, 3vw, 2.8rem);

	font-weight: 900;
	color: var(--white);
	line-height: 1.18;
	margin-bottom: 10px;

}

.rp-section-title-light span {
	color: var(--accent-light);
}


.rp-style-card {
	border: 1.5px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 22px;
	height: 100%;
	transition: var(--transition);
	background: var(--light-bg);
    position: relative;
}

.rp-style-card:hover {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(201, 146, 42, .3);
}

.rp-style-num {

	font-family: var(--font-head);
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--accent-light);
    opacity: .5;
	line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;

}

.rp-style-icon {
	width: 48px;
	height: 48px;
	background: rgba(201, 146, 42, .12);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-light);
	font-size: 1.15rem;
	margin: -6px 0 14px;

}

.rp-style-card h5 {
	font-weight: 700;
	margin-bottom: 9px;
	font-size: 1rem;
}

.rp-style-card p {
	font-size: .85rem;
	line-height: 1.65;
	margin: 0;
}

.rp-section-tag {

	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--accent-pale);
	color: var(--accent);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: var(--radius);
	margin-bottom: 12px;

}

.rp-section-title {
	font-family: var(--font-head);
	font-size: clamp(1.9rem, 3vw, 2.7rem);
	font-weight: 900;
	color: var(--primary-dark);
	line-height: 1.18;
	margin-bottom: 10px;
}

.rp-section-title span {
	color: var(--accent);
}


.rp-feature-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	border: 1.5px solid var(--border);
	height: 100%;
	transition: var(--transition);
}

.rp-feature-box:hover {
	border-color: var(--primary-light);
	box-shadow: var(--shadow);
}

.rp-feature-box i {
	font-size: 1.6rem;
	color: var(--primary);
	margin-bottom: 14px;
	display: block;
}

.rp-feature-box h6 {
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 8px;
	font-size: .95rem;
}

.rp-feature-box p {
	color: var(--text-muted);
	font-size: .84rem;
	line-height: 1.65;
	margin: 0;
}


.rp-compare-panel {
	background: var(--primary-dark);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.rp-compare-panel h4 {
	font-family: var(--font-head);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;

}

.rp-compare-item {

	background: rgba(255, 255, 255, .05);
	border-radius: var(--radius);
	padding: 16px 18px;
	margin-bottom: 10px;
	border-left: 3px solid transparent;
	transition: var(--transition);

}

.rp-compare-item.good {
	border-left-color: var(--accent-light);
}

.rp-compare-item.bad {
	border-left-color: rgba(255, 255, 255, .2);
	opacity: .6;
}

.rp-compare-item .ci-label {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 5px;
}

.rp-compare-item.good .ci-label {
	color: var(--accent-light);
}

.rp-compare-item.bad .ci-label {
	color: rgba(255, 255, 255, .4);
}

.rp-compare-item p {
	color: rgba(255, 255, 255, .75);
	font-size: .82rem;
	line-height: 1.6;
	margin: 0;
}


/* SECTION 4 – Benefits */
.rp-benefits-section {
	padding: 80px 0;
	background: var(--white);
}

.rp-benefit-list-item {

	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);

}

.rp-benefit-list-item:first-child {
	padding-top: 0;
}

.rp-benefit-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.rp-bli-icon {

	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.2rem;
	flex-shrink: 0;

}

.rp-benefit-list-item h5 {
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 6px;
}

.rp-benefit-list-item p {
	color: var(--text-muted);
	font-size: .87rem;
	line-height: 1.65;
	margin: 0;
}


.rp-score-card {

	background: var(--primary-dark);
	border-radius: var(--radius-lg);
	padding: 36px;
	text-align: center;

}

.rp-score-card h4 {
	font-family: var(--font-head);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 24px;

}

.rp-big-score {
	font-family: var(--font-head);
	font-size: 5rem;
	font-weight: 900;
	color: var(--accent-light);
	line-height: 1;
}

.rp-big-score-label {
	color: rgba(255, 255, 255, .5);
	font-size: .8rem;
	margin-top: 4px;
	margin-bottom: 24px;
}

.rp-score-breakdown {
	display: flex;
	justify-content: center;
	gap: 28px;
}

.rp-sb-item .sb-val {
	font-family: var(--font-head);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--white);
}

.rp-sb-item .sb-label {
	color: rgba(255, 255, 255, .4);
	font-size: .72rem;
	margin-top: 2px;
}

 /* ── Stat Badges ── */
.hero-stat-row {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-stat-row .hero-stat {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 16px 22px;
    text-align: center;
    min-width: 110px;
    border: 0;
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Formula Pill ── */
.formula-pill {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
}

.formula-pill .formula-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.formula-pill .formula-main {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.formula-pill .formula-vars {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.calc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calc-card-header {
    background: var(--primary);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-card-header i {
    color: var(--accent-light);
    font-size: 1.3rem;
}

.calc-card-header span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.calc-card-body {
    padding: 20px;
}

/* ── Form Inputs ── */
.calc-form-group {
    margin-bottom: 22px;
}

.calc-form-group label {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-form-group label i {
    color: var(--accent);
    font-size: 0.85rem;
}

.calc-input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--lighter-bg);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.calc-input:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(42, 90, 140, 0.10);
}

.calc-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a3c5e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.range-wrapper input[type="range"] {
    flex: 1;
    accent-color: var(--primary);
    height: 6px;
    cursor: pointer;
}

.range-val {
    background: var(--primary);
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 50px;
    min-width: 60px;
    text-align: center;
}

.hint-text {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ── Calculate Button ── */
.btn-calculate {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 15px 24px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201, 146, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 146, 42, 0.45);
}

.btn-calculate:active {
    transform: translateY(0);
}

/* ── Result Panel ── */
.result-panel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.result-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.02) 30px,
        rgba(255,255,255,0.02) 31px
    );
    z-index: -1;
}

.result-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}

.result-number {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    position: relative;
}

.result-unit {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

.result-breakdown {
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rb-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 12px 18px;
    min-width: 100px;
}

.rb-val {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.rb-key {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Info Cards ── */
.section-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--accent);
}


.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    height: 100%;
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card-icon i {
    color: var(--accent);
    font-size: 1.3rem;
}

.info-card h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Confidence Level Pills ── */
.confidence-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cp-pill {
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    background: var(--lighter-bg);
}

.cp-pill.active,
.cp-pill:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* ── Table ── */
.ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ref-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 14px 18px;
}

.ref-table tbody td {
    padding: 13px 18px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.ref-table tbody tr:last-child td {
    border-bottom: none;
}

.ref-table tbody tr:hover td {
    background: var(--lighter-bg);
}

.badge-z {
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 50px;
}
 /* ── Donut hero graphic ── */
.plag-donut-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plag-donut-container {
    background: var(--light-bg);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    text-align: center;
    min-width: 230px;
}

.donut-svg-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.donut-text-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    fill: var(--accent-light);
}

.donut-text-unit {
    font-family: var(--font-body);
    font-size: 0.7rem;
    fill: var(--text-muted);
}

.donut-legend {
    margin-top: 14px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dl-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--accent);
}
.dl-dot.dot-2 {
    background: var(--border);
}


.checker-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.checker-card-header {
    background: var(--primary);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checker-card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checker-card-header-left i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.checker-card-header-left span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.word-counter-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-family: var(--font-head);
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
}

.checker-textarea {
    width: 100%;
    min-height: 220px;
    outline: none;
    resize: vertical;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    padding: 16px;
    background: var(--lighter-bg);
    line-height: 1.75;
}

.checker-textarea:focus {
    background: var(--white);
}

.checker-actions {
    padding: 18px 28px;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-check-plag {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(201,146,42,0.30);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-check-plag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,146,42,0.40);
}

.btn-clear {
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-clear:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.char-info {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Results Panel ── */
.result-wrapper {
    margin-top: 28px;
    display: none;
}

.result-wrapper.visible {
    display: block;
}

.result-overview {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.result-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.result-header-bar.safe {
    background: var(--accent-light);
}

.result-header-bar.warn {
    background: var(--accent-pale);
}

.result-header-bar.danger {
    background: var(--danger);
}

.rhb-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}
.warn .rhb-title {
    color: var(--accent);
}
.warn .rhb-score {
    color: var(--accent);
}

.rhb-score {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.result-body-grid {
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}

.rgb-item {
    padding: 10px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.rgb-item:last-child {
    border-right: none;
}

.rgb-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.rgb-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ── Threshold Scale ── */
.threshold-section {
    background: var(--white);
    padding: 20px;
}

.ts-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.ts-bar-track {
    height: 12px;
    border-radius: 50px;
    background: linear-gradient(to right, #1e8449 0%, #1e8449 30%, #e8b44d 30%, #e8b44d 60%, #c0392b 60%, #c0392b 100%);
    position: relative;
    margin-bottom: 6px;
}

.ts-needle {
    position: absolute;
    top: -4px;
    width: 4px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.ts-zones {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tz-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
}

.tz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ── Tips Grid ── */
.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

.tip-body h6 {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.tip-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Threshold table ── */
.ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ref-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 14px 18px;
}

.ref-table tbody td {
    padding: 13px 18px;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.ref-table tbody tr:last-child td {
    border-bottom: none;
}

.ref-table tbody tr:hover td {
    background: var(--lighter-bg);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-head);
    padding: 3px 10px;
    border-radius: 50px;
}

.status-badge.safe {
    background: var(--safe-bg);
    color: var(--safe);
}

.status-badge.warn {
    background: var(--warn-bg);
    color: var(--warn);
}

.status-badge.danger {
    background: var(--danger-bg);
    color: var(--danger);
}


/* ── Degree Type Cards ── */
.degree-selector {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.degree-chip {
    background: var(--accent-pale);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 8px 18px;
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.stan-range-count {
    font-family: var(--font-head); 
    font-weight: 700; color: 
    var(--accent-light); 
    font-size: 0.88rem;
}

.degree-chip.active,
.degree-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ── Chapter Cards ── */
.chapters-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chapters-card-header {
    background: var(--primary);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chapters-card-header i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.chapters-card-header span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.chapters-card-body {
    padding: 15px 25px;
}

/* ── Chapter Row ── */
.chapter-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.chapter-row:last-child {
    border-bottom: none;
}

.ch-num {
    width: 36px;
    height: 36px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.ch-name {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.ch-name span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.ch-input {
    width: 110px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    background: var(--lighter-bg);
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.ch-input:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(42, 90, 140, 0.10);
}

.ch-target {
    font-size: 0.78rem;
    color: var(--text-muted);
    width: 80px;
    text-align: right;
    flex-shrink: 0;
}

/* ── Total Bar ── */
.total-bar {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.tb-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.65);
}

.tb-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
}

/* ── Btn Analyze ── */
.btn-analyze {
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 14px 24px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(201,146,42,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(201,146,42,0.40);
}

/* ── Progress Result Panel ── */
.progress-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pp-header {
    background: var(--primary);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-header i {
    color: var(--accent-light);
}

.pp-header span {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.pp-body {
    padding: 24px;
}

/* ── Total Progress Ring ── */
.ring-wrap {
    text-align: center;
    padding: 24px 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.ring-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.ring-pct-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    fill: var(--primary);
}

.ring-words-text {
    font-size: 0.65rem;
    fill: var(--text-muted);
}

/* ── Chapter Progress Bars ── */
.cpb-item {
    margin-bottom: 14px;
}

.cpb-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cpb-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.cpb-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cpb-track {
    height: 8px;
    background: var(--light-bg);
    border-radius: 50px;
    overflow: hidden;
}

.cpb-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cpb-fill.over {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* ── Standard Table ── */
.std-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.std-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 14px 16px;
}

.std-table tbody td {
    padding: 13px 16px;
    font-size: 0.87rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.std-table tbody tr:last-child td {
    border-bottom: none;
}

.std-table tbody tr:hover td {
    background: var(--lighter-bg);
}

.td-bold {
    font-weight: 700;
    color: var(--primary);
}

/* ── Tips ── */
.wc-tip {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.wc-tip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.wc-tip-icon {
    width: 42px;
    height: 42px;
    background: var(--light-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.wc-tip-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.wc-tip h6 {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.wc-tip p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
/* ── Phase Dots in Hero ── */
.phase-dots {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 0;
}

.pd-item {
    display: flex;
    align-items: center;
}

.pd-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 0.85rem;
    position: relative;
}

.pd-line {
    width: 28px;
    height: 2px;
    background: var(--border);
}

.pd-label {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ── Form Card ── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-card-header {
    background: var(--primary);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-card-header i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.form-card-header span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.form-card-body {
    padding: 28px 28px 24px;
}

/* ── Input Styles ── */
.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-group-custom label i {
    color: var(--accent);
    font-size: 0.82rem;
}

.form-input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--lighter-bg);
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.form-input:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(42,90,140,0.09);
}

.form-select-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a3c5e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 42px;
    cursor: pointer;
}

/* ── Phase Weights ── */
.phase-weights {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 4px;
}

.pw-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.pw-row:last-child {
    border-bottom: none;
}

.pw-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pw-icon i {
    color: var(--accent-light);
    font-size: 0.8rem;
}

.pw-name {
    flex: 1;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text);
}

.pw-input {
    width: 70px;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 5px 10px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    background: var(--lighter-bg);
    outline: none;
    transition: var(--transition);
}

.pw-input:focus {
    border-color: var(--primary);
    background: var(--white);
}

.pw-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    width: 30px;
}

/* ── Btn Generate ── */
.btn-generate {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 14px 24px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(201,146,42,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(201,146,42,0.42);
}

/* ── Gantt / Timeline ── */
.gantt-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.gantt-header {
    background: var(--primary);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.gantt-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gantt-header-left i {
    color: var(--accent-light);
}

.gantt-header-left span {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
}

.gantt-deadline-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-family: var(--font-head);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.gantt-body {
    padding: 28px;
}

.gantt-months-row {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
    padding-left: 180px;
}

.gantt-month-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gantt-phase-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.gpr-label {
    width: 170px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gpr-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gpr-icon i {
    font-size: 0.75rem;
}

.gpr-name {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.gpr-track {
    flex: 1;
    height: 28px;
    background: var(--light-bg);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.gpr-fill {
    height: 100%;
    border-radius: 6px;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

.gpr-fill-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.gantt-summary {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gs-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.gs-val {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.gs-key {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}

/* ── Milestones ── */
.milestones-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
}

.milestone-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.milestone-item:last-child {
    border-bottom: none;
}

.ms-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ms-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--accent-light);
    flex-shrink: 0;
}

.ms-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    min-height: 24px;
    margin-top: 4px;
}

.ms-content {
    flex: 1;
}

.ms-date {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
}

.ms-title {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.ms-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}



/* Structure cards */
.dl-struct-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.dl-struct-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.dl-struct-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.dl-struct-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-pale);
    line-height: 1;
    margin-bottom: 10px;
    color: rgba(201,146,42,.18);
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
}
.dl-struct-icon {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.dl-struct-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.dl-struct-card p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Timeline */
.dl-timeline.ppt-dl-time { padding-left: 0; list-style: none; }
.ppt-dl-time .dl-tl-item {
    display: flex;
    gap: 18px;
    padding-bottom: 26px;
    position: relative;
    margin: 0;
}
.ppt-dl-time::before {
    display: none;
}
.ppt-dl-time .dl-tl-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.ppt-dl-time .dl-tl-item:last-child::before { display: none; }
.ppt-dl-time .dl-tl-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 0 4px var(--accent-pale);
}
.ppt-dl-time .dl-tl-body h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-size: .95rem;
}
.ppt-dl-time .dl-tl-body p {
    font-size: .86rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.dl-split-img {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
}
.dl-split-img h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 28px;
    font-size: 1.15rem;
}
.dl-split-img .dl-tl-item::before { background: rgba(255,255,255,.15); }
.dl-split-img .dl-tl-body h6 { color: var(--accent-light); }
.dl-split-img .dl-tl-body p { color: rgba(255,255,255,.6); }

/* Check list */
.dl-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dl-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: .93rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.dl-check-list li:last-child { border-bottom: none; }
.dl-check-list li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* Writing cards */
.dl-wr-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    transition: 0.3s all;
}
.dl-wr-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.dl-wr-card h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: .95rem;
    margin-bottom: 6px;
}
.dl-wr-card h6 i { color: var(--accent); }
.dl-wr-card p {
    font-size: .86rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
/* Stat cards */
.dl-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.dl-stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.dl-stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Matrix preview */
.dl-matrix-preview  {
     background:  var(--white);
     border:  1px solid var(--border);
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     box-shadow:  var(--shadow-lg);
 }

.dl-matrix-header  {
     background:  var(--primary-dark);
     padding:  14px 20px;
     display:  flex;
     align-items:  center;
     gap:  8px;
 }

.dl-matrix-header span  {
     background:  rgba(255, 255, 255, .15);
     color:  rgba(255, 255, 255, .8);
     padding:  3px 12px;
     border-radius:  4px;
     font-size:  .8rem;
     font-weight:  600;
 }

.dl-matrix-header h6  {
     margin:  0;
     color:  var(--white);
     font-size:  .9rem;
     font-family:  var(--font-head);
     font-weight:  700;
 }

.dl-matrix-table  {
     width:  100%;
     border-collapse:  collapse;
     font-size:  .82rem;
 }

.dl-matrix-table th  {
     background:  var(--light-bg);
     color:  var(--primary-dark);
     font-weight:  700;
     padding:  10px 14px;
     border-bottom:  2px solid var(--border);
     font-family:  var(--font-head);
     font-size:  .78rem;
     text-transform:  uppercase;
     letter-spacing:  .04em;
 }

.dl-matrix-table td  {
     padding:  10px 14px;
     border-bottom:  1px solid var(--border);
     color:  var(--text-muted);
 }

.dl-matrix-table tr:hover td  {
     background:  var(--lighter-bg);
 }

.tag-pill  {
     background:  var(--accent-pale);
     color:  var(--accent);
     border-radius:  50px;
     padding:  2px 10px;
     font-size:  .75rem;
     font-weight:  600;
 }

/* Gantt Visual */
.gantt-preview  {
     background:  var(--white);
     border:  1px solid var(--border);
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     box-shadow:  var(--shadow-lg);
 }

.gantt-header  {
     background:  var(--primary-dark);
     padding:  14px 20px;
     display:  flex;
     align-items:  center;
     justify-content:  space-between;
 }

.gantt-header h6  {
     margin:  0;
     color:  var(--white);
     font-size:  .9rem;
     font-family:  var(--font-head);
     font-weight:  700;
 }

.gantt-header span  {
     background:  rgba(255, 255, 255, .15);
     color:  rgba(255, 255, 255, .8);
     padding:  3px 12px;
     border-radius:  4px;
     font-size:  .8rem;
     font-weight:  600;
 }

.gantt-months  {
     display:  grid;
     grid-template-columns:  200px repeat(12,  1fr);
     background:  var(--light-bg);
     border-bottom:  2px solid var(--border);
 }
.gantt-months .task-label  {
     padding:  10px 14px;
     font-weight:  700;
     font-size:  .78rem;
     text-transform:  uppercase;
     color:  var(--primary-dark);
     letter-spacing:  .04em;
     font-family:  var(--font-head);
 }

.gantt-months .month  {
     padding:  10px 4px;
     font-weight:  600;
     font-size:  .72rem;
     color:  var(--text-muted);
     text-align:  center;
 }

.gantt-row  {
     display:  grid;
     grid-template-columns:  200px repeat(12,  1fr);
     border-bottom:  1px solid var(--border);
     align-items:  center;
 }

.gantt-row:last-child  {
     border-bottom:  none;
 }

.gantt-row:hover  {
     background:  var(--lighter-bg);
 }

.gantt-row .task-label  {
     padding:  10px 14px;
     font-size:  .83rem;
     color:  var(--text);
     font-weight:  500;
 }

.gantt-row .month  {
     padding:  4px;
     position:  relative;
     min-height:  36px;
     display:  flex;
     align-items:  center;
     justify-content:  center;
 }

.gantt-bar  {
     height:  18px;
     border-radius:  4px;
     background:  linear-gradient(90deg,  var(--accent),  var(--accent-light));
     width:  100%;
 }

.gantt-bar.muted  {
     background:  linear-gradient(90deg,  var(--primary-light),  var(--primary));
     opacity:  .6;
 }
.dl-feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.dl-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.dl-feat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.dl-feat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(201, 146, 42, .18);
    line-height: 1;
    margin-bottom: 10px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
}

.dl-feat-icon {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.dl-feat-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.dl-feat-card p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}
 .ppt-preview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ppt-preview-card .card-top {
    background: var(--primary);
    padding: 22px 28px 18px;
}
.ppt-preview-card .card-top h5 { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin: 0; }
.ppt-preview-card .card-top p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 4px 0 0; }
.ppt-preview-card .slide-thumb {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    aspect-ratio: 16/6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}
.ppt-preview-card .slide-thumb i { font-size: 2.8rem; color: rgba(255,255,255,.3); }
.ppt-preview-card .card-meta { padding: 18px 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.ppt-meta-tag {
    background: var(--light-bg);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

/* ── Slide Breakdown ── */
.slide-breakdown { background: var(--white); }
.slide-item-card {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}
.slide-item-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.slide-num { font-family: var(--font-head); font-size: .72rem; font-weight: 800; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.slide-item-card h6 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; font-size: .95rem; }
.slide-item-card p { font-size: .86rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.slide-item-card .slide-icon { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 12px; }

/* ── Design Features ── */
.design-feat-section { background: var(--primary-dark); }
.design-feat-section .section-title { color: var(--white); }
.design-feat-section .section-sub { color: rgba(255,255,255,.6); }
.design-feat-section .section-label { background: rgba(201,146,42,.15); border-color: rgba(201,146,42,.3); }
.feat-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    height: 100%;
}
.feat-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,146,42,.4); }
.feat-card i { font-size: 1.8rem; color: var(--accent-light); margin-bottom: 16px; display: block; }
.feat-card h6 { font-family: var(--font-head); font-weight: 700; margin-bottom: 10px; font-size: .95rem; }
.feat-card p { font-size: .86rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ── How to Use ── */
.how-section { background: var(--light-bg); }
.step-row { display: flex; gap: 0; flex-direction: column; }
.step-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-item h6 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.step-item p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.download-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    border: 1px solid var(--border);
    position: sticky;
    top: 20px;
}
.download-panel h4 { font-family: var(--font-head); font-weight: 800; color: var(--primary-dark); margin-bottom: 6px; }
.download-panel .price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); }
.download-panel .price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.dl-check { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--text); padding: 6px 0; }
.dl-check i { color: var(--accent); font-size: .9rem; }

.cl-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cl-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: .78rem; font-weight: 600;
    padding: 6px 14px; border-radius: 50px;
}
.cl-badge i { color: var(--accent); }

.letter-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.letter-preview .lp-toolbar {
    background: var(--primary-dark);
    padding: 10px 18px;
    display: flex;
    gap: 7px;
    align-items: center;
}
.lp-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-dot-r { background: #ff5f57; }
.lp-dot-y { background: #febc2e; }
.lp-dot-g { background: #28c840; }
.lp-toolbar span { color: rgba(255,255,255,.45); font-weight: 600; font-size: 18px; margin-left: 10px; font-family: var(--font-body); }
.lp-body { padding: 28px 32px; background: var(--white); }
.lp-from { font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; }
.lp-salute { font-weight: 600; color: var(--primary-dark); margin-bottom: 10px; font-size: .9rem; }
.lp-para { font-size: .82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.lp-field {
    display: inline-block;
    background: var(--accent-pale);
    border: 1px dashed var(--accent);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: .78rem;
    color: var(--accent);
    font-weight: 600;
}
.lp-sign { 
    margin-top: 18px; 
    font-size: .85rem; 
    color: var(--primary-dark); 
    font-weight: 600; 
}
  /* ── Template Sections ── */
.tpl-section { background: var(--white); }
.tpl-sec-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.tpl-sec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}
.tpl-sec-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.tpl-sec-card:hover::before { opacity: 1; }
.tpl-sec-num { 
    font-family: var(--font-head); 
    font-size: 2rem; font-weight: 
    800; color: rgba(26,60,94,.08); 
    line-height: 1; 
    margin-bottom: 12px; 
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
}
.tpl-sec-card h6 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.tpl-sec-card p { font-size: .87rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.tpl-sec-card .tpl-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
    border: 1px solid var(--border);
}

/* ── Journals grid ── */
.journal-section { background: var(--primary-dark); }
.journal-section .section-title { color: var(--white); }
.journal-section .section-sub { color: rgba(255,255,255,.6); }
.journal-section .section-label { background: rgba(201,146,42,.15); border-color: rgba(201,146,42,.3); }
.journal-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.journal-card:hover { background: rgba(255,255,255,.1); border-color: var(--accent); transform: translateY(-2px); }
.journal-card i { font-size: 1.8rem; color: var(--accent-light); margin-bottom: 14px; display: block; }
.journal-card h6 { font-family: var(--font-head); font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.journal-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ── Writing tips ── */
.tips-section { background: var(--light-bg); }
.tip-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tip-item:hover { box-shadow: var(--shadow); }
.tip-icon { width: 44px; height: 44px; background: var(--accent-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tip-icon i { color: var(--accent); font-size: 1.1rem; }
.tip-item h6 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; font-size: .9rem; }
.tip-item p { font-size: .84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
 .rr-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rr-stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.rr-stat-box .sval { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.rr-stat-box .slbl { font-size: .78rem; color: var(--text-muted); }

.rr-doc-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.rr-doc-header {
    background: var(--primary);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rr-doc-header h6 { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .9rem; margin: 0; }
.rr-doc-header span { background: var(--accent); color: var(--white); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.rr-doc-body { padding: 24px; }
.rr-comment-block { margin-bottom: 20px; }
.rr-rev-label { font-size: .7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.rr-comment-box {
    background: var(--light-bg);
    border-left: 3px solid var(--border);
    padding: 10px 14px;
    font-size: .82rem;
    color: var(--text-muted);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    line-height: 1.6;
}
.rr-resp-label { font-size: .7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; margin: 10px 0 6px; }
.rr-resp-box {
    background: var(--accent-pale);
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    font-size: .82rem;
    color: var(--text);
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.6;
}
.rr-field { display: inline-block; background: rgba(201,146,42,.15); border: 1px dashed var(--accent); border-radius: 4px; padding: 1px 7px; font-size: .76rem; color: var(--accent); font-weight: 600; }
/* ── Response Types ── */
.resp-types { background: var(--white); }
.resp-type-card {
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
}
.resp-type-card.major {
    background: rgba(26,60,94,.04);
    border: 2px solid rgba(26,60,94,.12);
}
.resp-type-card.minor {
    background: var(--accent-pale);
    border: 2px solid rgba(201,146,42,.2);
}
.resp-type-card.reject {
    background: rgba(201,60,60,.04);
    border: 2px solid rgba(201,60,60,.1);
}
.resp-type-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.rt-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
}
.rt-badge.major { background: rgba(26,60,94,.12); color: var(--primary); }
.rt-badge.minor { background: rgba(201,146,42,.18); color: var(--accent); }
.rt-badge.reject { background: rgba(201,60,60,.1); color: #c43c3c; }
.resp-type-card h5 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.resp-type-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.resp-type-card ul { padding-left: 0; list-style: none; margin: 0; }
.resp-type-card ul li { font-size: .84rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.resp-type-card ul li i { color: var(--accent); font-size: .8rem; }

/* ── Structure guide ── */
.structure-section { background: var(--light-bg); }
.struc-table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.struc-table-wrap table { width: 100%; border-collapse: collapse; }
.struc-table-wrap thead tr { background: var(--primary); }
.struc-table-wrap thead th { color: var(--white); font-family: var(--font-head); font-size: .82rem; font-weight: 700; padding: 14px 20px; text-align: left; }
.struc-table-wrap tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.struc-table-wrap tbody tr:hover { background: var(--lighter-bg); }
.struc-table-wrap tbody td { padding: 14px 20px; font-size: .86rem; color: var(--text); vertical-align: top; }
.struc-table-wrap tbody td:first-child { font-weight: 600; color: var(--primary-dark); width: 200px; }
.struc-badge { display: inline-block; font-size: .7rem; font-weight: 700; padding: 2px 9px; border-radius: 50px; }
.struc-badge.req { background: rgba(40,167,69,.12); color: #1a7a38; }
.struc-badge.opt { background: var(--accent-pale); color: var(--accent); }

/* ── Tips ── */
.rr-tips { background: var(--primary-dark); }
.rr-tips .section-title { color: var(--white); }
.rr-tips .section-sub { color: rgba(255,255,255,.6); }
.rr-tips .section-label { background: rgba(201,146,42,.15); border-color: rgba(201,146,42,.3); }

/* ── Download ── */
.rr-download { background: var(--white); }
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dl-card {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.dl-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--primary-light)); opacity: 0; transition: var(--transition); }
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dl-card:hover::before { opacity: 1; }
.dl-card > * { position: relative; z-index: 1; }
.dl-card:hover h5, .dl-card:hover p { color: var(--white); }
.dl-card:hover .dl-icon { color: var(--accent-light); }
.dl-card:hover .dl-btn { background: var(--accent); color: var(--white); border-color: var(--accent); }
.dl-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; transition: var(--transition); }
.dl-card h5 { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; transition: var(--transition); }
.dl-card p { font-size: .86rem; color: var(--text-muted); margin-bottom: 20px; transition: var(--transition); }

.stat-row-sup {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}
.stat-row-sup .hero-stat {
    text-align: center;
}
.stat-row-sup .hero-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-row-sup .hero-stat small {
    color: var(--text-muted);
    font-size: .78rem;
}
  .hero-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}
/*.hero-badge {*/
/*    background: var(--white);*/
/*    border: 1px solid var(--border);*/
/*    border-radius: var(--radius);*/
/*    padding: .85rem 1rem;*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    gap: .7rem;*/
/*    box-shadow: var(--shadow);*/
/*    transition: transform var(--transition), box-shadow var(--transition);*/
/*}*/
/*.hero-badge:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/
/*.hero-badge i {*/
/*    color: var(--accent);*/
/*    font-size: 1.1rem;*/
/*    margin-top: .12rem;*/
/*    flex-shrink: 0;*/
/*}*/
/*.hero-badge span {*/
/*    font-size: .85rem;*/
/*    font-weight: 500;*/
/*    color: var(--text);*/
/*    line-height: 1.45;*/
/*}*/
.text-primary {
    color: var(--accent) !important;
}
  .timeline-block {
    position: relative;
    padding-left: 3rem;
}
.timeline-block::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--border);
    max-height: calc(100% - 64px);
}
.tl-item {
    position: relative;
    margin-bottom: 2rem;
}
.tl-item:last-child {
    margin-bottom: 0;
}
.tl-dot {
    position: absolute;
    left: -2.55rem;
    top: .2rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.tl-dot i {
    color: var(--white);
    font-size: .7rem;
}
.tl-item h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .93rem;
    color: var(--primary-dark);
    margin-bottom: .25rem;
}
.tl-item p {
    font-size: .86rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.exp-tip .tip-card {
    height: auto;
    margin-bottom: 15px;
}
.exp-tip .tip-card h6 {
    font-weight: 600;
}
.exp-tip .tip-card .tip-icon-col {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background-color: var(--accent-pale);
    flex-shrink: 0;
    border-radius: 5px;
}

 /* HERO BANNER */
.hero-pill-list  {
     display:  flex;
     flex-wrap:  wrap;
     gap:  .6rem;
 }

.hero-pill  {
     background:  var(--white);
     border:  1px solid var(--border);
     border-radius:  30px;
     padding:  .4rem 1rem;
     font-size:  .83rem;
     font-weight:  500;
     color:  var(--primary);
     display:  flex;
     align-items:  center;
     gap:  .4rem;
 }

.hero-pill i  {
     color:  var(--accent);
     font-size:  .8rem;
 }

.aside-box  {
     background:  #fff;
     border-radius:  var(--radius-lg);
     border: 1px solid var(--border);
     padding:  24px;
 }

.aside-box h4  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  1.15rem;
     margin-bottom:  1rem;
 }

.aside-item  {
     display:  flex;
     align-items:  flex-start;
     gap:  .8rem;
     padding:  .6rem 0;
     border-bottom:  1px solid rgba(255, 255, 255, .1);
 }

.aside-item:last-child  {
     border-bottom:  none;
 }

.aside-item i  {
     color:  var(--accent-light);
     font-size:  .9rem;
     margin-top:  .15rem;
     flex-shrink:  0;
 }

.aside-item span  {
     font-size:  .87rem;
     line-height:  1.5;
 }


/* STRUCTURE GRID */

.struct-card  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  1.8rem;
     border:  1px solid var(--border);
     height:  100%;
     transition:  transform var(--transition),  box-shadow var(--transition);
 }

.struct-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.struct-card-header  {
     display:  flex;
     align-items:  center;
     gap:  .8rem;
     margin-bottom:  .9rem;
 }

.struct-badge  {
     background:  var(--primary);
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .75rem;
     padding:  .22rem .6rem;
     border-radius:  5px;
 }

.struct-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .98rem;
     color:  var(--primary-dark);
     margin:  0;
 }

.struct-card p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }

.struct-card .tag-row  {
     display:  flex;
     flex-wrap:  wrap;
     gap:  .4rem;
     margin-top:  .8rem;
 }

.struct-tag  {
     background:  var(--accent-pale);
     color:  var(--accent);
     font-size:  .72rem;
     font-weight:  600;
     padding:  .18rem .55rem;
     border-radius:  4px;
 }


        /* WRITING PROCESS */

.process-row  {
     display:  flex;
     align-items:  flex-start;
     gap:  1.5rem;
     padding:  1.6rem;
     background:  var(--white);
     border-radius:  var(--radius-lg);
     border:  1px solid var(--border);
     margin-bottom:  1.2rem;
     transition:  box-shadow var(--transition);
 }

.process-row:hover  {
     box-shadow:  var(--shadow);
 }

.process-num  {
     width:  48px;
     height:  48px;
     border-radius:  50%;
     background:  var(--primary);
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  800;
     font-size:  .95rem;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     flex-shrink:  0;
 }

.process-row h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--primary-dark);
     font-size:  .95rem;
     margin-bottom:  .3rem;
 }

.process-row p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     margin:  0;
     line-height:  1.6;
 }

.process-aside  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  2rem;
     border:  2px solid var(--accent);
 }

.process-aside h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  1rem;
 }

.writing-tip  {
     display:  flex;
     gap:  .7rem;
     padding:  .55rem 0;
     border-bottom:  1px dashed var(--border);
 }

.writing-tip:last-child  {
     border-bottom:  none;
 }

.writing-tip i  {
     color:  var(--accent);
     font-size:  .9rem;
     margin-top:  .1rem;
     flex-shrink:  0;
 }

.writing-tip span  {
     font-size:  .86rem;
     color:  var(--text);
     line-height:  1.5;
 }


        
.dodont-section  {
     background:  var(--white);
 }

.dodont-col  {
     background:  var(--lighter-bg);
     border-radius:  var(--radius-lg);
     padding:  2rem;
     height:  100%;
 }

.dodont-col.do-col  {
    border: 1px solid var(--accent);
     border-top:  4px solid var(--accent);
 }

.dodont-col.dont-col  {
    border: 1px solid var(--accent-pale);
     border-top:  4px solid var(--accent-pale);
 }

.dodont-col h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  1.05rem;
     margin-bottom:  1.2rem;
 }

.do-col h5  {
     color:  var(--accent);
 }

        .dont-col h5  {
     color:  var(--accent-light);
 }

.dodont-item  {
     display:  flex;
     gap:  .7rem;
     padding:  .6rem 0;
     border-bottom:  1px solid var(--border);
 }

.dodont-item:last-child  {
     border-bottom:  none;
 }

.dodont-item i  {
     font-size:  .9rem;
     margin-top:  .1rem;
     flex-shrink:  0;
 }

.do-col .dodont-item i  {
     color:  var(--accent);
 }

.dont-col .dodont-item i  {
     color:  var(--accent-light);
 }

.dodont-item span  {
     font-size:  .88rem;
     color:  var(--text);
     line-height:  1.5;
 }
 .lr-hero .hero-check  {
     display:  flex;
     align-items:  flex-start;
     gap:  .7rem;
     padding:  .5rem 0;
 }

.lr-hero .hero-check i  {
     color:  var(--accent-light);
     font-size:  .9rem;
     margin-top:  .15rem;
     flex-shrink:  0;
 }

.lr-hero .hero-check span  {
     font-size:  .9rem;
     line-height:  1.5;
 }

.lr-hero .hero-card  {
     background:  var(--light-bg);
     backdrop-filter:  blur(6px);
     border:  1px solid rgba(255, 255, 255, .15);
     border-radius:  var(--radius-lg);
     padding:  2rem;
 }

.lr-hero .hero-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  1rem;
     margin-bottom:  1rem;
 }

.lr-stat  {
     text-align:  center;
     padding:  .8rem;
     border: 1px solid var(--border);
     border-radius: 10px;
 }

.lr-stat strong  {
     display:  block;
     font-family:  var(--font-head);
     font-size:  1.7rem;
     font-weight:  800;
     color:  var(--accent-light);
 }

.lr-stat small  {
     font-size:  .78rem;
     color: var(--text-muted);
 }


/* PHASE CARDS */
.phases-section  {
     background:  var(--white);
 }

.phase-card  {
     display:  flex;
     gap:  1.4rem;
     background:  var(--lighter-bg);
     border-radius:  var(--radius-lg);
     padding:  1.8rem;
     border:  1px solid var(--border);
     height:  100%;
     transition:  transform var(--transition),  box-shadow var(--transition);
 }

.phase-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.phase-icon-wrap  {
     width:  52px;
     height:  52px;
     border-radius:  12px;
     background:  var(--primary);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     flex-shrink:  0;
 }

.phase-icon-wrap i  {
     color:  var(--white);
     font-size:  1.15rem;
 }

.phase-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .97rem;
     color:  var(--primary-dark);
     margin-bottom:  .4rem;
 }

.phase-card p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }


/* SEARCH STRATEGY */
.strategy-section  {
     background:  var(--light-bg);
 }

.db-grid  {
     display:  grid;
     grid-template-columns:  repeat(auto-fill,  minmax(180px,  1fr));
     gap:  1rem;
 }

.db-grid .db-card  {
     background:  var(--white);
     border:  1px solid var(--border);
     border-radius:  var(--radius);
     padding:  1.1rem 1.2rem;
     display:  flex;
     align-items:  center;
     gap:  .8rem;
     transition:  box-shadow var(--transition),  transform var(--transition);
 }
.db-card i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.db-card span {
    font-size: .87rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.keyword-box  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  2rem;
     border:  1px solid var(--border);
 }

.keyword-box h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  1rem;
 }

.kw-tag  {
     display:  inline-block;
     background:  var(--accent-pale);
     color:  var(--accent);
     border:  1px solid rgba(201, 146, 42, .3);
     border-radius:  5px;
     padding:  .28rem .7rem;
     font-size:  .8rem;
     font-weight:  600;
     margin:  .25rem;
 }

.kw-operator  {
     display:  inline-block;
     background:  var(--primary);
     color:  var(--white);
     border-radius:  5px;
     padding:  .28rem .6rem;
     font-size:  .75rem;
     font-weight:  700;
     margin:  .25rem;
 }


/* TYPES OF LITERATURE REVIEW */
.types-section  {
     background:  var(--white);
 }

.type-card  {
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     border:  1px solid var(--border);
     height:  100%;
     transition:  box-shadow var(--transition);
 }

.type-card:hover  {
     box-shadow:  var(--shadow-lg);
 }

.type-card-head  {
     background:  linear-gradient(135deg,  var(--primary-dark),  var(--primary-light));
     padding:  1.4rem 1.6rem;
 }

.type-card-head h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--white);
     font-size:  .97rem;
     margin:  0;
 }

.type-card-head i  {
     color:  var(--accent-light);
     font-size:  1.2rem;
     display:  block;
     margin-right: 8px;
 }

.type-card-body  {
     padding:  1.4rem 1.6rem;
 }

.type-card-body p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin-bottom:  .8rem;
 }

.type-tag  {
     background:  var(--light-bg);
     color:  var(--primary);
     border-radius:  4px;
     font-size:  .75rem;
     font-weight:  600;
     padding:  .2rem .55rem;
     display:  inline-block;
     margin-right:  .3rem;
 }


/* EXAMPLE SECTION */
.example-section  {
     background:  var(--light-bg);
 }

.example-block  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     border:  1px solid var(--border);
     overflow:  hidden;
 }

.example-block-head  {
     background:  var(--primary);
     padding:  .9rem 1.5rem;
     display:  flex;
     align-items:  center;
     gap:  .7rem;
 }

.example-block-head span  {
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  600;
     font-size:  .88rem;
 }

.example-block-head i  {
     color:  var(--accent-light);
 }

.example-block-body  {
     padding:  1.5rem;
 }

.example-quote  {
     border-left:  3px solid var(--accent);
     padding-left:  1rem;
     font-size:  .88rem;
     color:  var(--text);
     line-height:  1.7;
     font-style:  italic;
     margin-bottom:  1rem;
 }

.example-note  {
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     padding:  .8rem 1rem;
     font-size:  .83rem;
     color:  var(--accent);
     display:  flex;
     gap:  .6rem;
     align-items:  flex-start;
 }

.example-note i  {
     flex-shrink:  0;
     margin-top:  .1rem;
 }
 .gap-types-strip  {
     background:  var(--primary-dark);
     border-radius:  var(--radius-lg);
     padding:  1.8rem 2rem;
 }

.gap-types-strip h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--white);
     font-size:  .95rem;
     margin-bottom:  1rem;
 }

.gap-type-pill  {
     background:  rgba(255, 255, 255, .08);
     border:  1px solid rgba(255, 255, 255, .15);
     border-radius:  8px;
     padding:  .55rem .9rem;
     display:  flex;
     align-items:  center;
     gap:  .55rem;
     margin-bottom:  .55rem;
 }

.gap-type-pill i  {
     color:  var(--accent-light);
     font-size:  .85rem;
     flex-shrink:  0;
 }

        .gap-type-pill span  {
     color:  rgba(255, 255, 255, .82);
     font-size:  .84rem;
     line-height:  1.4;
 }


/* METHODS SECTION */
.methods-section  {
     background:  var(--white);
 }

.method-number-card  {
     background:  var(--lighter-bg);
     border-radius:  10px 10px 0 0;
     padding:  2rem;
     border:  1px solid var(--border);
     height:  100%;
     position:  relative;
     transition:  transform var(--transition),  box-shadow var(--transition);
 }

.method-number-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.method-number-card::after  {
     content:  '';
     position:  absolute;
     bottom:  0;
     left:  0;
     right:  0;
     height:  3px;
     background:  linear-gradient(90deg,  var(--accent),  var(--accent-light));
     border-radius:  0 0 var(--radius-lg) var(--radius-lg);
 }

.method-num  {
     font-family:  var(--font-head);
     font-size:  2.8rem;
     font-weight:  800;
     color:  rgba(26, 60, 94, .08);
     line-height:  1;
     margin-bottom:  .2rem;
     position: absolute;
     right: 0;
     top: 0;
     margin: 20px;
 }

.method-number-card i  {
     color:  var(--accent);
     font-size:  1.3rem;
     margin-bottom:  12px;
     display:  block;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-pale);
    border-radius: 5px;
 }

.method-number-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .97rem;
     color:  var(--primary-dark);
     margin-bottom:  .5rem;
 }

.method-number-card p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }


/* VISUAL FRAMEWORK */
.framework-section  {
     background:  var(--light-bg);
 }

.framework-center  {
     background:  linear-gradient(135deg,  var(--primary-dark),  var(--primary-light));
     border-radius:  50%;
     width:  140px;
     height:  140px;
     display:  flex;
     flex-direction:  column;
     align-items:  center;
     justify-content:  center;
     margin:  0 auto 2rem;
     box-shadow:  0 0 0 12px rgba(201, 146, 42, .15),  0 0 0 24px rgba(26, 60, 94, .06);
 }

.framework-center i  {
     color:  var(--accent-light);
     font-size:  2rem;
 }

.framework-center span  {
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .8rem;
     text-align:  center;
     margin-top:  .3rem;
 }

.fw-item  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  1.5rem;
     border:  1px solid var(--border);
     height:  100%;
     text-align:  center;
     transition:  box-shadow var(--transition);
 }

.fw-item:hover  {
     box-shadow:  var(--shadow-lg);
 }

.fw-item i  {
     color:  var(--accent);
     font-size:  1.3rem;
     margin-bottom:  .6rem;
     display:  block;
 }

.fw-item h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .9rem;
     color:  var(--primary-dark);
     margin-bottom:  .4rem;
 }

.fw-item p  {
     font-size:  .84rem;
     color:  var(--text-muted);
     margin:  0;
     line-height:  1.6;
 }


/* COMPARISON TABLE */
.comparison-section  {
     background:  var(--white);
 }

.compare-table  {
     width:  100%;
     border-collapse:  separate;
     border-spacing:  0;
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     border:  1px solid var(--border);
 }

.compare-table thead th  {
     background:  var(--primary);
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .88rem;
     padding:  1rem 1.2rem;
     text-align:  left;
 }

.compare-table tbody tr:nth-child(even)  {
     background:  var(--lighter-bg);
 }

.compare-table tbody td  {
     padding:  .9rem 1.2rem;
     font-size:  .88rem;
     color:  var(--text);
     border-bottom:  1px solid var(--border);
     vertical-align:  top;
 }

.compare-table tbody tr:last-child td  {
     border-bottom:  none;
 }

.compare-table .badge-gap  {
     background:  var(--accent-pale);
     color:  var(--accent);
     border-radius:  5px;
     padding:  .18rem .55rem;
     font-size:  .75rem;
     font-weight:  700;
     white-space:  nowrap;
 }
.red-flag-card {
    display: flex;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    transition: 0.5s all;
}
.red-flag-card .tip-icon {
    height: auto;
    border-radius: 0;
    transition: 0.5s all;
}
.red-flag-card h6 {
    font-weight: 600;
}
.red-flag-card:hover {
    transform: translateY(5px);
    border-color: var(--accent);
}
.tip-row { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: 1.5rem 1.8rem; display: flex; 
    align-items: flex-start; gap: 1.2rem; 
    border: 1px solid var(--border); 
    margin-bottom: 1rem; 
    transition: 0.3s all
 }
.tip-row:hover { 
    box-shadow: var(--shadow); 
}
.tip-row:last-child { 
    margin-bottom: 0; 
}
.hyp-intro-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  2rem;
     border:  1px solid var(--border);
     box-shadow:  var(--shadow-lg);
 }

.hyp-intro-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--primary-dark);
     margin-bottom:  1.1rem;
     display:  flex;
     align-items:  center;
     gap:  .6rem;
 }

.hyp-intro-card h5 i  {
     color:  var(--accent);
 }

.hyp-formula  {
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     padding:  1.2rem 1.5rem;
     margin-bottom:  1rem;
 }

.hyp-formula small  {
     color:  var(--accent-light);
     font-size:  .75rem;
     font-weight:  700;
     letter-spacing:  .8px;
     display:  block;
     margin-bottom:  .35rem;
 }

.hyp-formula p  {
     color:  var(--text-muted);
     font-size:  .93rem;
     margin:  0;
     line-height:  1.55;
 }

.criteria-list  {
     list-style:  none;
     padding:  0;
     margin:  0;
 }

.criteria-list li  {
     display:  flex;
     align-items:  flex-start;
     gap:  .7rem;
     padding:  .5rem 0;
     border-bottom:  1px solid var(--border);
     font-size:  .89rem;
     color:  var(--text);
     line-height:  1.5;
 }

.criteria-list li:last-child  {
     border-bottom:  none;
 }

.criteria-list li i  {
     color:  var(--accent);
     font-size:  .9rem;
     margin-top:  .1rem;
     flex-shrink:  0;
 }

 /* TYPES OF HYPOTHESES */
        .types-section  {
     background:  var(--white);
 }

.hyp-type-card  {
     border-radius:  var(--radius-lg);
     border:  1px solid var(--border);
     overflow:  hidden;
     height:  100%;
     transition:  transform var(--transition),  box-shadow var(--transition);
 }

.hyp-type-card:hover  {
     transform:  translateY(-5px);
     box-shadow:  var(--shadow-lg);
 }

.hyp-type-head  {
     padding:  12px;
     border-bottom:  1px solid var(--border);
     background:  var(--lighter-bg);
 }

.hyp-type-head .type-label  {
     background:  var(--primary);
     color:  var(--white);
     font-size:  .72rem;
     font-weight:  700;
     padding:  .18rem .6rem;
     border-radius:  5px;
     display:  inline-block;
     margin-bottom:  .6rem;
 }

.hyp-type-head h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .97rem;
     color:  var(--primary-dark);
     margin:  0;
 }

.hyp-type-body  {
     padding:  12px;
 }

.hyp-type-body p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin-bottom:  .9rem;
 }

.hyp-example-box  {
     background:  var(--accent-pale);
     border-radius:  var(--radius);
     padding:  .8rem 1rem;
     font-size:  .83rem;
     color:  var(--accent);
     border-left:  3px solid var(--accent);
     font-style:  italic;
     line-height:  1.6;
 }

.hyp-example-box strong  {
     display:  block;
     font-style:  normal;
     color:  var(--primary-dark);
     font-size:  .75rem;
     text-transform:  uppercase;
     letter-spacing:  .5px;
     margin-bottom:  .3rem;
 }


/* CRITERIA SECTION */
.criteria-section  {
     background:  var(--light-bg);
 }

.criteria-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  1.8rem;
     border:  1px solid var(--border);
     height:  100%;
     text-align:  center;
     transition:  box-shadow var(--transition),  transform var(--transition);
 }

.criteria-card:hover  {
     box-shadow:  var(--shadow-lg);
     transform:  translateY(-3px);
 }

.criteria-icon-ring  {
     width:  62px;
     height:  62px;
     border-radius:  50%;
     background:  var(--primary);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     margin:  0 auto 1rem;
     box-shadow:  0 0 0 8px rgba(26, 60, 94, .08);
 }

.criteria-icon-ring i  {
     color:  var(--white);
     font-size:  1.2rem;
 }

.criteria-card h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .95rem;
     color:  var(--primary-dark);
     margin-bottom:  .5rem;
 }

.criteria-card p  {
     font-size:  .86rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }


/* BEFORE / AFTER */
.ba-section  {
     background:  var(--white);
 }

.ba-card  {
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     height:  100%;
 }

.ba-card-head  {
     padding:  1rem 1.4rem;
     display:  flex;
     align-items:  center;
     gap:  .7rem;
 }

.ba-card-head span  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .9rem;
     color:  var(--white);
 }

.ba-card.weak .ba-card-head  {
     background:  #8b2020;
 }

.ba-card.strong .ba-card-head  {
     background:  #1a6b42;
 }

.ba-card-body  {
     padding:  1.4rem;
     border:  1px solid var(--border);
     border-top:  none;
     border-radius:  0 0 var(--radius-lg) var(--radius-lg);
 }

.ba-statement  {
     font-size:  .9rem;
     color:  var(--text);
     font-style:  italic;
     line-height:  1.7;
     margin-bottom:  .9rem;
     padding:  .8rem 1rem;
     background:  var(--lighter-bg);
     border-radius:  var(--radius);
 }

.ba-verdict  {
     display:  flex;
     gap:  .6rem;
     align-items:  flex-start;
 }

.ba-verdict i  {
     font-size:  .9rem;
     margin-top:  .1rem;
     flex-shrink:  0;
 }

.ba-card.weak .ba-verdict i  {
     color:  #b83232;
 }

.ba-card.strong .ba-verdict i  {
     color:  #1a7c5e;
 }

.ba-verdict span  {
     font-size:  .85rem;
     color:  var(--text-muted);
     line-height:  1.6;
 }


/* PROCESS STEPS */
.process-section  {
     background:  var(--light-bg);
 }

.process-step-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  1.8rem;
     border:  1px solid var(--border);
     height:  100%;
     position:  relative;
     overflow:  hidden;
     transition:  transform var(--transition),  box-shadow var(--transition);
 }

.process-step-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.step-ribbon  {
     position:  absolute;
     top:  0;
     right:  0;
     background:  var(--accent);
     color:  var(--white);
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .75rem;
     padding:  .3rem .7rem;
     border-radius:  0 10px 0 10px;
 }

.process-step-card i  {
     color:  var(--primary-light);
     font-size:  1.4rem;
     margin-bottom:  .6rem;
     display:  block;
 }

.process-step-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .97rem;
     color:  var(--primary-dark);
     margin-bottom:  .5rem;
 }

.process-step-card p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }
 
 
 
 
.intro-highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 32px;
}
.intro-highlight-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.intro-highlight-card h5 i { color: var(--accent); }
.stat-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.stat-box {
    flex: 1;
    min-width: 100px;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    border: 1px solid var(--border);
}
.stat-box .stat-num {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-box .stat-label {
    font-size: .76rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.quote-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-top: 20px;
    position: relative;
}
.quote-block::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(255,255,255,.12);
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}
.quote-block p {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.quote-block span {
    color: var(--accent-light);
    font-size: .8rem;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}
 .step-timeline {
    position: relative;
    margin-top: 50px;
}
.step-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px; 
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    max-width: calc(100% - 200px);
}
.step-col {
    position: relative;
    text-align: center;
}
.step-dot {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}
.step-dot i { font-size: 1.5rem; color: var(--primary); }
.step-dot:hover {
    background: var(--primary);
    transform: scale(1.08);
}
.step-dot:hover i { color: var(--white); }
.step-num {
    position: absolute;
    top: -8px; right: -8px;
    width: 26px; height: 26px;
    background: var(--accent);
    border-radius: 50%;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-col h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
    margin-bottom: 8px;
}
.step-col p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SECTION 3: CARD GRID COMPONENTS ===== */
.components-section {
    background: var(--light-bg);
    padding: 80px 0;
}
.component-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.component-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}
.component-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.component-card .card-icon {
    width: 50px; height: 50px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.component-card .card-icon i { color: var(--accent); font-size: 1.2rem; }
.component-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
}
.component-card p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.component-card .example-tag {
    display: inline-block;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 12px;
}

/* ===== SECTION 4: MISTAKES TABLE ===== */
.mistakes-section {
    background: var(--primary-dark);
    padding: 80px 0;
}
.mistakes-section .section-title { color: var(--white); }
.mistakes-section .section-sub { color: rgba(255,255,255,.65); }
.mistakes-section .section-label {
    background: rgba(201,146,42,.18);
    border-color: rgba(201,146,42,.3);
}
.mistake-row {
    display: flex;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.mistake-row:hover { border-color: rgba(201,146,42,.4); }
.mistake-left {
    flex: 1;
    background: var(--accent-pale);
    padding: 20px 22px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.mistake-right {
    flex: 1;
    background: #dce1e9;
    padding: 20px 22px;
}
.mistake-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
}
.mistake-label.bad { color: var(--accent); }
.mistake-label.good { color: var(--primary-dark); }
.mistake-left p, .mistake-right p {
    font-size: .875rem;
    line-height: 1.6;
    margin: 0;
}
.diagram-flow { display: flex; flex-direction: column; gap: 0; }
.diagram-node {
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.diagram-node .node-icon {
    width: 38px; height: 38px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.diagram-node .node-icon i { color: var(--white); font-size: .9rem; }
.diagram-node .node-text { font-size: .88rem; font-weight: 600; color: var(--text); }
.diagram-node.accent-node { background: var(--accent-pale); border-color: rgba(201,146,42,.3); }
.diagram-node.accent-node .node-icon { background: var(--accent); }
.diagram-arrow { text-align: center; padding: 6px 0; color: var(--accent); font-size: 1.2rem; }

.compare-card  {
    border-radius:  var(--radius-lg);
    padding:  30px;
    height:  100%;
    border:  2px solid var(--border);
    transition:  all var(--transition);
    
    }

.compare-card:hover  {
     transform:  translateY(-4px);
     box-shadow:  var(--shadow-lg);
 }

.compare-card.framework  {
     background:  linear-gradient(145deg,  rgba(26, 60, 94, .05) 0%,  rgba(42, 90, 140, .08) 100%);
     border-color:  rgba(26, 60, 94, .2);
 }

.compare-card.theory  {
     background:  linear-gradient(145deg,  rgba(201, 146, 42, .05) 0%,  rgba(232, 180, 77, .08) 100%);
     border-color:  rgba(201, 146, 42, .2);
 }

.compare-card .card-badge  {
    display:  inline-block;
    font-size:  .72rem;
     font-weight:  700;
     text-transform:  uppercase;
     letter-spacing:  .1em;
    padding:  4px 12px;
     border-radius:  20px;
     margin-bottom:  16px;
    
    }
.framework .card-badge  {
     background:  rgba(26, 60, 94, .12);
     color:  var(--primary);
 }

.theory .card-badge  {
     background:  var(--accent-pale);
     color:  var(--accent);
 }

.compare-card h4  {
     font-family:  var(--font-head);
     font-weight:  800;
     font-size:  1.1rem;
     margin-bottom:  14px;
 }

.framework h4  {
     color:  var(--primary);
 }

.theory h4  {
     color:  var(--accent);
 }

.compare-card p  {
     font-size:  .88rem;
     color:  var(--text-muted);
     line-height:  1.7;
 }

.feature-list  {
     list-style:  none;
     padding:  0;
     margin-top:  16px;
 }

.feature-list li  {
     font-size:  .85rem;
     color:  var(--text);
     padding:  6px 0;
     border-bottom:  1px solid var(--border);
     display:  flex;
     align-items:  center;
     gap:  8px;
 }

.feature-list li:last-child  {
     border-bottom:  none;
 }

.feature-list li i  {
     font-size:  .8rem;
 }

.framework .feature-list li i  {
     color:  var(--primary);
 }

.theory .feature-list li i  {
     color:  var(--accent);
 }


/* ===== SECTION 3:  ACCORDION HOW-TO ===== */
.howto-section  {
     background:  var(--light-bg);
     padding:  80px 0;
 }

.howto-accordion .accordion-item  {
    border:  1px solid var(--border);
    border-radius:  var(--radius) !important;
    margin-bottom:  12px;
    overflow:  hidden;
    box-shadow:  var(--shadow);
}

.howto-accordion .accordion-button  {
    font-family:  var(--font-head);
    font-weight:  700;
    font-size:  .97rem;
    color:  var(--primary);
    background:  var(--white);
    padding:  18px 22px;

}
.howto-accordion .accordion-button:not(.collapsed)  {
    color:  var(--accent);
    background:  var(--lighter-bg);
    box-shadow:  none;
}

.howto-accordion .accordion-button::after  {
     filter:  hue-rotate(200deg);
 }

.howto-accordion .accordion-body  {
     font-size:  .9rem;
     color:  var(--text-muted);
     line-height:  1.75;
     background:  var(--lighter-bg);
 }

.howto-aside  {
    background:  var(--primary-dark);
    border-radius:  var(--radius-lg);
    padding:  30px;
    height:  100%;
}

.howto-aside h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     color:  var(--white);
     margin-bottom:  20px;
     font-size:  1rem;
 }

.howto-aside .tip-item  {
    display:  flex;
     gap:  12px;
     align-items:  flex-start;
    padding:  12px 0;
    background: transparent;
    border: 0;
    border-bottom:  1px solid rgba(255, 255, 255, .08);
}

.howto-aside .tip-item:last-child  {
     border-bottom:  none;
 }

.howto-aside .tip-num  {
    width:  28px;
     height:  28px;
     border-radius:  50%;
    background:  var(--accent);
    color:  var(--white);
    font-family:  var(--font-head);
    font-size:  .75rem;
     font-weight:  800;
    display:  flex;
     align-items:  center;
     justify-content:  center;
    flex-shrink:  0;
    
    }

.howto-aside .tip-item p  {
     font-size:  .85rem;
     color:  rgba(255, 255, 255, .75);
     line-height:  1.6;
     margin:  0;
 }

/* ===== SECTION 4:  EXAMPLES SHOWCASE ===== */

.example-card  {
    background:  var(--accent-pale);
    border:  1px solid rgba(255, 255, 255, .12);
    border-radius:  var(--radius-lg);
    padding:  26px;
    height:  100%;
    transition:  all var(--transition);
}

.example-card:hover  {
     background:  rgba(255, 255, 255, .1);
     border-color:  rgba(201, 146, 42, .35);
 }

.example-card .field-badge  {
    font-size:  .72rem;
     font-weight:  700;
     text-transform:  uppercase;
    letter-spacing:  .1em;
     color:  var(--accent-light);
    background:  rgba(201, 146, 42, .15);
     border:  1px solid rgba(201, 146, 42, .25);
    padding:  3px 10px;
     border-radius:  20px;
    display:  inline-block;
     margin-bottom:  14px;
    }
.example-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .95rem;
     margin-bottom:  12px;
 }
.example-card p  {
     font-size:  .85rem;
     line-height:  1.65;
 }

.example-card .variable-row  {
     margin-top:  14px;
     display:  flex;
     gap:  8px;
     flex-wrap:  wrap;
 }

.example-card .var-tag  {
    font-size:  .75rem;
     padding:  3px 10px;
     border-radius:  20px;
     font-weight:  600;
    
    }
.example-card .var-tag.iv  {
     background:  rgba(42, 90, 140, .4);
     color:  #8ab4e8;
 }

.example-card .var-tag.dv  {
     background:  rgba(201, 146, 42, .25);
     color:  var(--accent-light);
 }


 /* ow to Manage Time in PhD */
 .time-pillars { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.time-pillar-tag {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 30px; padding: 8px 16px;
    font-size: .85rem; font-weight: 600; color: var(--primary);
    box-shadow: var(--shadow);
}
.time-pillar-tag i { color: var(--accent); font-size: .9rem; }
.clock-visual {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
.clock-visual h5 { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 24px; }
.week-blocks { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.week-block {
    background: var(--light-bg);
    border-radius: 6px;
    padding: 10px 4px;
    text-align: center;
    border: 1px solid var(--border);
}
.week-block .day-name { font-size: .65rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: .05em; }
.week-block .time-bar { width: 100%; height: 60px; background: var(--light-bg); border-radius: 4px; margin-top: 6px; position: relative; overflow: hidden; }
.week-block .fill { position: absolute; bottom: 0; left: 0; right: 0; border-radius: 4px; }
.fill-research { background: linear-gradient(180deg, var(--primary-light), var(--primary)); }
.fill-writing { background: linear-gradient(180deg, var(--accent-light), var(--accent)); }
.fill-admin { background: linear-gradient(180deg, #6b7a93, #3d4f63); }
.week-block .hours { font-size: .7rem; font-weight: 700; color: var(--text); margin-top: 4px; }
.legend { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; }
.legend-dot.ad {
    background: #6b7a93;
}
.legend-dot.re {
    background: var(--primary);
}
.legend-dot.wr {
    background: var(--accent);
}
.h-80 {
    height: 80%;
}
.h-60 {
    height: 60%;
}
.h-70 {
    height: 70%;
}
.h-30 {
    height: 30%;
}
.h-10 {
    height: 10%;
}
 .strategy-row { display: flex; gap: 28px; align-items: center; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 20px; transition: all var(--transition); box-shadow: var(--shadow); }
.strategy-row:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.strategy-icon-wrap { width: 70px; height: 70px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strategy-icon-wrap i { font-size: 1.6rem; }
.bg-primary-soft { background: rgba(26,60,94,.1); }
.bg-accent-soft { background: var(--accent-pale); }
.color-primary { color: var(--primary); }
.color-accent { color: var(--accent); }
.strategy-content h5 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.strategy-content p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.strategy-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--border); margin-left: auto; flex-shrink: 0; }

.planner-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.planner-table thead tr { background: var(--primary-dark); }
.planner-table thead th { color: var(--white); font-family: var(--font-head); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 16px 18px; text-align: left; }
.planner-table thead th:first-child { width: 110px; }
.planner-table tbody tr:nth-child(even) td { background: var(--lighter-bg); }
.planner-table tbody tr:nth-child(odd) td { background: var(--white); }
.planner-table tbody td { padding: 14px 18px; font-size: .84rem; color: var(--text-muted); border-bottom: 1px solid var(--border); vertical-align: top; }
.planner-table tbody td:first-child { font-weight: 700; color: var(--primary); font-family: var(--font-head); font-size: .82rem; }
.task-chip { display: inline-block; background: var(--accent-pale); color: var(--accent); font-size: .72rem; font-weight: 600; padding: 2px 8px; border-radius: 12px; margin: 2px; }
.task-chip.blue { background: rgba(26,60,94,.08); color: var(--primary); }
.task-chip.grey { background: rgba(107,122,147,.1); color: var(--text-muted); }

 .warning-banner {
    background: var(--accent-pale);
    border: 1.5px solid var(--accent-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}
.warning-banner i { color: var(--accent-light); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.warning-banner p { font-size: .875rem; line-height: 1.6; margin: 0; }

.signal-cards { display: flex; flex-direction: column; gap: 12px; }
.signal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.signal-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.signal-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #dc3545; }
.dot-yellow { background: #ffc107; }
.dot-green { background: #198754; }
.signal-card .signal-text { font-size: .875rem; color: var(--text); font-weight: 500; flex: 1; }
.signal-card .signal-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.label-high { color: #dc3545; }
.label-mid { color: #d09a00; }
.label-low { color: #198754; }
.conduct-col-head {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: var(--radius) var(--radius) 0 0;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.conduct-col-head.do-head { background: var(--accent-pale); color: var(--accent-light); border: 1px solid var(--accent-pale); border-bottom: none; }
.conduct-col-head.dont-head { background: #dce1e9; color: var(--primary); border: 1px solid var(--border); border-bottom: none; }
.conduct-list {
    list-style: none; padding: 0; margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}
.conduct-list li {
    padding: 14px 20px; font-size: .875rem; color: var(--text);
    display: flex; align-items: center; gap: 10px;
    line-height: 1.55; border-bottom: 1px solid var(--border);
}
.conduct-list li:last-child { border-bottom: none; }
.do-list { background: var(--white); border: 1px solid var(--accent-pale); }
.dont-list { background: var(--white); border: 1px solid var(--border); }
.do-list li i { color: #198754; flex-shrink: 0; }
.dont-list li i { color: #dc3545; flex-shrink: 0; }

/* ===== SECTION 4: ESCALATION PATH ===== */
.escalation-section { background: var(--primary-dark); padding: 80px 0; }
.escalation-section .section-title { color: var(--white); }
.escalation-section .section-label { background: rgba(201,146,42,.18); border-color: rgba(201,146,42,.3); }
.esc-step {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 14px;
    background: rgba(255,255,255,.05);
    transition: all var(--transition);
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
}
.esc-step:hover { background: rgba(255,255,255,.1); border-color: rgba(201,146,42,.3); }
.esc-level {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; font-size: .9rem;
    flex-shrink: 0;
    background: var(--accent-light);
    border: 1px solid var(--accent-pale);
    color: var(--white);
}

.esc-content h6 { font-family: var(--font-head); font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.esc-content p { font-size: .85rem; line-height: 1.6; margin: 0; }

.burnout-meter-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.burnout-meter-card h5 { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: .97rem; margin-bottom: 22px; }
.burnout-indicator { margin-bottom: 18px; }
.burnout-indicator .label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.burnout-indicator .b-label { font-size: .82rem; font-weight: 600; color: var(--text); }
.burnout-indicator .b-pct { font-size: .78rem; font-weight: 700; color: var(--text-muted); }
.b-bar { height: 8px; background: var(--light-bg); border-radius: 10px; overflow: hidden; }
.b-fill { height: 100%; border-radius: 10px; }
.b-fill-high { background: linear-gradient(90deg, #dc3545, #ff6b6b); }
.b-fill-mid { background: linear-gradient(90deg, #ffc107, #ffd86b); }
.b-fill-low { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.b-fill-ok { background: linear-gradient(90deg, #198754, #2eb87a); }

 .symptom-category {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}
.symptom-category-head {
    padding: 16px 20px;
    display: flex; 
    align-items: center;
    gap: 10px;
    font-weight: 700; 
    font-size: .9rem;
    background: var(--accent-light);
    color: var(--white);
}
.symptom-list { list-style: none; padding: 0; margin: 0; }
.symptom-list li { font-size: .85rem; color: var(--text-muted); padding: 12px 5px 12px 20px; border-bottom: 1px dashed var(--border); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.symptom-list li:last-child { border-bottom: none; }
.symptom-list li i { font-size: .72rem; margin-top: 4px; flex-shrink: 0; }

.milestone-stack {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.milestone-item:last-child {
    border-bottom: none;
}

.milestone-item:hover {
    background: var(--light-bg);
}

.ms-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.milestone-item.accent-ms .ms-num {
    background: var(--accent);
}

.ms-body h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.ms-body p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}

.ms-badge {
    margin-left: auto;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.ms-badge-blue {
    background: rgba(26, 60, 94, .1);
    color: var(--primary);
}

.ms-badge-gold {
    background: var(--accent-pale);
    color: var(--accent);
}
.jtype-card {
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
    }

.jtype-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.jtype-head {
    padding: 20px 22px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-pale);
}
  .jtype-head .jtype-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jtype-head .jtype-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.jtype-head h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
    margin: 0;
}

.jtype-body {
    padding: 20px 22px;
    background: var(--white);
}

.jtype-body p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.jtype-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jtype-tag {
    font-size: .73rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.aside-tips {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 90px;
}

.aside-tips h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aside-tips h5 i {
    color: var(--accent-light);
}
.aside-tips .tip-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: transparent;
    
}

.aside-tips .tip-row:last-child {
    border-bottom: none;
}

.aside-tips .tip-icon {
    width: 30px;
    height: 30px;
    background: rgba(201, 146, 42, .18);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aside-tips .tip-icon i {
    color: var(--accent-light);
    font-size: .85rem;
}

.aside-tips .tip-row p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    margin: 0;
}
 .reason-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.reason-card:hover::after {
    transform: scaleX(1);
}

.reason-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(201, 146, 42, .3);
}

.reason-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201, 146, 42, .25);
    line-height: 1;
    margin-bottom: 8px;
}

.reason-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: .85rem;
    line-height: 1.65;
    margin: 0;
}
.checklist-card-two {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px 30px;
}
.checklist-card-two h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .97rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checklist-section-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 10px;
    margin-top: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px dashed var(--border);
}

.check-item:last-child { border-bottom: none; }

.check-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-box.checked { background: var(--accent); border-color: var(--accent); }
.check-box.checked i { color: var(--white); font-size: .6rem; }

.ptype-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ptype-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.ptype-row:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.005);
}

.ptype-icon-col {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--accent-light);
}

.ptype-icon-col i {
    font-size: 1.8rem; 
}

.ptype-icon-col i { 
    color: rgba(255,255,255,.9); 
}

.ptype-body-col {
    flex: 1;
    padding: 18px 22px;
    background: var(--white);
}

.ptype-body-col h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.ptype-body-col p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.ptype-meta-col {
    width: 160px;
    padding: 18px 16px;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
}

.ptype-meta-item {
    font-size: .75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ptype-meta-item i { 
    color: var(--accent); 
    font-size: .7rem; 
}
.qa-col-head {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa-col-head.col-head-left { color: var(--accent-light); }
.qa-col-head.col-head-right { color: rgba(255,255,255,.7); }

.qa-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    margin-bottom: 14px;
    transition: all var(--transition);
}

.qa-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(201,146,42,.3);
}

.qa-card .qa-q {
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.qa-card .qa-q i { flex-shrink: 0; margin-top: 2px; }

.qa-card .qa-a {
    font-size: .84rem;
    line-height: 1.65;
}

.process-step-card-two {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.process-step-card-two:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-ribbon-two {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 36px;
    transform: rotate(45deg);
}

.process-step-card-two i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.process-step-card-two h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .97rem;
    margin-bottom: 10px;
}

.process-step-card-two p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.value-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.value-box:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.value-box .vb-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid var(--border);
}

.value-box .vb-icon i { color: var(--primary); font-size: 1.1rem; }
.value-box:hover .vb-icon { background: var(--accent-pale); border-color: rgba(201,146,42,.3); }
.value-box:hover .vb-icon i { color: var(--accent); }

.value-box h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: .88rem;
    margin-bottom: 6px;
}

.value-box p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.maintain-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    transition: all var(--transition);
}

.maintain-card:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(201,146,42,.35);
}

.maintain-card .mc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mc-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(201,146,42,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-icon i { color: var(--accent-light); font-size: 1rem; }

.maintain-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
}

.maintain-card p {
    font-size: .84rem;
    line-height: 1.65;
}

.maintain-card .frequency-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(201,146,42,.15);
    color: var(--accent-light);
    border: 1px solid rgba(201,146,42,.25);
    padding: 2px 9px;
    border-radius: 20px;
    margin-top: 10px;
}
.hero-stat-row-five {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}
.hero-stat-five {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}
.hero-stat-five strong {
    display: block;
    color: var(--accent);
    font-size: 1.6rem;
    font-family: var(--font-head);
    line-height: 1;
}
.hero-stat-five span {
    font-size: .8rem;
    margin-top: 4px;
    display: block;
}
 .move-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.move-item:last-child { border-bottom: none; }
.move-num {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: .8rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.move-item h6 {
    font-size: .95rem;
    margin-bottom: 4px;
}
.move-item p {
    font-size: .82rem;
    margin: 0;
    line-height: 1.5;
}
.milestone-stack h5 {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 20px 20px 0;
}
.cars-move-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.cars-move-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.cars-card-head {
    background: var(--primary);
    padding: 28px 28px 22px;
    position: relative;
}
.cars-card-head .move-letter {
    font-family: var(--font-head);
    color: rgba(255,255,255,.12);
    font-size: 5rem;
    line-height: 1;
    position: absolute;
    top: 8px;
    right: 20px;
    font-style: italic;
}
.cars-card-head h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.25rem;
    margin-bottom: 6px;
    position: relative;
}
.cars-card-head .move-tag {
    background: var(--accent);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .6px;
    display: inline-block;
}
.cars-card-body {
    padding: 24px 28px 28px;
}
.cars-card-body p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.cars-example {
    background: var(--lighter-bg);
    border-left: 4px solid var(--accent);
    padding: 14px 16px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.cars-example strong {
    display: block;
    font-size: .75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 5px;
}
.cars-example p {
    color: var(--text);
    font-size: .85rem;
    font-style: italic;
    margin: 0;
}
.cars-checklist {
    list-style: none;
    padding: 0;
    margin-top: 14px;
    margin-bottom: 0;
}
.cars-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text);
    font-size: .87rem;
    padding: 5px 0;
}
.cars-checklist li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: .8rem;
}
 .tips-timeline {
    position: relative;
    padding-left: 36px;
}
.tips-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary-light));
    max-height: calc(100% - 90px);
}
.tips-timeline .timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 0;
}
.tips-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent);
}
.tips-timeline .timeline-item h5 {
    font-family: var(--font-head);
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 7px;
}
.tips-timeline .timeline-item p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.65;
}
.tips-visual-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    height: 100%;
}
.tips-visual-card h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.tips-visual-card .sub {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    margin-bottom: 28px;
}
.funnel-step {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}
.funnel-step:hover { background: rgba(255,255,255,.12); }
.funnel-step .fnum {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: .78rem;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.funnel-step span { 
    color: rgba(255,255,255,.85); 
    font-size: .88rem; 
}
 .mistake-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.mistake-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.mistake-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mistake-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.mistake-card h5 {
    font-family: var(--font-head);
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.mistake-card p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.65;
    margin: 0;
}
.fix-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent-pale);
    color: var(--accent);
    border: 1px solid rgba(26,92,60,.2);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    margin-top: 12px;
}
.split-right {
    flex: 1;
    background: var(--light-bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 20px;
}
.chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    position: relative;
}
.split-left h1 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}
.split-left h1 em { color: var(--accent-light); font-style: italic; }
.split-left p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    position: relative;
    max-width: 400px;
}
.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
.hero-pill {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-pill i { color: var(--accent-light); }
.right-heading {
    font-family: var(--font-head);
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.right-sub {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.component-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.component-list-item:last-child { border-bottom: none; }
.cli-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: .95rem;
    flex-shrink: 0;
}
.cli-text h6 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 3px;
}
.cli-text p {
    color: var(--text-muted);
    font-size: .83rem;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 991px) {
    .split-hero { flex-direction: column; min-height: auto; }
    .split-left { flex: none; padding: 60px 24px; }
    .split-left::after { display: none; }
    .split-right { padding: 50px 24px; }
}
 .approach-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.approach-head-qual {
    background: var(--primary);
    padding: 24px;
}
.approach-head-quant {
    background: var(--accent);
    padding: 30px 28px 24px;
}
.approach-head-mixed {
    background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 100%);
    padding: 30px 28px 24px;
}
.approach-head-qual h4,
.approach-head-quant h4,
.approach-head-mixed h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.approach-head-qual .tag,
.approach-head-quant .tag,
.approach-head-mixed .tag {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .5px;
    display: inline-block;
}
.approach-body {
    background: var(--white);
    padding: 24px;
}
.approach-body p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.approach-features {
    list-style: none;
    padding: 0;
}
.approach-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: .87rem;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}
.approach-features li:last-child { border-bottom: none; }
.approach-features li i { color: var(--accent); font-size: .75rem; }
.when-tag {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-top: 16px;
}
.when-tag strong {
    display: block;
    font-size: .75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 4px;
}
.when-tag p {
    color: var(--text-muted);
    font-size: .83rem;
    margin: 0;
    font-style: italic;
}
.checklist-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}
.checklist-box h4 {
    font-family: var(--font-head);
    color: var(--primary-dark);
    font-size: 1.35rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checklist-box h4 i { color: var(--accent); }
.check-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}
.check-row:last-child { border-bottom: none; }
.check-box-ui {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-row.done .check-box-ui {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-size: .7rem;
}
.check-row h6 {
    color: var(--text);
    font-size: .93rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.check-row p {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 0;
    line-height: 1.5;
}
.ethics-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
}
.ethics-card h4 {
    font-family: var(--font-head);
    color: var(--accent-light);
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.ethics-card .sub { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 24px; }
.ethics-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ethics-item:last-child { border-bottom: none; }
.ethics-num {
    background: var(--accent);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ethics-item h6 { color: var(--white); font-size: .9rem; margin-bottom: 3px; }
.ethics-item p { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; line-height: 1.5; }

.comp-grid-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.comp-grid-card:hover {
    background: rgba(255,255,255,.09);
    border-color: var(--accent);
    transform: translateY(-4px);
}
.comp-grid-card .bg-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    font-style: italic;
}
.comp-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.comp-grid-card h5 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.comp-grid-card p {
    font-size: .87rem;
    line-height: 1.65;
    margin: 0;
}
 .mag-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mag-tag {
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 600;
}
.mag-tag.accent { background: var(--accent); }
.mag-visual-panel {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.mag-visual-panel::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border: 40px solid rgba(255,255,255,.05);
    border-radius: 50%;
}
.mag-visual-panel::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 30px solid rgba(201,146,42,.12);
    border-radius: 50%;
}
.mvp-title {
    font-family: var(--font-head);
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rule-row {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: flex-start;
}
.rule-row:last-child { border-bottom: none; }
.rule-icon {
    color: var(--accent-light);
    font-size: .95rem;
    margin-top: 2px;
    min-width: 20px;
}
.rule-row h6 { color: var(--white); font-size: .9rem; margin-bottom: 3px; }
.rule-row p { color: rgba(255,255,255,.5); font-size: .8rem; margin: 0; line-height: 1.5; }

 .choice-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    height: 100%;
}
.choice-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.choice-card-header {
    background: var(--primary);
    padding: 28px 28px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.choice-card-header.accent-head { background: var(--accent); }
.ch-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}
.ch-text h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.ch-text p { color: rgba(255,255,255,.65); font-size: .83rem; margin: 0; }
.choice-card-body { background: var(--white); padding: 24px 28px 28px; }
.use-when-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}
.use-when-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--text);
    font-size: .88rem;
    line-height: 1.5;
}
.use-when-list li:last-child { border-bottom: none; }
.use-when-list li i { color: var(--accent); margin-top: 3px; font-size: .8rem; }
.example-snippet {
    background: var(--lighter-bg);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
}
.example-snippet .snip-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.example-snippet p {
    color: var(--text);
    font-size: .85rem;
    font-style: italic;
    margin: 0;
    line-height: 1.55;
}
.banded-mini-card {
    background: rgba(255,255,255,1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 20px;
    flex: 1;
}
.banded-mini-card .bmc-icon {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.banded-mini-card h6 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.banded-mini-card p {
    font-size: .8rem;
    margin: 0;
    line-height: 1.5;
}
.move-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}
.move-panel:hover { box-shadow: var(--shadow-lg); }
.move-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--white);
    transition: background var(--transition);
}
.move-panel-head:hover { background: var(--lighter-bg); }
.mph-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.move-num-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.move-panel.accent-move .move-num-badge { background: var(--accent); }
.move-panel-head h5 {
    font-family: var(--font-head);
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin: 0;
}
.move-panel-head .move-tag {
    background: var(--accent-pale);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(201,146,42,.2);
}
.move-panel-head .fa-chevron-down {
    color: var(--text-muted);
    font-size: .85rem;
    transition: transform var(--transition);
}
.move-panel-body {
    padding: 0 24px 24px;
    border-top: 1px solid var(--border);
}
.move-panel-body p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin: 16px 0 12px;
}
.phrase-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.phrase-chip {
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: .8rem;
    color: var(--primary);
    font-style: italic;
}
.compare-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.compare-row:last-child { border-bottom: none; }
.compare-row .results-col {
    background: var(--light-bg);
    padding: 18px 20px;
    border-right: 1px solid var(--border);
}
.compare-row .discuss-col {
    background: var(--white);
    padding: 18px 20px;
}
.compare-header .results-col,
.compare-header .discuss-col {
    padding: 14px 20px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.compare-header .results-col { background: var(--primary); color: rgba(255,255,255,.85); }
.compare-header .discuss-col { background: var(--accent); color: var(--white); }
.compare-row p { font-size: .87rem; margin: 0; line-height: 1.6; font-style: italic; }
.compare-row .results-col p { color: var(--text-muted); }
.compare-row .discuss-col p { color: var(--text); }
.compare-row .col-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.compare-row .results-col .col-label { color: var(--primary-light); }
.compare-row .discuss-col .col-label { color: var(--accent); }
.discussion-structure {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
}
.ds-title {
    font-family: var(--font-head);
    color: var(--accent-light);
    font-size: 1.15rem;
    margin-bottom: 24px;
}
.ds-step {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ds-step:last-child { border-bottom: none; }
.ds-arrow {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.ds-step h6 { 
    color: var(--white); 
    font-size: .9rem; 
    margin-bottom: 4px; 
    
}
.ds-step p { 
    color: rgba(255,255,255,.5); 
    font-size: .81rem; margin: 0; 
    line-height: 1.5; 
    
}


.quote-block-two {
    background: var(--accent-pale);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.quote-block-two::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}
.quote-block-two blockquote {
    font-style: italic;
    font-size: 1rem;
    margin: 0 0 1rem;
    line-height: 1.75;
}
.quote-block-two .quote-meta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-light);
    text-transform: uppercase;
}
.quote-percentage {
    color:var(--accent-light); 
    font-weight:800; 
    font-size:1.8rem;
}
.quote-percen {
    color:var(--text-muted); 
    font-size:0.72rem; 
    letter-spacing:1px;
}
.checklist-panel {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}
.checklist-panel h4 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.checklist-panel .checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.7rem;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.checklist-panel .checklist-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.checklist-panel .checklist-item i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}
 .mistake-card-two {
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    height: 100%;
    transition: background var(--transition), border-color var(--transition);
}
.mistake-card-two:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,146,42,0.4);
}
.mistake-icon-two {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201,146,42,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mistake-icon-two i {
    color: var(--accent-light);
    font-size: 1.2rem;
}
.mistake-card-two h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.mistake-card-two p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* How to Write an Abstract */

 .stat-ribbon {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.stat-item {
    flex: 1;
    min-width: 120px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-item .stat-val {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
}
.stat-item .stat-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}
 .abstract-template-box {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.abstract-template-box::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(201,146,42,0.07);
    border-radius: 50%;
}
.abstract-template-box .tpl-header {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.2rem;
}
.tpl-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    align-items: flex-start;
}
.tpl-tag {
    background: rgba(201,146,42,0.18);
    color: var(--accent-light);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 2px;
    min-width: 110px;
    text-align: center;
}
.tpl-text {
    font-size: 0.88rem;
    line-height: 1.6;
}
.prisma-flow-card {
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.prisma-flow-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.prisma-flow-head {
    background: var(--primary-light);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.prisma-flow-num {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
}
.prisma-flow-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}
.prisma-flow-body {
    padding: 1.5rem;
}
.prisma-flow-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.prisma-count-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.prisma-badge {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.25rem 0.7rem;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}
 .elements-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.elements-table thead th {
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 1rem 1.2rem;
    border: none;
}
.elements-table tbody td {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    background: var(--white);
}
.elements-table tbody tr:last-child td { border-bottom: none; }
.elements-table tbody tr:hover td { background: var(--lighter-bg); }
.elem-tag {
    display: inline-block;
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.elem-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}
.word-count-bar {
    height: 6px;
    background: var(--light-bg);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.word-count-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
}


/* Format Your Thesis to University Standards */

.ban-small-text {
    font-size:0.78rem;
    color:var(--text-muted);
}
.ban-sm-icon {
    width:36px;
    height:36px;
    background:var(--accent-pale);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.ban-sm-icon i {
    color:var(--accent);
}
.format-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.format-sidebar-head {
    background: var(--primary);
    padding: 1.2rem 1.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}
.format-sidebar-head i { color: var(--accent-light); margin-right: 0.5rem; }
.format-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.format-spec-row:last-child { border-bottom: none; }
.spec-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.spec-value {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
}
 .chapter-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.chapter-card:hover {
    transform: translateY(-4px);
}
.chapter-card-top {
    background: var(--light-bg);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}
.chapter-number {
    font-weight: 800;
    font-size: 2.3rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    right: 0;
    top: 0;
    margin: 15px;
}
.chapter-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chapter-icon i { 
    color: var(--white); 
    font-size: 1rem; 
}
.chapter-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin: 0;
}
.chapter-card-body {
    padding: 1.3rem 1.5rem;
}
.chapter-card-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.chapter-tag-list {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.chapter-tag {
    background: var(--accent-pale);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.page-diagram {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
}
.page-diagram-inner {
    border: 2px dashed var(--accent);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}
.margin-label {
    position: absolute;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: var(--white);
    padding: 0 0.4rem;
}
.margin-label.top { top: -10px; left: 50%; transform: translateX(-50%); }
.margin-label.bottom { bottom: -10px; left: 50%; transform: translateX(-50%); }
.margin-label.left { left: -45px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.margin-label.right { right: -45px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.page-diagram-content {
    font-family: var(--font-head);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 2;
}
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.tips-list li:last-child { border-bottom: none; }
.tip-icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tip-icon-box i { color: var(--accent-light); font-size: 0.9rem; }
.tip-text h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}
.tip-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* How to Choose the Right Journal */

 .criteria-grid-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.criteria-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}
.criteria-grid-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.criteria-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.criteria-icon i { color: var(--accent); font-size: 1.1rem; }
.criteria-grid-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.criteria-grid-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
 .redflag-card {
    border-radius: var(--radius-lg);
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    padding: 1.5rem;
    height: 100%;
    transition: 0.3s all;
}
.redflag-card:hover { 
    transform: translateY(-5px);
}
.redflag-number {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: var(--accent);
    opacity: .5;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.redflag-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.redflag-card p {
    font-size: 0.87rem;
    line-height: 1.7;
    margin: 0;
}

/* How to Write a Cover Letter for Journal */

.quick-fact-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.quick-fact {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
}
.quick-fact-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-fact-icon i { color: var(--accent-light); font-size: 0.85rem; }
.quick-fact-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.6px;
}
.quick-fact-value {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.letter-mockup {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.letter-mockup-header {
    background: var(--primary-dark);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.letter-mockup-body {
    padding: 1.5rem 2rem;
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--text);
}
.letter-mockup-body .letter-date {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.letter-mockup-body .letter-to {
    margin-bottom: 1rem;
    font-weight: 500;
}
.letter-highlight-row {
    background: var(--accent-pale);
    border-left: 3px solid var(--accent);
    padding: 0.5rem 0.8rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0.6rem 0;
    font-size: 0.8rem;
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 600;
}
.para-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: box-shadow var(--transition);
}
.para-block:hover { box-shadow: var(--shadow); }
.para-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
}
.para-tag {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
}
.para-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
}
.para-word-count {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}
.para-block-body {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.para-block-body strong {
    color: var(--text);
    font-weight: 600;
}
.cl-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    transition: 0.3s all;
    height: 100%;
}
.cl-item:hover { 
    border-color: var(--accent);
}
.cl-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201,146,42,0.2);
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.cl-check i { color: var(--accent-light); font-size: 0.65rem; }
.cl-item-text {
    font-size: 0.88rem;
    line-height: 1.55;
}
.tone-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    height: 100%;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.tone-card:hover {
    transform: translateY(-5px);
}
.tone-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-pale);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 22px;
}
.tone-card h5 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}
.tone-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.tone-example {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    border-left: 3px solid var(--accent-light);
}

/* How to Respond to Reviewer Comments */

.milestone-stack h5 {
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.move-item {
    border-bottom: 1px solid var(--border);
}
.styled-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.styled-table thead th {
    background: var(--primary);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
}
.styled-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.styled-table tbody tr:hover { background: var(--lighter-bg); }
.styled-table tbody td { padding: 1rem 1.25rem; font-size: .92rem; vertical-align: middle; border: none; }
.badge-type {
    background: var(--accent-pale);
    color: var(--accent);
    border: 1px solid rgba(201,146,42,.25);
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 2rem;
}
 .example-pair { 
    height: 100%;
}
.example-pair-header {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: .75rem;
    position: absolute;
    right: 10px;
    top: -10px;
}
.example-pair-header h6 { margin: 0; font-weight: 700; color: var(--primary-dark); }
.example-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .2rem .6rem;
    border-radius: .25rem;
}
.label-weak { background: #dce1e9; color: var(--text-muted); border: 1px solid var(--border); }
.label-strong { background: var(--accent-pale); color: var(--accent); }
.example-block-two {
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-size: .9rem;
    line-height: 1.7;
    border-left: 4px solid;
    height: 100%;
    position: relative;
}
.example-block-two.weak { background: #dce1e9; border-color: var(--border); color: var(--text-muted); }
.example-block-two.strong { background: var(--accent-pale); border-color: var(--accent); color: var(--accent); }
.example-block-two i { margin-right: .5rem; }
.tip-card-two {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}
.tip-card-two:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tip-card-icon {
    width: 48px; height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.tip-card-two h6 { font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; }
.tip-card-two p { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.tip-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    position: absolute;
    top: .75rem; right: 1.25rem;
}

/* How to Write a Rebuttal Letter */

  .anatomy-doc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.doc-header {
    background: var(--primary-dark);
    padding: 1.5rem;
    color: var(--white);
}
.doc-header h5 { font-size: 1.4rem; margin: 0; color: var(--white); }
.doc-header p { margin: .25rem 0 0; font-size: .82rem; opacity: .7; color: var(--white); opacity: .8; }
.doc-body { padding: 1.5rem 1.5rem 1rem; }
.doc-part {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    background: var(--lighter-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1rem;
}
.doc-part strong { font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); }
.doc-part p { margin: .35rem 0 0; font-size: .9rem; color: var(--text-muted); }
.anatomy-desc p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.anatomy-desc .highlight-box {
    background: var(--accent-pale);
    border: 1px solid rgba(201,146,42,.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.anatomy-desc .highlight-box i { color: var(--accent); margin-right: .5rem; }
.letter-template {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.letter-toolbar {
    background: var(--primary);
    padding: .6rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.toolbar-dot { width: 12px; height: 12px; border-radius: 50%; }
.toolbar-dot.red { background: #ff5f57; }
.toolbar-dot.yellow { background: #febc2e; }
.toolbar-dot.green { background: #28c840; }
.toolbar-label { color: white; font-size: 18px; margin-left: .75rem; }
.letter-body { padding: 1.5rem; font-size: .88rem; line-height: 2; color: var(--text); }
.letter-body .placeholder-field { background: rgba(201,146,42,.12); border-bottom: 2px dashed var(--accent); padding: 0 .25rem; color: var(--accent); font-weight: 600; border-radius: .2rem; }
.letter-body p { margin-bottom: 1rem; }

/* How to Handle Desk Rejection */

 .reasons-list { list-style: none; padding: 0; margin: 0; }
.reasons-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
}
.reasons-list li:last-child { border-bottom: none; }
.reason-icon-two {
    width: 38px; height: 38px;
    background: var(--accent-pale);
    border: 1px solid rgba(201,146,42,.2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.reasons-list strong { display: block; color: var(--primary-dark); margin-bottom: .2rem; }
.reasons-list p { margin: 0; color: var(--text-muted); font-size: .88rem; }
.rejection-alert {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}
.alert-icon-ring {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--accent-pale);
    border: 2px solid var(--accent-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.rejection-alert h3 { font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 1rem; }
.rejection-alert p { color: var(--text-muted); line-height: 1.8; }
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.stat-strip-item {
    text-align: center;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--lighter-bg);
    border: 1px solid var(--border);
}
.stat-strip-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
}
.stat-strip-item span { font-size: .8rem; color: var(--text-muted); }
.match-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}
.match-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.match-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.match-badge {
    background: var(--primary);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 2rem;
}
.match-card h6 { font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; font-size: 1rem; }
.match-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.match-score {
    display: flex; align-items: center; gap: .5rem;
    margin-top: 1rem;
}
.score-bar { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.score-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; }

/* How to Submit to Scopus / SCI Journals */

 .db-card.scopus { background: var(--white); border-top: 4px solid #e8931e; text-align: left; }
.db-card.sci { background: var(--white); border-top: 4px solid var(--primary); }
.db-card-badge {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 2rem;
}
 .db-card.scopus h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: .75rem 0 .5rem;
    color: var(--primary-dark);
 }
.db-card.scopus .db-card-badge { background: rgba(232,147,30,.12); color: #b8721a; }
.db-card .meta-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.db-meta { background: var(--light-bg); border: 1px solid var(--border); font-size: .75rem; font-weight: 600; padding: .25rem .65rem; border-radius: .25rem; color: var(--text-muted); }
.db-card ul { list-style: none; padding: 0; margin: 0; }
.db-card ul li { font-size: .9rem; padding: .45rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .6rem; align-items: flex-start; }
.db-card ul li:last-child { border-bottom: none; }
.db-card ul li i { color: var(--accent); margin-top: .2rem; }

.checklist-col { background: var(--lighter-bg); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.checklist-col h5 { font-weight: 700; color: var(--primary-dark); margin-bottom: 1.25rem; letter-spacing: .04em; }
.checklist-item-three { display: flex; align-items: baseline; gap: .85rem; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.checklist-item-three:last-child { border-bottom: none; }
.check-box-three { width: 22px; height: 22px; border-radius: 4px; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-box-three i { color: var(--accent); font-size: .65rem; }
.checklist-item-three span { color: var(--text); font-size: .88rem; }

.pipeline-track { position: relative; }
.pipeline-track::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--border); max-height: calc(100% - 80px); }
.pipeline-node { position: relative; margin-bottom: 2rem; padding-left: 60px; }
.pipeline-node:last-child { margin-bottom: 0; }
.node-dot { position: absolute; left: -10px; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); border: 3px solid var(--lighter-bg); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .6rem; }
.pipeline-node h6 { font-weight: 700; color: var(--primary-dark); margin-bottom: .35rem; letter-spacing: .04em; }
.pipeline-node p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.65;}
.node-time {font-size: .72rem; color: var(--accent); font-weight: 600; letter-spacing: .06em; margin-bottom: .3rem; }

 .metric-card {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}
.metric-card:hover { transform: translateY(-4px); }
.metric-card.accent-card { background: var(--accent); }
.metric-card i { font-size: 1.6rem; margin-bottom: 1rem; opacity: .85; color: var(--accent); }
.metric-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .25rem; }
.metric-card h6 { font-size: .82rem; letter-spacing: .08em; opacity: .8; margin-bottom: .5rem; }
.metric-card p { font-size: .88rem; opacity: .72; margin: 0; }

.compare-half { padding: 1.5rem; }
.compare-half.oa-side { background: var(--accent-pale); border-right: 3px solid var(--accent); }
.compare-half.trad-side { background: var(--light-bg); border-left: none; }
.compare-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); margin-bottom: 1.25rem; }
.compare-icon.oa { background: var(--accent); }
.compare-icon.trad { background: var(--accent-pale);color: var(--accent); }
.compare-half h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: .75rem; }
.compare-half.oa-side h3 { color: var(--accent); }
.compare-half p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.compare-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 2rem; margin-right: .4rem; margin-bottom: .4rem; }
.tag-oa { background: var(--accent-pale); color: var(--accent); border: 1px solid var(--accent-light); }
.tag-trad { 
    background: rgba(26,60,94,.08); 
    border: 1px solid rgba(26,60,94,.15); 
}
.pc-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pc-table-head { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--primary); color: var(--white); padding: 1rem 1.5rem; font-size: .85rem; font-weight: 700; letter-spacing: .04em; }
.pc-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: .9rem 1.5rem; border-bottom: 1px solid var(--border); align-items: center; transition: background var(--transition); }
.pc-table-row:last-child { border-bottom: none; }
.pc-table-row:hover { background: var(--lighter-bg); }
.pc-table-row .factor { font-size: .9rem; font-weight: 600; color: var(--primary-dark); }
.pc-table-row .factor small { display: block; font-weight: 400; color: var(--text-muted); font-size: .8rem; margin-top: .1rem; }
.cell-oa, .cell-trad { text-align: center; }
.rating-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin: 0 2px; }
.dot-filled-oa { background: var(--oa-green); }
.dot-filled-trad { background: var(--trad-blue); }
.dot-empty { background: var(--border); }

 .model-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 2px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    background: var(--white);
    position: relative;
}
.model-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.model-card-icon { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; background-color: var(--accent-pale); color: var(--accent); }
.model-card h6 { font-weight: 700; font-size: 1rem; color: var(--primary-dark); margin-bottom: .5rem; }
.model-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.model-pill { 
    background: var(--accent-pale); 
    color: var(--accent); 
    font-size: .7rem; 
    font-weight: 700; 
    letter-spacing: .06em; 
    padding: .2rem .6rem; 
    border-radius: 2rem; 
    margin-bottom: .75rem; 
    display: inline-block; 
    position: absolute;
    right: 0;
    top: 0;
    margin: 30px;
}

/* How to Write a Systematic Review Paper */

 .intro-big-card {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.intro-big-card::before {
    content: '"';
    font-size: 18rem;
    color: rgba(255,255,255,.04);
    position: absolute;
    top: -4rem;
    right: 1rem;
    line-height: 1;
    font-weight: 600;
}
.intro-big-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--accent-light); margin-bottom: 1rem; }
.intro-big-card p { font-size: 1rem; line-height: 1.85; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.vs-item { background: var(--white); border-radius: var(--radius); padding: 1.25rem; }
.vs-item h6 { font-size: .85rem; font-weight: 700; color: var(--accent-light); margin-bottom: .5rem; }
.vs-item p { font-size: .85rem; margin: 0; }

 .struct-card-two {
background: var(--white);
border-radius: var(--radius-lg);
padding: 1.75rem;
height: 100%;
border: 1px solid var(--border);
transition: box-shadow var(--transition), transform var(--transition);
}
.struct-card-two:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.struct-num {
font-size: .75rem;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: .5rem;
}
.struct-card-two h6 { font-weight: 700; font-size: 1.05rem; color: var(--primary-dark); margin-bottom: .5rem; }
.struct-card-two p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.struct-card-two ul { list-style: none; padding: 0; margin: .75rem 0 0; }
.struct-card-two ul li { font-size: .85rem; color: var(--text-muted); padding: .3rem 0; display: flex; gap: .5rem; }
.struct-card-two ul li i { color: var(--accent); font-size: .7rem; margin-top: .25rem; }

.tool-pill-card {
    background: var(--accent-pale);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: 0.3s all;
}
.tool-pill-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.tool-pill-card:hover { 
    background: var(--light-bg); 
    border-color: var(--accent-light);
}
.tool-icon-block { width: 48px; height: 48px; border-radius: var(--radius); background: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.tool-pill-card h6 { font-weight: 700; margin-bottom: .35rem; }
.tool-pill-card p { font-size: .88rem; margin: 0; line-height: 1.6; }
.tool-tag { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .5rem; border-radius: .2rem; background: rgba(201,146,42,.2); color: var(--accent-light); margin-bottom: .35rem; display: inline-block; }

/* Parametric & Non-Parametric Tests */

.intro-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.intro-tag {
    background: var(--light-bg);
    border: 1px solid var(--border);
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 0.77rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

 .decision-card {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.decision-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201, 146, 42, 0.12);
}

.decision-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}

.decision-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.decision-item:last-child {
    border-bottom: none;
}

.decision-item .di-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 146, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.decision-item h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 0.88rem;
    margin-bottom: 3px;
}

.decision-item p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}
.test-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.test-card-header {
    padding: 24px 26px 18px;
    position: relative;
}

.test-card-header.param-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.test-card-type {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}

.test-card-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.12rem;
    color: var(--white);
    margin: 0;
}

.test-card-icon {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.test-card-body {
    padding: 22px 26px;
    background: var(--white);
}

.test-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.test-use-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.test-use-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-use-list li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed var(--border);
}

.test-use-list li:last-child {
    border-bottom: none;
}

.test-use-list li i {
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

 .flow-node {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    text-align: center;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}

.flow-node:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201,146,42,0.4);
}

.flow-node.start-node {
    background: var(--accent);
    border-color: var(--accent-light);
}

.flow-node.start-node .fn-title {
    color: var(--primary-dark);
}

.flow-node.start-node .fn-sub {
    color: rgba(15,37,64,0.7);
}

.flow-node.yes-node {
    border-color: rgba(102,187,106,0.45);
    background: rgba(102,187,106,0.08);
}

.flow-node.no-node {
    border-color: rgba(239,154,154,0.45);
    background: rgba(239,154,154,0.08);
}

.fn-step {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: var(--accent);
}

.fn-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.fn-sub {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.flow-arrow i {
    color: rgba(201,146,42,0.6);
    font-size: 1.2rem;
}

.flow-result-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.flow-result {
    flex: 1;
    border-radius: var(--radius);
    padding: 18px 16px;
    text-align: center;
}

.flow-result.param-result {
    background: rgba(201,146,42,0.12);
    border: 1px solid rgba(201,146,42,0.3);
}

.flow-result.nonparam-result {
    background: var(--accent-light);
    border: 1px solid var(--accent-light);
}

.flow-result .fr-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.flow-result .fr-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}



/* Understanding p-value & Effect Size */

.hero-stat-row-four {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-stat-four {
    text-align: left;
}

.hero-stat-four .hs-value {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat-four .hs-label {
    font-family: var(--font-head);
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}
.hero-formula-panel {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(4px);
}

.hfp-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--accent-light);
    margin-bottom: 14px;
}

.formula-pill-new {
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.formula-pill-new .fp-expr {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-light);
    min-width: 80px;
    flex-shrink: 0;
}

.formula-pill-new .fp-desc {
    font-size: 0.82rem;
    line-height: 1.4;
}

 .pval-scale-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pval-scale-header {
    background: var(--primary);
    padding: 20px 26px;
}

.pval-scale-header h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

.pval-scale-body {
    padding: 15px 24px;
}

.pval-band {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--border);
}

.pval-band:last-child {
    border-bottom: none;
}

.pval-badge {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 8px;
    min-width: 95px;
    text-align: center;
    flex-shrink: 0;
}

.pval-badge.strong {
    background: var(--accent-pale);
    color: var(--accent);
}

.pval-badge.moderate {
    background: var(--accent-pale);
    color: var(--accent);
}

.pval-badge.weak {
    background: var(--accent-pale);
    color: var(--accent);
}

.pval-band .pv-meaning {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    flex: 0 0 120px;
}

.pval-band .pv-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.misconception-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 30px 26px;
    height: 100%;
}

.misconception-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 5px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}

.misconception-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.misconception-item:last-child {
    border-bottom: none;
}

.misconception-item .mi-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.misconception-item .mi-icon.wrong {
    background: #fce4ec;
    color: #c62828;
}

.misconception-item .mi-icon.right {
    background: #e8f5e9;
    color: #2e7d32;
}

.misconception-item p {
    font-size: 0.87rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.effect-intro-block {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    height: 100%;
}

.effect-intro-block h4 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.effect-intro-block p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.effect-quote {
    border-left: 3px solid var(--accent-light);
    padding-left: 16px;
    margin-top: 24px;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.cohend-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cohend-header {
    background: var(--accent);
    padding: 16px 22px;
}

.cohend-header h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
}

.cohend-body {
    padding: 6px 0;
}

.cohend-row {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.cohend-row:last-child {
    border-bottom: none;
}

.cohend-value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    min-width: 55px;
    flex-shrink: 0;
}

.cohend-magnitude {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 12px;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.cohend-magnitude.small {
    background: #fff8e1;
    color: var(--accent);
}

.cohend-magnitude.medium {
    background: #e3f2fd;
    color: #1565c0;
}

.cohend-magnitude.large {
    background: #e8f5e9;
    color: #2e7d32;
}

.cohend-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.measures-grid {
    margin-top: 32px;
}

.measure-item {
    background: var(--lighter-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px 20px;
    text-align: center;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.measure-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.measure-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-pale);
    border: 1px solid rgba(201,146,42,0.22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0 auto 14px;
}

.measure-item h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.measure-item .mi-symbol {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
    background: var(--accent-pale);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.measure-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.guide-step-row {
    display: flex;
    gap: 10px;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.guide-step-row:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.guide-step-num {
    width: 52px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 15px 0 0 15px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-step-content h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.guide-step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.guide-step-row .step-badge {
    width: 80px;
    text-align: center;
    margin-left: auto;
    font-family: var(--font-head);
    border-radius: 0 15px 15px 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-pale);
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.guide-tip-panel {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
}

.guide-tip-panel h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 22px;
}

.tip-item-six {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tip-item-six:last-child {
    border-bottom: none;
}

.tip-item-six i {
    color: var(--accent-light);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tip-item-six p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

/* How to Report ANOVA Results (APA Style) */

.anova-formula-panel {
    background: var(--accent-pale);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.anova-formula-panel h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.formula-row {
    background: rgba(255,255,255,1);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}
.formula-row small {
    display: block;
    color: var(--accent-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: .4rem;
}
.formula-row code {
    color: var(--text-muted);
    font-size: .93rem;
    background: none;
}

 .apa-table-wrap {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.apa-table-wrap table { margin-bottom: 0; }
.apa-table-wrap thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 1rem 1.2rem;
    border: none;
}
.apa-table-wrap tbody td {
    padding: .9rem 1.2rem;
    font-size: .9rem;
    color: var(--text);
    border-color: var(--border);
}
.apa-table-wrap tbody tr:hover td { background: var(--accent-pale); }
.sig-badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
}
.sig-badge.yes { background: #d4edda; color: #155724; }
.sig-badge.no  { background: #f8d7da; color: #721c24; }
.apa-note {
    background: var(--accent-pale);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.4rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .88rem;
    color: var(--text);
    margin-top: 1.5rem;
}
.apa-note strong { color: var(--accent); }
 .tip-card-seven {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.tip-card-seven::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.tip-card-seven:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tip-card-seven:hover::after { transform: scaleX(1); }
.tip-icon-seven {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.tip-card-seven h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: .6rem;
}
.tip-card-seven p { color: var(--text-muted); font-size: .88rem; line-height: 1.7; margin: 0; }
.do-dont-wrap { display: flex; gap: .5rem; margin-top: .8rem; flex-wrap: wrap; }
.do-tag, .dont-tag {
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .7rem;
    border-radius: 50px;
}
.do-tag { background: #d4edda; color: #155724; }
.dont-tag { background: #f8d7da; color: #721c24; }

/* How to Report Regression Results */

.reg-tag-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.reg-tag {
    background: var(--primary);
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 50px;
}
 .reg-equation-box {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.r2-metric {
    margin-bottom: 1.4rem;
}
.r2-metric-label {
    font-size: .78rem;
    color: rgba(255,255,255,.60);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .3rem;
}
.r2-metric-value {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent-light);
}
.r2-metric-sub { font-size: .78rem; color: var(--text-muted); }
.r2-progress {
    background: var(--border);
    border-radius: 50px;
    height: 6px;
    margin-top: .4rem;
    overflow: hidden;
}
.r2-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    border-radius: 50px;
}
.assumption-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.assumption-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.assumption-number {
    position: absolute;
    top: 15px; 
    right: 1.5rem;
    color: var(--accent);
    opacity: .6;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 50px;
    padding: .2rem .7rem;
    border-radius: 50px;
}
.assumption-icon {
    width: 50px; 
    height: 50px;
    background-color: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}
/* .assumption-icon:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    position: absolute;
    z-index: -1;
    transform: skew(-10deg);
} */
.assumption-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .98rem;
    color: var(--primary-dark);
    margin-bottom: .5rem;
}
.assumption-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin: 0; }
.how-to-check {
    background: var(--light-bg);
    padding: .7rem .9rem;
    margin-top: .8rem;
    font-size: .8rem;
    color: var(--primary);
    border-left: 3px solid var(--accent-light);
}
.writing-block {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    margin-bottom: 1.2rem;
}
.writing-block-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1rem;
}
.writing-block-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    flex-shrink: 0;
}
.writing-block-head h6 {
    font-family: var(--font-head);
    color: var(--accent-light);
    font-weight: 700;
    font-size: .92rem;
    margin: 0;
}
.writing-block p {
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}
.writing-block .sample-text {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .9rem 1.1rem;
    font-size: .88rem;
    line-height: 1.6;
    margin-top: .8rem;
}
.writing-block .sample-text em { color: var(--accent-light); font-style: normal; font-weight: 600; }
.checklist-panel-two {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    height: 100%;
}
.checklist-panel-two h5 {
    font-family: var(--font-head);
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.checklist-item-two {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .8rem 0;
    border-bottom: 1px solid var(--border);
}
.checklist-item-two:last-child { border-bottom: none; }
.checklist-item-two i { color: var(--accent); margin-top: .1rem; flex-shrink: 0; }
.checklist-item-two span {  font-size: .88rem; line-height: 1.5; }


/* How to Create a Correlation Matrix */

.intro-features { list-style: none; padding: 0; margin: 0; }
.intro-features li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .7rem 0;
    border-bottom: 1px dashed var(--border);
}
.intro-features li:last-child { border-bottom: none; }
.intro-features i { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }
.intro-features span { font-size: .92rem; color: var(--text); line-height: 1.5; }

.tab-sidebar-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid var(--border);
}
.tab-sidebar-card h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.interp-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
}
.interp-row:last-child { border-bottom: none; }
.interp-range {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    color: var(--primary);
    min-width: 90px;
}
.interp-label { 
    font-size: .82rem; 
    color: var(--text-muted); 
    margin-left: auto;
}
.interp-dot {
    width: 10px; 
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--accent-light);
}

 .software-tabs .nav-link {
    background: var(--light-bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    padding: .7rem 1.5rem;
    margin-right: .5rem;
    transition: all var(--transition);
}
.software-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.software-tabs .nav-link:hover:not(.active) { border-color: var(--accent) !important; color: var(--accent); }
.tab-content { margin-top: 2rem; }
.step-block-three {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--lighter-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: .8rem;
}
.step-num-three {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-block-three h6 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--primary-dark);
    margin-bottom: .3rem;
}
.step-block-three p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin: 0; }
.code-snippet {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: .9rem 1.2rem;
    margin-top: .5rem;
    font-size: .82rem;
    color: var(--accent-light);
    letter-spacing: .3px;
}
.interp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-top: 5px solid var(--accent-light);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.interp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.interp-card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
}
.interp-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: .6rem;
}
.interp-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin: 0; }
.interp-card .example-value {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .3rem;
    color: var(--accent);
    line-height: 1;
}
.interp-card .example-label-two {
    font-size: .75rem;
    letter-spacing: 1px;
    margin-bottom: .8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* How to Use SPSS for T-test */

 .output-table-card {
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.output-table-card .table-header {
    background: var(--accent-pale);
    padding: .9rem 1.2rem;
}
.output-table-card .table-header h6 {
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    margin: 0;
}
.output-table-card table thead th {
    background: var(--accent-pale);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 600;
    padding: .75rem 1rem;
    border-color: rgba(255,255,255,.1);
}
.output-table-card table tbody td {
    font-size: .85rem;
    padding: .7rem 1rem;
    border-color: rgba(255,255,255,.08);
}
.output-table-card table tbody tr:hover td { background: rgba(255,255,255,.05); }
.key-value-highlight { color: var(--accent-light) !important; font-weight: 700; }
.output-annotation {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-top: .8rem;
}
.output-annotation p { color: rgba(255,255,255,.75); font-size: .83rem; line-height: 1.6; margin: 0; }
.output-annotation strong { color: var(--accent-light); }

.ttest-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.ttest-type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ttest-type-header {
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--accent-pale);
}
.ttest-type-icon {
    width: 46px; height: 46px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    background: var(--accent-light);
}
.ttest-type-header h5 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--accent); margin: 0; }
.ttest-type-body { padding: 1.4rem 1.5rem; }
.ttest-type-body p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin-bottom: 1rem; }
.ttest-when {
    background: var(--light-bg);
    padding: .8rem 1rem;
    font-size: .82rem;
    border-right: 3px solid var(--accent-light);
}
.ttest-when strong { display: block; color: var(--accent); font-weight: 700; margin-bottom: .3rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; }
.ttest-formula {
    background: var(--accent-pale);
    border-radius: var(--radius);
    padding: .7rem 1rem;
    margin-top: .8rem;
    font-size: .82rem;
    color: var(--accent);
    text-align: center;
}
 .spss-nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    padding: .7rem 1.2rem;
    border-radius: var(--radius);
    margin-bottom: .5rem;
    transition: all var(--transition);
    text-align: left;
}
.spss-nav-pills .nav-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.spss-nav-pills .nav-link:hover:not(.active) { border-color: var(--accent); color: var(--accent); }
.spss-nav-pills .nav-link i { margin-right: .5rem; }
.spss-step-panel {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
}
.spss-step-panel h4 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}
.spss-step-panel h4 i { color: var(--accent); }
.spss-numbered-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}
.spss-step-badge {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.spss-numbered-step h6 { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--primary); margin-bottom: .3rem; }
.spss-numbered-step p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin: 0; }
.spss-menu-path {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    color: var(--accent-light);
    font-size: .8rem;
    padding: .4rem .8rem;
    border-radius: var(--radius);
    margin-top: .4rem;
}
.spss-menu-path i { font-size: .7rem; color: rgba(255,255,255,.4); }

/* How to Use NVivo for Thematic Analysis */

 .nvivo-stat-panel {
    background: var(--light-bg);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
}
.nvivo-stat-panel h5 {
    font-family: var(--font-head);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--accent-light);
}
.stat-item-ten { text-align: center; padding: 1rem .5rem; border: 1px solid var(--border); border-radius: 5px; border-left: 3px solid var(--accent-light); }
.stat-item-ten .stat-num-ten {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1;
    display: block;
}
.stat-item-ten .stat-label { font-size: .78rem; margin-top: .3rem; display: block; }

 .nvivo-feature-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}
.nvivo-feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.nvivo-feature-card .icon-wrap {
    width: 52px; height: 52px;
    background: var(--primary-dark);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--accent-light);
    font-size: 1.3rem;
}
.nvivo-feature-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: .5rem;
}
.nvivo-feature-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
 .tip-card-ten {
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: 0.3s all;
}
.tip-card-ten:hover { 
    transform: translateY(-5px);
}
.tip-num-ten {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    min-width: 2rem;
}
.tip-card-ten h6 {
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: .3rem;
    font-size: .95rem;
}
.tip-card-ten p { font-size: .83rem; margin: 0; line-height: 1.6; }


/* How to Prepare for Viva Voce */

.viva-counter-wrap { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.8rem; }
.viva-counter { text-align: center; }
.viva-counter .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: var(--primary-dark); display: block; line-height: 1; }
.viva-counter .lbl { font-size: .78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.countdown-box { background: var(--accent-pale); border-radius: var(--radius-lg); padding: 2.2rem 2rem; color: var(--white); }
.countdown-box h5 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 1.4rem; }
.prep-check { list-style: none; padding: 0; margin: 0; }
.prep-check li { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; line-height: 1.5; }
.prep-check li i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.prep-check li +li { border-top: 1px dashed var(--accent-light); padding-top: 10px; margin-top: 10px; }

.cat-card { border: 2px solid var(--border); border-radius: 10px; overflow: hidden; height: 100%; transition: border-color var(--transition), box-shadow var(--transition); }
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.cat-head { background: var(--accent-pale); padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: .8rem;  }
.cat-head i { color: var(--accent-light); font-size: 1.2rem; }
.cat-head h5 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--accent); margin: 0; }
.q-item { font-size: .83rem; color: var(--text-muted); padding: .5rem 1rem; border-bottom: 1px solid var(--border); display: flex; gap: .6rem; align-items: flex-start; line-height: 1.5; }
.q-item:last-child { border-bottom: none; }
.q-num { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: .8rem; flex-shrink: 0; min-width: 1.5rem; }

.strategy-card  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  2rem 1.8rem;
     box-shadow:  var(--shadow);
     position:  relative;
     height:  100%;
     transition: 0.5s all;
     border: 2px solid transparent;
}
.strategy-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-light);
}
.strategy-card:hover .s-badge {
    border-radius:  0 5px 0 5px;
}

.strategy-card .s-icon  {
     width:  46px;
     height:  46px;
     background:  var(--accent-pale);
     border-radius:  5px;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     color:  var(--accent);
     font-size:  1rem;
     margin-bottom:  1.2rem;
     transition: 0.5s all;
 }

.strategy-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  1rem;
     color:  var(--primary-dark);
     margin-bottom:  .5rem;
 }

.strategy-card p  {
     font-size:  .87rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }

.strategy-card .s-badge  {
     position:  absolute;
     top:  25px;
     right:  25px;
     background:  var(--accent);
     color:  var(--white);
     font-size:  .7rem;
     font-weight:  700;
     padding:  .2rem .6rem;
     border-radius:  5px 0 5px 0;
     font-family:  var(--font-head);
     transition: 0.5s all;
 }

.left-bor-card {
    background:var(--accent-pale); 
    border-left: 4px solid var(--accent);
}
.left-bor-card p {
    font-size:.87rem; 
    color:var(--text); 
    margin:0; 
    line-height:1.65
}

.q-table { width: 100%; border-collapse: collapse; }
.q-table thead th { background: var(--primary-dark); color: var(--white); font-family: var(--font-head); font-size: .82rem; font-weight: 700; padding: .9rem 1.2rem; text-align: left; }
.q-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.q-table tbody tr:hover { background: var(--accent-pale); }
.q-table tbody td { padding: .8rem 1.2rem; font-size: .85rem; color: var(--text-muted); vertical-align: middle; }
.q-table tbody td:first-child { font-family: var(--font-head); font-weight: 700; color: var(--accent); width: 50px; }
.q-table tbody td .category-tag { background: var(--light-bg); color: var(--primary); font-size: .72rem; font-weight: 600; padding: .18rem .55rem; border-radius: 50px; display: inline-block; }

/* How to Make a Defense PPT */
.ppt-tag-list  {
    display:  flex;
    flex-wrap:  wrap;
    gap:  .5rem;
    margin-top:  1.5rem;
}

.ppt-tag  {
    background:  var(--accent-pale);
    border:  1px solid var(--accent-pale);
    color:  var(--accent);
    padding:  .3rem .8rem;
    border-radius:  50px;
    font-size:  .78rem;
}

.slide-mockup { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.slide-top { background: var(--accent-pale); padding: 1.5rem 1.8rem 1rem; }
.slide-top h6 { font-family: var(--font-head); color: var(--accent); font-size: 1rem; font-weight: 800; margin: 0; }
.slide-top small { font-size: .75rem; }
.slide-bottom { padding: 1.2rem 1.8rem 1.5rem; }
.slide-point { display: flex; gap: .6rem; align-items: center; font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; line-height: 1.45; }

.slide-card  {
    background:  var(--white);
    border:  1px solid var(--border);
    border-radius:  var(--radius-lg);
    padding:  0;
    overflow:  hidden;
    height:  100%;
    transition:  box-shadow var(--transition);
 }

.slide-card:hover  {
    box-shadow:  var(--shadow-lg);
 }

.slide-card-head  {
    background:  linear-gradient(135deg,  var(--primary),  var(--primary-light));
    padding:  .9rem 1.2rem;
    display:  flex;
    align-items:  center;
    justify-content:  space-between;
 }

.slide-card-head .slide-label  {
    font-family:  var(--font-head);
    font-size:  .75rem;
    font-weight:  700;
    color:  rgba(255, 255, 255, .7);
    letter-spacing:  .5px;
 }

.slide-card-head .slide-num  {
    font-family:  var(--font-head);
    font-size:  1.5rem;
    font-weight:  900;
    color:  var(--accent-light);
    line-height:  1;
 }

.slide-card-body  {
    padding:  1.3rem 1.2rem;
 }

.slide-card-body h5  {
    font-family:  var(--font-head);
    font-size:  .95rem;
    font-weight:  700;
    color:  var(--primary-dark);
    margin-bottom:  .5rem;
 }

.slide-card-body p  {
    font-size:  .83rem;
    color:  var(--text-muted);
    line-height:  1.6;
    margin:  0;
 }

.slide-card-body .slide-items  {
    margin-top:  .7rem;
    padding-left: 0;
    margin-bottom: 0;
 }

.slide-items li  {
    font-size:  .8rem;
    color:  var(--text-muted);
    margin-bottom:  .25rem;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.design-tip-row  {
     display:  flex;
     align-items:  flex-start;
     gap:  1.2rem;
     background:  var(--white);
     border-radius:  var(--radius);
     border: 1px solid var(--border);
     padding:  1.4rem 1.5rem;
     box-shadow:  var(--shadow);
     margin-bottom:  1rem;
     transition:  transform var(--transition);
 }

.design-tip-row:hover  {
     transform:  translateX(4px);
 }

.dtip-icon  {
     width:  44px;
     height:  44px;
     background:  var(--primary-dark);
     border-radius:  var(--radius);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     color:  var(--accent-light);
     font-size:  1.1rem;
     flex-shrink:  0;
 }

.design-tip-row h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .93rem;
     color:  var(--primary-dark);
     margin-bottom:  .25rem;
}

.design-tip-row p  {
    font-size:  .83rem;
    color:  var(--text-muted);
    margin:  0;
    line-height:  1.55;
}

/* How to Handle Difficult Viva Questions */

.scenario-card  {
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     box-shadow:  var(--shadow);
     height:  100%;
 }

.sc-head  {
     background:  var(--primary-light);
     padding:  1.5rem;
 }

.sc-head .sc-type  {
     font-size:  .72rem;
     font-weight:  700;
     color:  rgba(255, 255, 255, .6);
     text-transform:  uppercase;
     letter-spacing:  .7px;
     margin-bottom:  .4rem;
 }

.sc-head h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     color:  var(--white);
     margin:  0;
 }

.sc-body  {
     background:  var(--white);
     padding:  1.5rem;
 }

.sc-question  {
     background:  var(--accent-pale);
     border-left:  3px solid var(--accent);
     padding:  .8rem 1rem;
     border-radius:  0 var(--radius) var(--radius) 0;
     margin-bottom:  1rem;
     font-size:  .85rem;
     color:  var(--text);
     font-style:  italic;
     line-height:  1.6;
 }

.sc-answer-label  {
     font-size:  .72rem;
     font-weight:  700;
     color:  var(--primary);
     text-transform:  uppercase;
     letter-spacing:  .5px;
     margin-bottom:  .5rem;
 }

.sc-body p  {
     font-size:  .84rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
 }
 .fw-card  {
     background:  var(--accent-pale);
     border:  1px solid var(--accent-pale);
     border-radius:  var(--radius-lg);
     padding:  1.8rem 1.6rem;
     height:  100%;
 }

.fw-letter  {
     font-family:  var(--font-head);
     font-size:  3rem;
     font-weight:  900;
     color:  var(--accent);
     line-height:  1;
     margin-bottom:  .5rem;
 }

.fw-card h5  {
     font-family:  var(--font-head);
     font-size:  1rem;
     font-weight:  700;
     margin-bottom:  .5rem;
 }

.fw-card p  {
     font-size:  .85rem;
     line-height:  1.65;
     margin:  0;
 }

.body-item  {
     background:  var(--white);
     border-radius:  var(--radius);
     padding:  1.4rem 1.5rem;
     box-shadow:  var(--shadow);
     height:  100%;
 }

.body-item .b-icon  {
     font-size:  1.6rem;
     margin-bottom:  .8rem;
     color:  var(--primary);
 }

.body-item h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .93rem;
     color:  var(--primary-dark);
     margin-bottom:  .4rem;
 }

.body-item p  {
     font-size:  .83rem;
     color:  var(--text-muted);
     line-height:  1.6;
     margin:  0;
 }

 .panic-box  {
     background:  var(--accent-pale);
     border-radius:  var(--radius-lg);
     padding:  24px;
     position:  relative;
     overflow:  hidden;
 }

.panic-box::before  {
     content:  '';
     position:  absolute;
     top:  -60px;
     right:  -60px;
     width:  250px;
     height:  250px;
     background:  rgba(201, 146, 42, .08);
     border-radius:  50%;
 }

.panic-box h3  {
     font-family:  var(--font-head);
     font-size:  1.6rem;
     font-weight:  800;
     margin-bottom:  .8rem;
 }

.panic-box p  {
     font-size:  .95rem;
     line-height:  1.7;
     margin-bottom:  1.5rem;
 }

.panic-steps  {
     display:  flex;
     flex-direction:  column;
     gap:  .8rem;
 }

.panic-step  {
     display:  flex;
     gap:  1rem;
     align-items:  flex-start;
 }

.panic-step .ps-num  {
     width:  28px;
     height:  28px;
     background:  var(--accent);
     border-radius:  50%;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     font-family:  var(--font-head);
     font-weight:  800;
     font-size:  .75rem;
     color:  var(--white);
     flex-shrink:  0;
 }

.panic-step p  {
     font-size:  .87rem;
     margin:  0;
     line-height:  1.55;
     padding-top:  .2rem;
 }

/* Career Options After PhD */

.career-path-card  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  2rem 1.8rem;
     height:  100%;
     border: 1px solid var(--border);
     border-top:  4px solid var(--primary);
     transition:  box-shadow var(--transition);
 }

.career-path-card:hover  {
     box-shadow:  var(--shadow-lg);
 }

.career-path-card.industry-card  {
     border-top-color:  var(--accent);
 }

.cp-icon  {
     width:  50px;
     height:  50px;
     border-radius:  var(--radius);
     display:  flex;
     align-items:  center;
     justify-content:  center;
     font-size:  1.2rem;
     margin-bottom:  1rem;
 }

.academia-card .cp-icon  {
     background:  var(--primary-dark);
     color:  var(--accent-light);
 }

.industry-card .cp-icon  {
     background:  var(--accent);
     color:  var(--white);
 }

.career-path-card h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .97rem;
     color:  var(--primary-dark);
     margin-bottom:  .4rem;
 }

.career-path-card .salary-badge  {
     font-size:  .75rem;
     font-weight:  700;
     padding:  .2rem .6rem;
     border-radius:  50px;
     display:  inline-block;
     margin-bottom:  .6rem;
 }

.academia-card .salary-badge  {
     background:  rgba(26, 60, 94, .1);
     color:  var(--primary);
 }

.industry-card .salary-badge  {
     background:  var(--accent-pale);
     color:  var(--accent);
 }

.career-path-card p  {
     font-size:  .84rem;
     color:  var(--text-muted);
     line-height:  1.6;
     margin:  0;
 }

.skill-bar-main {
    background: var(--accent-pale);
    border: 1px solid var(--accent-pale);
    padding: 24px;
    border-top: 4px solid var(--accent);
    border-radius: 10px;
}
.skill-bar-row  {
     margin-bottom:  1.2rem;
 }

.skill-bar-label  {
     display:  flex;
     justify-content:  space-between;
     margin-bottom:  .35rem;
 }

.skill-bar-label span  {
     font-size:  .83rem;
 }

.skill-bar-label strong  {
     font-family:  var(--font-head);
     font-size:  .8rem;
     color:  var(--accent-light);
 }

.skill-bar-track  {
     background:  rgba(255, 255, 255, .1);
     border-radius:  50px;
     height:  8px;
     overflow:  hidden;
 }

.skill-bar-fill  {
     height:  100%;
     border-radius:  50px;
     background:  linear-gradient(90deg,  var(--accent),  var(--accent-light));
 }


/* How to Convert Thesis into Journal Papers */

.quote-text { 
    font-size: 1.2rem; 
    color: var(--primary-dark); 
    line-height: 1.5; 
    border-left: 4px solid var(--accent); 
    padding-left: 1.2rem; 
    margin-bottom: 1.5rem; 
    font-family: var(--font-head); 
    font-weight: 600; 
}
.thesis-paper-visual  {
     background:  var(--light-bg);
     border-radius:  var(--radius-lg);
     padding:  2rem;
 }

.thesis-box  {
     background:  var(--primary-dark);
     color:  var(--white);
     border-radius:  var(--radius);
     padding:  1.2rem 1.5rem;
     margin-bottom:  1rem;
 }

.thesis-box h6  {
     font-family:  var(--font-head);
     font-size:  .85rem;
     font-weight:  700;
     color:  var(--accent-light);
     margin-bottom:  .3rem;
 }

.thesis-box p  {
     font-size:  .78rem;
     color:  rgba(255, 255, 255, .65);
     margin:  0;
     line-height:  1.5;
 }

.arrow-down  {
     text-align:  center;
     font-size:  1.4rem;
     color:  var(--accent);
     margin:  .5rem 0;
 }

.paper-boxes  {
     display:  flex;
     gap:  .7rem;
 }

.paper-box  {
     flex:  1;
     background:  var(--white);
     border:  2px solid var(--border);
     border-radius:  var(--radius);
     padding:  .8rem;
     text-align:  center;
 }

.paper-box small  {
     font-size:  .72rem;
     color:  var(--text-muted);
     display:  block;
     margin-bottom:  .2rem;
 }

.paper-box strong  {
     font-family:  var(--font-head);
     font-size:  .8rem;
     color:  var(--primary);
 }
 .process-card-two  {
     background:  var(--white);
     border-radius:  var(--radius-lg);
     padding:  1.4rem;
     box-shadow:  var(--shadow);
     position:  relative;
     height:  100%;
     transition: 0.5s all;
 }
 .process-card-two:hover {
    transform: translateY(-5px);
 }

.process-step-badge  {
     position:  absolute;
     top:  10px;
     right: 10px;
     background:  var(--accent);
     color:  var(--white);
     font-family:  var(--font-head);
     font-size:  .75rem;
     font-weight:  800;
     padding:  .25rem .75rem;
     border-radius:  50px;
     white-space:  nowrap;
 }

.process-card-two .proc-icon-two  {
     font-size:  1.8rem;
     color:  var(--primary);
     margin:  .5rem 0 1rem;
     text-align:  center;
 }

.process-card-two h5  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  1rem;
     color:  var(--primary-dark);
     margin-bottom:  .5rem;
     text-align:  center;
 }

.process-card-two p  {
     font-size:  .84rem;
     color:  var(--text-muted);
     line-height:  1.65;
     margin:  0;
     text-align:  center;
 }

.j-type-card  {
     border-radius:  var(--radius-lg);
     overflow:  hidden;
     border:  1px solid var(--border);
     height:  100%;
     transition:  box-shadow var(--transition);
 }

.j-type-card:hover  {
     box-shadow:  var(--shadow-lg);
 }

.j-head  {
     padding:  1rem;
     background: var(--accent-pale);
 }

.j-head h5  {
     font-family:  var(--font-head);
     font-size:  .95rem;
     font-weight:  700;
     color:  var(--accent);
     margin:  0;
 }

.j-head .j-badge  {
     font-size:  .7rem;
     color:  var(--text-muted);
     margin-top:  .2rem;
     display:  block;
 }

.j-body  {
     padding:  1rem;
     background:  var(--white);
 }

.j-body p  {
     font-size:  .84rem;
     color:  var(--text-muted);
     line-height:  1.6;
     margin-bottom:  .8rem;
 }

.j-spec  {
     display:  flex;
     justify-content:  space-between;
     font-size:  .78rem;
     border-top:  1px solid var(--border);
     padding-top:  .8rem;
     margin-top:  .8rem;
 }

.j-spec span:first-child  {
     color:  var(--text-muted);
 }

.j-spec span:last-child  {
     font-weight:  700;
     color:  var(--primary);
}

 .writing-col  {
     display:  flex;
     flex-direction:  column;
     gap:  1rem;
 }

.write-tip  {
     background:  var(--accent-pale);
     border:  1px solid var(--accent-pale);
     border-radius:  var(--radius);
     padding:  1.2rem 1.4rem;
     display:  flex;
     gap:  1rem;
     align-items:  flex-start;
 }

.write-tip .tip-icon  {
     color:  var(--accent);
     font-size:  1.1rem;
     margin-top:  2px;
     flex-shrink:  0;
 }

.write-tip h6  {
     font-family:  var(--font-head);
     font-weight:  700;
     font-size:  .9rem;
     margin-bottom:  .25rem;
 }

.write-tip p  {
     font-size:  .82rem;
     margin:  0;
     line-height:  1.55;
 }



@media (max-width: 575px) {
    .pval-band,.cohend-row,.guide-step-row {
        flex-wrap: wrap;
    }
}



/* ── Page Section ── */
.quote-section {
    background: var(--light-bg);
    padding: 70px 0 80px;
}

/* ── Left Info Panel ── */
.quote-info-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.quote-info-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 4px 0 0 4px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent-pale);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.info-title {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 14px;
}
.info-title span { color: var(--accent); }
.info-desc {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── Feature List ── */
.quote-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.quote-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: .92rem;
    color: var(--text);
    line-height: 1.55;
}
.quote-feature-list li .feat-icon {
    width: 28px; height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--accent-pale);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    margin-top: 1px;
}

/* ── Info Cards ── */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: 0.3s all;
}
.info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}
.info-card-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.info-card-text h6 {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.info-card-text p {
    font-family: var(--font-body);
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
}
.info-card-text a {
    color: var(--text-muted);
    transition: 0.3s all;
}
.info-card-text a:hover {
    color: var(--accent);
    transition: 0.3s all;
}

/* ── Trust Badges ── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-badge i { color: var(--accent); font-size: .85rem; }

/* ── Form Panel ── */
.quote-form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    height: 100%;
}
.form-panel-head {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.form-panel-head h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.form-panel-head p {
    font-family: var(--font-body);
    font-size: .87rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Form Inputs ── */
.form-group { margin-bottom: 18px; }
.form-label {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .4px;
    margin-bottom: 7px;
    display: block;
}
.form-label .req { color: var(----danger); margin-left: 2px; }
.form-control, .form-select {
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text);
    background: var(--lighter-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    width: 100%;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(42, 90, 140, .10);
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Input with icon ── */
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control,
.input-icon-wrap .form-select { padding-left: 40px; }
.input-icon-wrap .field-icon {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .85rem;
    pointer-events: none;
}

/* ── File Upload ── */
.file-upload-box {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--lighter-bg);
    padding: 22px 18px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.file-upload-box:hover {
    border-color: var(--primary-light);
    background: rgba(42, 90, 140, .04);
}
.file-upload-box input[type="file"] { display: none; }
.file-upload-box .upload-icon {
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.file-upload-box p {
    font-family: var(--font-body);
    font-size: .83rem;
    color: var(--text-muted);
    margin: 0;
}
.file-upload-box span {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: underline;
}

/* ── Privacy Notice ── */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--lighter-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 20px;
}
.form-privacy i { color: var(--primary); font-size: 1rem; margin-top: 2px; }
.form-privacy p {
    font-family: var(--font-body);
    font-size: .79rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}
.form-privacy a { color: var(--primary-light); text-decoration: underline; }

/* ── Submit Button ── */
.btn-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .93rem;
    font-weight: 700;
    letter-spacing: .5px;
    border: none;
    border-radius: var(--radius);
    padding: 14px 28px;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-quote-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.btn-quote-submit:hover::before { opacity: 1; }
.btn-quote-submit:hover { box-shadow: 0 6px 28px rgba(15, 37, 64, .22); transform: translateY(-1px); }
.btn-quote-submit span, .btn-quote-submit i { position: relative; z-index: 1; }

/* ── Main Content ── */
.legal-content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem 2rem 0;
    border: 1px solid var(--border);
}
.legal-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .85rem 1.2rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.legal-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--text-muted);
}
.legal-meta-item i { color: var(--accent); }
.legal-meta-item strong { color: var(--text); font-weight: 600; }

.legal-section { margin-bottom: 2.5rem; }
.legal-section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: .9rem;
    padding-left: .9rem;
    border-left: 3px solid var(--accent);
    line-height: 1.4;
}
.legal-section p {
    color: var(--text);
    font-size: .93rem;
    margin-bottom: .8rem;
}
.legal-section ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: .8rem;
}
.legal-section ul li {
    font-size: .93rem;
    color: var(--text);
    padding: .35rem 0 .35rem 1.4rem;
    position: relative;
}
.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.legal-highlight-box {
    background: var(--accent-pale);
    border: 1px solid rgba(201,146,42,.25);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    margin: 1rem 0;
}
.legal-highlight-box p { margin: 0; font-size: .9rem; }
.legal-highlight-box i { color: var(--accent); margin-right: .4rem; }

.legal-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
    opacity: 1;
}

/* ── Page Header inside card ── */
.legal-page-header { margin-bottom: 2rem; }
.legal-page-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.legal-page-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--primary-dark);
    margin-bottom: .5rem;
    letter-spacing: -.4px;
}
.legal-page-intro { color: var(--text-muted); font-size: .95rem; max-width: 640px; }

/* ── Related pages ── */
.related-pages-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.related-pages-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}
.related-page-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .5rem;
    border-radius: 7px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .855rem;
    transition: all var(--transition);
}
.related-page-link i { color: var(--accent); font-size: .75rem; width: 16px; }
.related-page-link:hover { background: var(--light-bg); color: var(--primary); }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .88rem; }
.data-table th { background: var(--primary); color: var(--white); padding: .7rem 1rem; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: .82rem; }
.data-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--light-bg); }

 /* Refund timeline */
.refund-timeline { position: relative; padding-left: 2rem; margin: 1.2rem 0; }
.refund-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); max-height: calc(100% - 40px); }
.refund-timeline-item { position: relative; margin-bottom: 1.4rem; }
.refund-timeline-item::before { content: ''; position: absolute; left: -1.6rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.refund-timeline-item strong { font-family: var(--font-head); font-size: .9rem; color: var(--primary); display: block; margin-bottom: .2rem; }
.refund-timeline-item p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* Warning box */
.warning-box{background:#fff8f0;border:1px solid rgba(201,146,42,.4);border-left:4px solid var(--accent);border-radius:var(--radius);padding:1.2rem 1.4rem;margin:1.2rem 0;}
.warning-box p{margin:0;font-size:.9rem;color:var(--text);}
.warning-box i{color:var(--accent);margin-right:.5rem;}

/* Cookie type cards */
.cookie-type-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1.2rem 0;}
.cookie-type-card{border:1px solid var(--border);border-radius:var(--radius);padding:1.2rem; position: relative;}
.cookie-type-card-head{display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem;}
.cookie-type-icon{width:34px;height:34px;background:var(--accent-pale);border-radius:7px;display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:.9rem;flex-shrink:0;}
.cookie-type-card h6{font-family:var(--font-head);font-weight:700;font-size:.88rem;color:var(--primary);margin:0;}
.cookie-type-card p{font-size:.85rem;color:var(--text-muted);margin:0;}
.cookie-badge{
    display:inline-block;
    font-size:.72rem;
    font-weight:600;
    padding:.2rem .55rem;
    border-radius:20px;
    margin-bottom:.4rem; 
    background: var(--accent-pale); 
    color: var(--accent);     
    position: absolute;
    right: 0;
    top: 0;
    margin: 15px;}
@media(max-width:576px){.cookie-type-grid{grid-template-columns:1fr;}}

/* Rights grid */
.rights-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1.2rem 0;}
.rights-card{border:1px solid var(--border);border-radius:var(--radius);padding:1.1rem;display:flex;gap:.8rem;align-items:flex-start;}
.rights-icon{width:36px;height:36px;background:var(--accent-pale);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:.9rem;flex-shrink:0;margin-top:.1rem;}
.rights-card h6{font-family:var(--font-head);font-weight:700;font-size:.85rem;color:var(--primary);margin-bottom:.25rem;}
.rights-card p{font-size:.82rem;color:var(--text-muted);margin:0;}
@media(max-width:576px){.rights-grid{grid-template-columns:1fr;}}



/* ── Success Box ── */
.legal-success-box { background: var(--accent-pale); border-left: 4px solid var(--accent-light); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin-top: 16px; }
.legal-success-box p { margin: 0; font-size: .93rem; color: var(--text); }
.legal-success-box i { color: var(--accent); margin-right: 6px; }

/* ── Security Badges Grid ── */
.legal-badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 20px; }
.legal-badge-item { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.legal-badge-item i { font-size: 1.8rem; color: var(--primary); display: block; margin-bottom: 10px; }
.legal-badge-item-title { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.legal-badge-item-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Warning Box ── */
.legal-warning-box { background: rgba(220,53,69,.07); border-left: 4px solid #dc3545; border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin-top: 16px; }
.legal-warning-box p { margin: 0; font-size: .93rem; color: var(--text); }
.legal-warning-box i { color: #dc3545; margin-right: 6px; }


/* ── Responsive ── */
@media (max-width: 768px) {
    .legal-content-card { padding: 28px 20px; }
    .legal-meta { flex-direction: column; gap: 10px; }
}


/* ── Responsive ── */
@media (max-width: 991px) {
    .quote-info-panel, .quote-form-panel { padding: 30px 22px; }
    .info-title { font-size: 1.35rem; }
    .breadcrumb-title { font-size: 1.5rem; }
}



/* Inline style removed */

.footer-link.scedule-link {
    background:rgba(201,146,42,.12);
    border:1px solid rgba(201,146,42,.25);
    border-radius:6px;
    padding:6px 12px;
}
.footer-link.scedule-link i{
    color:var(--accent)
}
.w-92 {
    width: 92px;
}
.w-80 {
    width: 80%;
}
.w-88 {
    width: 88%;
}
.w-82 {
    width: 82%;
}
.w-67 {
    width: 67%;
}
.w-54 {
    width: 54%;
}
.w-71 {
    width: 71%;
}
.small-cir {
    background:var(--lighter-bg);
    border-radius:var(--radius);
    padding:12px;
    font-size:12px;
    color:var(--text-muted);
    margin-top:8px
}
.cust-label {
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:6px;
    display:block;
}
.font-small {
    font-size:.92rem;
}

/* ── PROCESS ICON CARDS ── */
.process-icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.process-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201, 146, 42, .08);
  font-family: var(--font-head);
}

.process-icon-wrap {
  width: 75px;
  height: 75px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-icon-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.card-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform .3s ease;
}

/* ── DISCUSSION STATS ── */
.discussion-stats {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.discussion-stats h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.discussion-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.discussion-stats-item {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 20px;
}

.discussion-stats-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.discussion-stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-head);
  line-height: 1;
}

.discussion-stats-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
}

/* ── COMPARISON SPLIT ── */
.comparison-wrapper {
  background: var(--lighter-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-row {
  gap: 0;
  margin: 0;
}

.comparison-col {
  flex: 1;
  min-width: 280px;
}

.comparison-col-without {
  background: var(--white);
  padding: 40px;
  border-right: 1px solid var(--border);
}

.comparison-col-with {
  background: var(--primary);
  padding: 40px;
}

.comparison-icon-wrap-danger {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-icon-wrap-success {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
}

.comparison-header-light h3 {
  color: var(--white);
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  font-size: 15px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list-light li {
  border-bottom-color: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
}

.comparison-list li svg {
  flex-shrink: 0;
}

/* ── SOLUTION CARDS ── */
.solution-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.solution-card-featured {
  border-top: 4px solid var(--accent);
}

.solution-card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.solution-card-badge {
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.solution-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.15rem;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-17 {
    font-size: 17px;
}
.fs-12 {
    font-size: 12px;
}
.solution-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.solution-feature-item:last-child {
  border-bottom: none;
}

.solution-feature-item svg {
  flex-shrink: 0;
}

.solution-feature-item span {
  font-size: 14px;
}

/* ── COMPARISON TABLE ── */
.comparison-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table .comparison-row {
  border-bottom: 1px solid var(--border);
}

.comparison-table .comparison-row:first-child {
  background: var(--light-bg);
}

.comparison-table .comparison-header {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}

.comparison-table .comparison-col.weak {
  color: var(--primary);
  font-weight: bold;
}

.comparison-table .comparison-col.strong {
  color: var(--text-muted);
}

/* ── PROCESS ICON CARDS (CTA) ── */
.process-icon-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  border: 1px solid var(--border);
  height: 100%;
}

.process-icon-card .icon-circle {
  width: 75px;
  height: 75px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-icon-card .icon-circle i {
  color: var(--accent);
  font-size: 1.5rem;
}

.process-icon-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.process-icon-card p {
  color: var(--text-muted);
}

/* ── CTA DARK SECTION ── */
.cta-dark-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-dark-section .hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
}

.cta-dark-section .section-title {
  color: var(--white);
}

.cta-dark-section .section-title span {
  color: var(--accent-light);
}

.cta-dark-section .intro-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-dark-section .sub-text {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 15px;
}

.stat-block {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
}

.stat-block-wide {
  padding: 20px;
}

.stat-block .big-num {
  color: var(--accent-light);
}

.stat-block .stat-lbl {
  color: rgba(255, 255, 255, 0.8);
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--lighter-bg);
}
 /* ── Income / Expenditure Panels ── */
.panel-inflows {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
    border-top: 5px solid var(--accent);
    box-shadow: var(--shadow);
}
.panel-inflows .panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.panel-inflows .panel-icon {
    font-size: 2.2rem;
    color: var(--primary);
}
.panel-inflows .panel-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.panel-inflows .panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.panel-inflows .panel-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}
.panel-inflows .panel-list li:last-child {
    margin-bottom: 0;
}
.panel-inflows .panel-list .list-icon {
    color: var(--accent);
    margin-top: 5px;
}
.panel-inflows .panel-list span {
    color: var(--text-muted);
    line-height: 1.6;
}

.panel-outflows {
    background: var(--primary-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
    border-top: 5px solid #e74c3c;
    box-shadow: var(--shadow-lg);
}
.panel-outflows .panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.panel-outflows .panel-icon {
    font-size: 2.2rem;
    color: var(--white);
}
.panel-outflows .panel-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.panel-outflows .panel-desc {
    color: #b8c8dc;
    line-height: 1.8;
    margin-bottom: 25px;
}
.panel-outflows .panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.panel-outflows .panel-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}
.panel-outflows .panel-list li:last-child {
    margin-bottom: 0;
}
.panel-outflows .panel-list .list-icon {
    color: #e74c3c;
    margin-top: 5px;
}
.panel-outflows .panel-list span {
    color: #b8c8dc;
    line-height: 1.6;
}

/* ── Timeline Steps ── */
.timeline-step-nn {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}
.timeline-step-nn:last-child {
    margin-bottom: 0;
}
.timeline-dot-nn {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 5px solid var(--white);
}
.timeline-dot-nn--accent {
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.timeline-dot-nn--primary {
    background: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}
.timeline-step-nn-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.timeline-step-nn-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── CTA Block ── */
.cta-block {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--border) 100%);
    border-radius: var(--radius-lg);
    border-left: 8px solid var(--accent);
}
.cta-block-title {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--primary);
}
.cta-block-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0.5rem;
}
.cta-block-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background var(--transition);
}
.cta-block-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}
#progressRing {
    transform: rotate(-90deg); 
    transform-origin: center center; 
    transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
    stroke-dashoffset: 339.3;
}
.new-ban-lef {
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    border-radius:var(--radius-lg);
    padding:40px;
    height:100%;
    position:relative;
    overflow:hidden;
}
.new-ban-bg {
    position:absolute;
    top:-40px;
    right:-40px;
    width:200px;
    height:200px;
    border-radius:50%;
    background:rgba(201,146,42,.12);
}
.open-pg-box {
    background:rgba(255,255,255,0.1);
    border-radius:var(--radius);
    padding:16px;
    margin-top:20px;
    border:1px solid rgba(255,255,255,0.15);
}
.open-pg-box p {
    font-size:14px;
    color:rgba(255,255,255,0.85);
    margin:0;
}
.text-muted {
    color: var(--text-muted) !important;
}
.comparison-table.tab-two .comparison-col.head {
    color: var(--white); 
    font-weight: 700; 
    background: var(--primary);
}
.dark-blue-box {
    background: var(--primary-dark); 
    color: var(--white);
}
.new-step-num {
    position:absolute;
    top:15px;
    right:20px;
    font-size:2.5rem;
    font-weight:800;
    color:var(--accent-pale);
}
.new-step-ico {
    width:75px;
    height:75px;
    background:var(--white);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}
.ban-right-card-two {
    background:var(--lighter-bg); 
    padding:24px; 
    border-radius:var(--radius-md); 
    border:1px solid var(--border); 
    height:100%;
}
.ban-right-card-two i{
    color:var(--accent); 
    font-size:2rem;
    margin-bottom:15px;
    display:block;
}
.ban-right-card-two h5{
    font-weight:700; 
    color:var(--primary);
}
.ban-right-card-two p{
    font-size:0.9rem; 
    color:var(--text-muted); 
    margin-bottom:0;
}
.research-sec-bg {
    background: var(--primary); 
    color: var(--white);
}
.re-col-box {
    background: rgba(0,0,0,0.2); 
    padding: 50px;
}
.re-col-head {
   font-weight: 700; 
   border-bottom: 2px solid var(--accent); 
   display: inline-block; 
   padding-bottom: 10px; 
   margin-bottom: 30px;
}
.re-col-box-two {
    background: rgba(255,255,255,0.05); 
    padding: 50px;
}
.res-step {
    background: var(--white); 
    border: 2px solid var(--accent); 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    margin: 0 auto 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    color: var(--primary);
}
.res-tit {
    font-weight: 700;
}
.res-para {
    font-size: 0.9rem; 
    color: var(--text-muted);
}
.piller-tit {
    font-weight: 800; 
    color: var(--primary); 
    font-size: 2rem;
}
.piller-para {
    color: var(--accent); 
    font-weight: 600; 
    letter-spacing: 2px;
}
.piller-card {
    background: var(--white); 
    padding: 30px; 
    border-left: 2px dashed var(--border);
}

  .transfer-section {
    background: var(--lighter-bg);
  }
  .transfer-header {
    margin-bottom: 40px;
  }
  .process-icon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .process-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201, 146, 42, 0.08);
    font-family: var(--font-head);
  }
  .process-card-icon-wrap {
    width: 75px;
    height: 75px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .process-card-icon-wrap .bi {
    font-size: 1.5rem;
    color: var(--accent);
  }
  .process-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
  }

 .metric-card {
    background: var(--lighter-bg);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius);
  }
  .metric-card-primary {
    border-bottom: 4px solid var(--primary);
  }
  .metric-card-accent {
    border-bottom: 4px solid var(--accent);
  }
  .metric-card-number {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
  }
  .metric-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0;
  }
  .ritual-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
    box-shadow: var(--shadow);
  }
  .ritual-card-featured {
    border-top: 5px solid var(--primary);
  }
  .ritual-card-heading {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .flow-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .flow-item {
    background: var(--lighter-bg);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  .flow-item-primary {
    border-left: 6px solid var(--primary);
  }
  .flow-item-accent {
    border-left: 6px solid var(--accent);
  }
  .flow-item-dark {
    border-left: 6px solid var(--primary-dark);
  }
  .flow-item-number-primary {
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: rgba(26, 60, 94, 0.2);
  }
  .flow-item-number-accent {
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: rgba(201, 146, 42, 0.2);
  }
  .flow-item-number-dark {
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: rgba(15, 37, 64, 0.2);
  }
  .flow-item-body {
    flex: 1;
    min-width: 250px;
  }
  .flow-item-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .ritual-bg {
    background: var(--light-bg);
  }
 .author-avatar-new {
    width: 52px;
    height: 52px;
    font-size: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
  }
  .author-name-new {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-head);
    font-size: .95rem;
  }
  .author-field {
    font-size: .78rem;
    color: var(--accent);
    font-weight: 600;
  }
  .rating-new {
    font-size: .85rem;
    color: var(--accent);
  }
  .testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: .9rem;
  }
  .testimonial-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .testimonial-tag {
    position: static;
  }
  .cta-sub-narrow {
    max-width: 560px;
  }
  .cta-z {
    z-index: 1;
  }
  .icon-challenge {
    color: #dc3545;
  }


  .tip-card-lat {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 26px 22px;
    height: 100%;
    transition: var(--transition);
  }
  .tip-card-lat-primary {
    border-top: 4px solid var(--primary);
  }
  .tip-card-lat-accent {
    border-top: 4px solid var(--accent);
  }
  .tip-card-lat-primary-light {
    border-top: 4px solid var(--primary-light);
  }
  .tip-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .tip-icon-wrap-light {
    background: var(--light-bg);
  }
  .tip-icon-wrap-accent {
    background: var(--accent-pale);
  }
  .tip-icon {
    font-size: 1.2rem;
  }
  .tip-icon-primary {
    color: var(--primary);
  }
  .tip-icon-accent {
    color: var(--accent);
  }
  .tip-icon-primary-light {
    color: var(--primary-light);
  }
  .tip-card-lat-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .tip-card-lat-text {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
  }

  .new-compare-wrapper {
    background: var(--lighter-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .new-compare-row {
    gap: 0;
    margin: 0;
  }
  .new-compare-col {
    flex: 1;
    min-width: 280px;
    padding: 40px;
  }
  .new-compare-col-left {
    background: var(--white);
    border-right: 1px solid var(--border);
  }
  .new-compare-col-right {
    background: var(--primary);
  }
  .new-compare-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .new-compare-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-compare-icon-wrap-danger {
    background: #fee;
  }
  .new-compare-icon-wrap-success {
    background: rgba(255, 255, 255, .15);
  }
  .new-compare-heading-dark {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
  }
  .new-compare-heading-light {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
  }
  .new-compare-list {
    list-style: none;
    padding: 0;
  }
  .new-compare-list-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
  }
  .new-compare-list-item-bordered-dark {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }
  .new-compare-list-item-bordered-light {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .new-compare-list-item-light {
    color: rgba(255, 255, 255, .85);
  }
  .new-compare-icon-shrink {
    flex-shrink: 0;
  }
  .new-section-bg-white {
    background: var(--white);
  }
  .new-stats-box {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
  }
  .new-stats-heading {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
  .new-stats-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .new-stats-item-bordered {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 20px;
  }
  .new-stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    font-family: var(--font-head);
    line-height: 1;
  }
  .new-stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px;
  }
  .new-faq-label {
    margin-bottom: 12px;
  }
  .new-faq-title {
    margin-bottom: 24px;
  }
 .latest-funnel-box {
    background: var(--lighter-bg);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
  }
  .latest-funnel-heading {
    font-family: var(--font-head);
    font-weight: 700;
  }
  .latest-section-dark {
    background: var(--primary-dark);
    color: var(--white);
  }
  .latest-section-sub-muted {
    opacity: 0.8;
  }
  .latest-pillar-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    height: 100%;
  }
.latest-pillar-icon {
    font-size: 2.5rem;
    color: var(--accent);
}
.latest-pillar-heading {
    font-family: var(--font-head);
    font-weight: 600;
}
.stats-section {
    padding: 60px 0;
}
.discussion-stats p.text-white {
    font-size: 14px;
}
.discussion-stats div.border {
    border-color: #5b5c5c !important;
}
.latest-pillar-text {
    color: #cbd5e1;
    font-size: 0.95rem;
}
.latest-mistakes-heading {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
.latest-mistakes-list {
    list-style: none;
    padding: 0;
}
.latest-mistakes-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.latest-mistakes-icon {
    color: #dc3545;
    margin-right: 15px;
    margin-top: 5px;
}
.latest-mistakes-text {
    color: var(--text-muted);
}
.latest-support-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.latest-support-heading {
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 20px;
}
.latest-support-text {
    color: var(--text-muted);
    line-height: 1.8;
}
.step-num.step-num-in {
    width: 35px;
    height: 35px;
    top: 20px;
    right: 20px;
}
.testimonial-card .testimonial-tag {
    position: absolute;
}
.stat-block h4 {
    font-size: 20px;
}
