@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   WORDPRESS ISOLATED STYLESHEET
   All styling is scoped strictly under the .certclick-partner-lp container
   ========================================================================== */
.certclick-partner-lp {
    /* Brand Colors (CertClick Official) */
    --color-mint: #21d892;
    --color-mint-hover: #1abc7e;
    --color-mint-glow: rgba(33, 216, 146, 0.3);
    --color-mint-light: rgba(33, 216, 146, 0.12);
    --color-sky: #38bdf8;
    --color-sky-glow: rgba(56, 189, 248, 0.2);
    
    /* Layout Backgrounds (Light Theme Default) */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    
    /* Text Colors (Light Theme Default) */
    --color-text-title: #00102c; /* Deep navy blue for headings */
    --color-text-light: #334155; /* Slate-700 for highlighted body texts */
    --color-text-muted: #64748b; /* Slate-500 for standard/muted body texts */
    --color-text-white: #ffffff; /* Actual white */
    
    /* UI Borders & Shadows */
    --border-glass: rgba(15, 23, 42, 0.08); /* Clean gray border for light sections */
    --border-glass-active: rgba(33, 216, 146, 0.45);
    --shadow-premium: 0 12px 30px -10px rgba(0, 16, 44, 0.08), 0 4px 12px -5px rgba(0, 16, 44, 0.03);
    --shadow-glow: 0 0 25px 0 var(--color-mint-glow);
    --shadow-glow-sky: 0 0 25px 0 var(--color-sky-glow);
    
    /* Typography */
    --font-heading: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Scoped Reset to protect page layout */
    &, & *, & *::before, & *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Scoped Container Core Styles */
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background-color: var(--color-bg-primary);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;

    /* Scoped scrollbar inside container */
    &::-webkit-scrollbar {
        width: 10px;
    }
    &::-webkit-scrollbar-track {
        background: var(--color-bg-primary);
    }
    &::-webkit-scrollbar-thumb {
        background: var(--color-bg-tertiary);
        border-radius: var(--border-radius-full);
        border: 2px solid var(--color-bg-primary);
    }
    &::-webkit-scrollbar-thumb:hover {
        background: var(--color-mint);
    }

    /* Scoped typography tags */
    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        color: var(--color-text-title);
        font-weight: 700;
        line-height: 1.25;
    }

    p {
        margin-bottom: 1.25rem;
        font-weight: 300;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-smooth);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Scoped Layout Utilities */
    .container {
        width: 100%;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 7rem 0;
        position: relative;
        @media (max-width: 768px) {
            padding: 4.5rem 0;
        }
    }

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

    .text-gradient {
        background: linear-gradient(135deg, var(--color-text-white) 30%, var(--color-mint) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text-gradient-alt {
        background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-sky) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header {
        max-width: 700px;
        margin: 0 auto 4rem auto;
        text-align: center;

        .tag {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-mint);
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.35rem 1rem;
            background: var(--color-mint-light);
            border-radius: var(--border-radius-full);
            border: 1px solid rgba(33, 216, 146, 0.2);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.25rem;
            font-weight: 800;
            @media (max-width: 768px) {
                font-size: 2rem;
            }
        }
    }

    /* Scoped Glow Blurs */
    .glow-blur {
        position: absolute;
        border-radius: var(--border-radius-full);
        filter: blur(100px);
        z-index: 0;
        pointer-events: none;
        opacity: 0.06;
    }

    .glow-blur-1 {
        width: 400px;
        height: 400px;
        background: var(--color-mint);
        top: 5%;
        right: -10%;
    }

    .glow-blur-2 {
        width: 350px;
        height: 350px;
        background: var(--color-sky);
        bottom: 15%;
        left: -10%;
    }

    .glow-blur-3 {
        width: 500px;
        height: 500px;
        background: var(--color-mint);
        top: 45%;
        left: 40%;
        transform: translate(-50%, -50%);
    }

    /* Scoped Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.1rem 2.2rem;
        border-radius: var(--border-radius-md);
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition-smooth);
        border: none;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-hover) 100%);
        color: #040812;
        box-shadow: var(--shadow-glow);

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s ease;
        }

        &:hover::after {
            left: 100%;
        }

        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(33, 216, 146, 0.45);
        }
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.03);
        color: var(--color-text-white);
        border: 1px solid var(--border-glass);
        backdrop-filter: blur(8px);

        &:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
    }

    .btn-cta-pulse {
        animation: cta-pulse 2s infinite;
    }

    /* Scoped Header navigation */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: var(--transition-smooth);
        padding: 1.25rem 0;

        &.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: 0 4px 25px -5px rgba(0, 16, 44, 0.05);

            .logo img {
                filter: brightness(0.15) contrast(1.2);
            }

            .nav-link {
                color: var(--color-text-light);
                
                &.active {
                    color: var(--color-text-title);
                    border-bottom-color: var(--color-mint);
                }
            }

            .mobile-menu-btn {
                color: var(--color-text-title);
            }
        }

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

        .logo img {
            height: 40px;
            width: auto;
            transition: var(--transition-smooth);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.25rem;
            list-style: none;
            
            @media (max-width: 992px) {
                position: fixed;
                top: -100vh;
                left: 0;
                width: 100%;
                height: auto;
                background: #00102c;
                flex-direction: column;
                padding: 6rem 2rem 3rem 2rem;
                gap: 1.75rem;
                transition: var(--transition-smooth);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                z-index: 999;
                
                &.open {
                    top: 0;
                }
            }
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);

            &:hover {
                color: var(--color-mint);
            }

            &.active {
                color: #ffffff;
                border-bottom: 2px solid var(--color-mint);
                padding-bottom: 2px;
            }
        }

        .header-cta {
            display: flex;
            align-items: center;
            @media (max-width: 992px) {
                display: none;
            }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            
            @media (max-width: 992px) {
                display: block;
                z-index: 1001;
            }
        }
    }

    /* Scoped Hero Section */
    .hero {
        --color-bg-primary: #00102c;
        --color-bg-secondary: #080f24;
        --color-text-title: #ffffff;
        --color-text-light: #cbd5e1;
        --color-text-muted: #94a3b8;
        --color-text-white: #ffffff;
        --border-glass: rgba(255, 255, 255, 0.06);

        background-color: var(--color-bg-primary);
        color: var(--color-text-muted);
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 8.5rem;
        position: relative;
        overflow: hidden;

        @media (max-width: 992px) {
            padding-top: 7rem;
            padding-bottom: 4rem;
            min-height: auto;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
            
            @media (max-width: 992px) {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            @media (max-width: 992px) {
                align-items: center;
                text-align: center;
            }
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            background: rgba(33, 216, 146, 0.1);
            border: 1px solid rgba(33, 216, 146, 0.2);
            border-radius: var(--border-radius-full);
            color: var(--color-mint);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            
            svg {
                width: 16px;
                height: 16px;
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            @media (max-width: 1200px) {
                font-size: 2.85rem;
            }
            @media (max-width: 576px) {
                font-size: 2.25rem;
            }
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            margin-bottom: 2.5rem;
            font-weight: 300;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 3.5rem;
            width: 100%;
            @media (max-width: 992px) {
                justify-content: center;
            }
            @media (max-width: 576px) {
                flex-direction: column;
                align-items: stretch;
            }
        }

        .hero-meta {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            @media (max-width: 992px) {
                justify-content: center;
            }
            @media (max-width: 576px) {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .meta-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-glass);
            border-radius: var(--border-radius-sm);
            color: var(--color-mint);
        }

        .meta-text {
            h4 {
                font-size: 1.1rem;
                font-weight: 700;
            }
            p {
                font-size: 0.8rem;
                color: var(--color-text-muted);
                margin-bottom: 0;
            }
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            @media (max-width: 992px) {
                order: -1;
            }
        }

        .hero-card {
            background: rgba(21, 27, 44, 0.6);
            border: 1px solid var(--border-glass);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-premium);
            width: 100%;
            max-width: 440px;
            position: relative;
            overflow: hidden;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, var(--color-mint), var(--color-sky));
            }
        }

        .hero-card-header {
            text-align: center;
            margin-bottom: 2rem;
            h3 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }
            p {
                font-size: 0.85rem;
                color: var(--color-text-muted);
                margin-bottom: 0;
            }
        }

        .hero-stat-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-glass);
            border-radius: var(--border-radius-md);
            padding: 1.25rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .hero-stat-value {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-mint);
            margin-bottom: 0.25rem;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        .hero-bullet-list {
            list-style: none;
        }

        .hero-bullet-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--color-text-light);
            
            &:last-child {
                margin-bottom: 0;
            }

            svg {
                color: var(--color-mint);
                flex-shrink: 0;
                margin-top: 2px;
            }
        }
    }

    /* Scoped Compare section */
    .compare-section {
        background-color: var(--color-bg-secondary);
    }

    .compare-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
        }
    }

    .compare-card {
        border-radius: var(--border-radius-lg);
        padding: 3rem;
        background: #ffffff;
        border: 1px solid var(--border-glass);
        position: relative;
        overflow: hidden;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 20px rgba(0, 16, 44, 0.02);
        
        @media (max-width: 992px) {
            padding: 2rem;
        }

        &.bad {
            border-left: 4px solid #ef4444;
            
            .compare-title svg {
                color: #ef4444;
            }

            .compare-item svg {
                color: #f87171;
            }
        }

        &.good {
            border-left: 4px solid var(--color-mint);
            box-shadow: var(--shadow-premium);

            .compare-title svg {
                color: var(--color-mint);
            }

            .compare-item svg {
                color: var(--color-mint);
            }

            &:hover {
                border-color: var(--color-mint);
                transform: translateY(-4px);
                box-shadow: 0 15px 35px -10px rgba(33, 216, 146, 0.2);
            }
        }
    }

    .compare-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        svg {
            flex-shrink: 0;
        }
    }

    .compare-list {
        list-style: none;
    }

    .compare-item {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        color: var(--color-text-light);
        
        svg {
            margin-top: 3px;
            flex-shrink: 0;
        }
    }

    /* Scoped Demand section */
    .opp-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        @media (max-width: 992px) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width: 576px) {
            grid-template-columns: 1fr;
        }
    }

    .opp-card {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 2.25rem 1.75rem;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 15px rgba(0, 16, 44, 0.02);

        &:hover {
            background: #ffffff;
            border-color: var(--border-glass-active);
            transform: translateY(-5px);
            box-shadow: var(--shadow-premium);
            
            .opp-icon {
                background: var(--color-mint);
                color: #040812;
                box-shadow: 0 0 20px rgba(33, 216, 146, 0.4);
            }
        }

        h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }

        p {
            font-size: 0.85rem;
            line-height: 1.5;
            color: var(--color-text-muted);
            margin-bottom: 0;
        }
    }

    .opp-icon {
        width: 56px;
        height: 56px;
        border-radius: var(--border-radius-sm);
        background: var(--color-bg-tertiary);
        color: var(--color-mint);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: var(--transition-smooth);
    }

    /* Scoped Calculator Section */
    .calc-section {
        background-color: var(--color-bg-secondary);
    }

    .calc-container {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-lg);
        padding: 4rem;
        box-shadow: var(--shadow-premium);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        
        @media (max-width: 1200px) {
            padding: 2.5rem;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    .calc-inputs {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .calc-group {
        display: flex;
        flex-direction: column;
    }

    .calc-label-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .calc-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text-title);
        font-family: var(--font-heading);
    }

    .calc-value-badge {
        background: rgba(33, 216, 146, 0.1);
        border: 1px solid rgba(33, 216, 146, 0.2);
        color: var(--color-mint);
        padding: 0.25rem 0.85rem;
        border-radius: var(--border-radius-full);
        font-size: 0.95rem;
        font-weight: 700;
    }

    .range-slider {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        border-radius: var(--border-radius-full);
        background: var(--color-bg-tertiary);
        outline: none;
        transition: var(--transition-smooth);

        &::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--color-mint);
            cursor: pointer;
            box-shadow: 0 0 10px rgba(33, 216, 146, 0.5);
            transition: var(--transition-smooth);
            
            &:hover {
                transform: scale(1.2);
                box-shadow: 0 0 15px rgba(33, 216, 146, 0.8);
            }
        }
    }

    .range-scale-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
        color: var(--color-text-muted);
        margin-top: 0.5rem;
    }

    .calc-helper {
        background: var(--color-bg-secondary);
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 1.25rem;
        margin-top: 1rem;
    }

    .calc-helper-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--color-text-light);
        margin-bottom: 0.5rem;
        
        &:last-child {
            margin-bottom: 0;
        }
        span.bold {
            font-weight: 600;
            color: var(--color-text-title);
        }
        span.mint {
            color: var(--color-mint);
            font-weight: 700;
        }
    }

    .calc-results {
        --color-text-white: #ffffff;
        --color-text-muted: #94a3b8;
        --color-text-light: #cbd5e1;
        --border-glass: rgba(255, 255, 255, 0.06);
        
        background: #00102c;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-md);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        
        @media (max-width: 1200px) {
            padding: 2rem;
        }

        &::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, var(--color-mint-light) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
    }

    .result-item {
        position: relative;
        z-index: 1;
        margin-bottom: 2rem;

        &.highlight {
            background: rgba(33, 216, 146, 0.03);
            border: 1px dashed rgba(33, 216, 146, 0.2);
            border-radius: var(--border-radius-md);
            padding: 1.5rem;
            margin-bottom: 2rem;
            
            .result-value {
                font-size: 3rem;
                color: var(--color-mint);
                text-shadow: 0 0 20px rgba(33, 216, 146, 0.3);
                @media (max-width: 992px) {
                    font-size: 2.5rem;
                }
            }
        }
    }

    .result-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-text-muted);
        margin-bottom: 0.5rem;
    }

    .result-value {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--color-text-white);
        font-family: var(--font-heading);
    }

    .result-meta {
        font-size: 0.8rem;
        color: var(--color-text-muted);
    }

    .result-footer {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
        z-index: 1;
        
        p {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-align: center;
            margin-bottom: 0;
        }
    }

    /* Scoped Steps section */
    .step-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 3.5rem;
        }
    }

    .step-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        &::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -25%;
            width: 45%;
            height: 2px;
            background: linear-gradient(90deg, var(--color-mint) 0%, transparent 100%);
            opacity: 0.3;
            z-index: 1;
            @media (max-width: 992px) {
                display: none;
            }
        }

        &:last-child::after {
            display: none;
        }

        &:hover .step-number {
            border-color: var(--color-mint);
            box-shadow: var(--shadow-glow);
            transform: scale(1.05);
        }

        h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }
    }

    .step-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--color-bg-secondary);
        border: 2px solid var(--border-glass);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--color-mint);
        font-family: var(--font-heading);
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
        transition: var(--transition-smooth);
    }

    /* Scoped Certificate section */
    .cert-section {
        background-color: var(--color-bg-secondary);
    }

    .cert-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        @media (max-width: 992px) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width: 576px) {
            grid-template-columns: 1fr;
        }
    }

    .cert-card {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 2.5rem 2rem;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: var(--transition-smooth);
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 16, 44, 0.02);

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius-md);
            border: 1px solid var(--color-mint);
            opacity: 0;
            transition: var(--transition-smooth);
            pointer-events: none;
        }

        &:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-premium);
            
            &::after {
                opacity: 0.3;
            }
            .cert-badge {
                background: var(--color-mint);
                color: #040812;
                border-color: var(--color-mint);
            }
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
    }

    .cert-badge {
        background: var(--color-bg-tertiary);
        color: var(--color-text-light);
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 700;
        padding: 0.35rem 0.85rem;
        border-radius: var(--border-radius-full);
        display: inline-block;
        align-self: flex-start;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-glass);
    }

    .cert-subtitle {
        font-size: 0.8rem;
        color: var(--color-mint);
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .cert-desc {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        margin-bottom: 2rem;
        flex-grow: 1;
    }

    .cert-bullets {
        list-style: none;
        border-top: 1px solid var(--border-glass);
        padding-top: 1.5rem;
    }

    .cert-bullet-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--color-text-light);
        margin-bottom: 0.75rem;
        
        &:last-child {
            margin-bottom: 0;
        }
        svg {
            color: var(--color-mint);
            width: 14px;
            height: 14px;
        }
    }

    /* Scoped Form section */
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 3.5rem;
        }
    }

    .form-info {
        h2 {
            font-size: 2.75rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            @media (max-width: 992px) {
                font-size: 2.25rem;
            }
        }
        p {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            margin-bottom: 3rem;
        }
    }

    .form-features {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
    }

    .form-feat-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-feat-icon {
        width: 48px;
        height: 48px;
        background: rgba(33, 216, 146, 0.1);
        border: 1px solid rgba(33, 216, 146, 0.2);
        border-radius: var(--border-radius-sm);
        color: var(--color-mint);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .form-feat-text {
        h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-bottom: 0;
        }
    }

    .form-card {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-lg);
        padding: 3.5rem;
        box-shadow: var(--shadow-premium);
        position: relative;
        
        @media (max-width: 992px) {
            padding: 2.5rem;
        }

        &::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--color-mint-light) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
    }

    .lp-form {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        
        label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-light);
        }
    }

    .form-control {
        width: 100%;
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-sm);
        padding: 1rem 1.25rem;
        color: var(--color-text-title);
        font-family: var(--font-body);
        font-size: 0.9rem;
        transition: var(--transition-smooth);

        &:focus {
            outline: none;
            border-color: var(--color-mint);
            box-shadow: 0 0 10px rgba(33, 216, 146, 0.15);
        }
    }

    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' 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");
        background-repeat: no-repeat;
        background-position: right 1.25rem center;
        background-size: 1rem;
        padding-right: 3rem;
    }

    .form-success-state {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 3rem 0;
        position: relative;
        z-index: 2;
        
        h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: rgba(33, 216, 146, 0.1);
        border: 2px solid var(--color-mint);
        border-radius: 50%;
        color: var(--color-mint);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        font-size: 2.25rem;
        box-shadow: var(--shadow-glow);
        animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Scoped Support section */
    .support-section {
        background-color: var(--color-bg-secondary);
    }

    .support-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 3.5rem;
        }
    }

    .support-channels {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        @media (max-width: 576px) {
            grid-template-columns: 1fr;
        }
    }

    .channel-card {
        background: var(--color-bg-primary);
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        transition: var(--transition-smooth);

        &:hover {
            border-color: var(--border-glass-active);
            transform: translateY(-3px);
            
            .channel-link svg {
                transform: translateX(4px);
            }
        }

        h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        p {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
        }
    }

    .channel-icon {
        width: 48px;
        height: 48px;
        border-radius: var(--border-radius-sm);
        background: var(--color-bg-tertiary);
        color: var(--color-mint);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .channel-link {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-mint);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        svg {
            transition: var(--transition-smooth);
        }
    }

    .support-visual {
        display: flex;
        justify-content: center;
        position: relative;
        @media (max-width: 992px) {
            order: -1;
        }
    }

    .support-image-wrapper {
        width: 100%;
        max-width: 380px;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        position: relative;
        border: 1px solid var(--border-glass);
        box-shadow: 0 8px 30px rgba(0, 16, 44, 0.04);

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, var(--color-bg-secondary) 100%);
            z-index: 1;
        }

        img {
            width: 100%;
            height: auto;
            filter: brightness(0.85) contrast(1.1);
        }
    }

    /* Scoped Testimonials section */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
        }
    }

    .test-card {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 15px rgba(0, 16, 44, 0.02);

        &:hover {
            background: #ffffff;
            border-color: var(--border-glass-active);
            transform: translateY(-5px);
            box-shadow: var(--shadow-premium);
        }
    }

    .test-stars {
        color: var(--color-mint);
        margin-bottom: 1.5rem;
        display: flex;
        gap: 0.25rem;
        svg {
            width: 16px;
            height: 16px;
        }
    }

    .test-content {
        font-size: 0.9rem;
        color: var(--color-text-light);
        line-height: 1.6;
        margin-bottom: 2rem;
        font-style: italic;
    }

    .test-user {
        display: flex;
        align-items: center;
        gap: 1rem;
        border-top: 1px solid var(--border-glass);
        padding-top: 1.5rem;
    }

    .test-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--color-bg-tertiary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--color-mint);
        border: 1px solid var(--border-glass);
    }

    .test-user-info {
        h4 {
            font-size: 0.95rem;
            margin-bottom: 0.15rem;
        }
        p {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-bottom: 0;
        }
    }

    /* Scoped SEO Section */
    .seo-section {
        background-color: var(--color-bg-secondary);
    }

    .seo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        @media (max-width: 992px) {
            grid-template-columns: 1fr;
        }
    }

    .seo-card {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        padding: 2.25rem;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 15px rgba(0, 16, 44, 0.02);

        &:hover {
            border-color: rgba(0, 10, 44, 0.15);
            background: #ffffff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-premium);
        }

        h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }
    }

    /* Scoped FAQ Accordions */
    .faq-tabs {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
        @media (max-width: 576px) {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
    }

    .faq-tab-btn {
        background: none;
        border: none;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text-muted);
        padding: 0.75rem 2rem;
        border-radius: var(--border-radius-full);
        cursor: pointer;
        transition: var(--transition-smooth);
        border: 1px solid var(--border-glass);
        
        @media (max-width: 576px) {
            width: 100%;
            max-width: 280px;
        }

        &.active {
            background: var(--color-mint-light);
            color: var(--color-mint);
            border-color: rgba(33, 216, 146, 0.3);
        }
    }

    .faq-pane {
        display: none;
        max-width: 800px;
        margin: 0 auto;
        flex-direction: column;
        gap: 1rem;

        &.active {
            display: flex;
        }
    }

    .faq-item {
        background: #ffffff;
        border: 1px solid var(--border-glass);
        border-radius: var(--border-radius-md);
        overflow: hidden;
        transition: var(--transition-smooth);
        box-shadow: 0 2px 8px rgba(0, 16, 44, 0.01);

        &:hover {
            border-color: rgba(0, 10, 44, 0.15);
        }

        &.open {
            .faq-icon {
                transform: rotate(45deg);
                background: var(--color-mint-light);
                border-color: rgba(33, 216, 146, 0.3);
            }
            .faq-content {
                max-height: 500px;
                padding: 0 2rem 1.5rem 2rem;
                border-top: 1px solid var(--border-glass);
                margin-top: 0.5rem;
                padding-top: 1.5rem;
                
                @media (max-width: 576px) {
                    padding: 0 1.5rem 1.25rem 1.5rem;
                }
            }
        }
    }

    .faq-trigger {
        width: 100%;
        background: none;
        border: none;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        cursor: pointer;
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--color-text-title);
        gap: 1.5rem;
        
        @media (max-width: 576px) {
            padding: 1.25rem 1.5rem;
            font-size: 1rem;
        }
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-bg-tertiary);
        border: 1px solid var(--border-glass);
        border-radius: 50%;
        color: var(--color-mint);
        flex-shrink: 0;
        transition: var(--transition-smooth);
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        padding: 0 2rem;
        
        @media (max-width: 576px) {
            padding: 0 1.5rem;
        }

        p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 1.25rem;
            
            &:last-child {
                margin-bottom: 0;
            }
        }
        a.mint {
            color: var(--color-mint);
            font-weight: 600;
            &:hover {
                text-decoration: underline;
            }
        }
    }

    /* Scoped Footer */
    .footer {
        /* Local variables override to force dark navy theme on the Footer section */
        --color-bg-primary: #00102c;
        --color-text-title: #ffffff;
        --color-text-white: #ffffff;
        --color-text-muted: #94a3b8;
        --color-text-light: #cbd5e1;
        --border-glass: rgba(255, 255, 255, 0.06);
        
        background: var(--color-bg-primary);
        border-top: 1px solid var(--border-glass);
        padding: 5rem 0 2rem 0;

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
            gap: 4rem;
            margin-bottom: 4rem;
            
            @media (max-width: 992px) {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
            @media (max-width: 576px) {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 1.5rem;
            line-height: 1.6;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-col h5 {
            font-size: 1.1rem;
            color: var(--color-text-white);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;

            a {
                font-size: 0.85rem;
                color: var(--color-text-muted);
                
                &:hover {
                    color: var(--color-mint);
                    padding-left: 4px;
                }
            }
        }

        .footer-support-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .footer-support-item {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            font-size: 0.85rem;
            
            svg {
                color: var(--color-mint);
                margin-top: 3px;
                flex-shrink: 0;
            }
            h6 {
                font-size: 0.9rem;
                color: var(--color-text-white);
                margin-bottom: 0.15rem;
            }
            p {
                font-size: 0.8rem;
                color: var(--color-text-muted);
                margin-bottom: 0.25rem;
            }
            a.link {
                color: var(--color-mint);
                font-weight: 500;
                &:hover {
                    text-decoration: underline;
                }
            }
        }

        .footer-bottom {
            border-top: 1px solid var(--border-glass);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            
            @media (max-width: 576px) {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            @media (max-width: 576px) {
                justify-content: center;
            }
            a:hover {
                color: var(--color-mint);
            }
        }
    }

    /* Scoped Animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

        &.active {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }
}

/* ==========================================================================
   GLOBAL KEYFRAMES (Keep out of nested scope)
   ========================================================================== */
@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 216, 146, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(33, 216, 146, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 216, 146, 0);
    }
}

@keyframes scale-up {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes rotate-loading {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
