/* ============================================
   HostPeppy WordPress Hosting Page Styles
   Combined standalone CSS file
   ============================================ */


        :root {
            --accent-1: #E9F92A;
            --accent-2: #3A832F;
            --dark: #0a0a0a;
            --dark-2: #111111;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-light: #ffffff;
            --bg-light: #fafafa;
            --border-light: #e5e5e5;
            --gradient-primary: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
                --hp-gradient: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { overflow-x: hidden; scroll-behavior: smooth; }
        body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 15px; line-height: 1.7; color: var(--text-primary); background: #ffffff; }
        img { max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 4px; }

        /* ==================== NAVIGATION ==================== */
        .navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); transition: box-shadow 0.3s ease; }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .nav-left { display: flex; align-items: center; gap: 48px; }
        .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 24px; color: var(--text-primary); letter-spacing: -0.5px; flex-shrink: 0; }
        .logo-icon { width: 36px; height: 36px; background: var(--gradient-primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 900; font-size: 18px; flex-shrink: 0; }
        .logo-tagline { font-size: 11px; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; margin-top: -2px; }
        .nav-menu { display: flex; align-items: center; gap: 4px; }
        .nav-item { position: relative; }
        .nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-size: 15px; font-weight: 500; color: var(--text-secondary); border-radius: var(--radius-md); transition: all 0.3s ease; cursor: pointer; }
        .nav-link:hover { color: var(--text-primary); background: rgba(233, 249, 42, 0.1); }
        .nav-link svg { width: 14px; height: 14px; transition: transform 0.3s; flex-shrink: 0; }
        .nav-item:hover .nav-link svg { transform: rotate(180deg); }
        .dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(10px); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px; min-width: 280px; opacity: 0; visibility: hidden; transition: all 0.3s ease; border: 1px solid var(--border-light); z-index: 1001; }
        .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
        .dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: var(--radius-md); transition: background 0.3s; cursor: pointer; }
        .dropdown-item:hover { background: rgba(233, 249, 42, 0.08); }
        .dropdown-icon { width: 40px; height: 40px; background: linear-gradient(135deg, rgba(233, 249, 42, 0.2), rgba(58, 131, 47, 0.1)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-2); font-size: 18px; }
        .dropdown-content h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
        .dropdown-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
        .nav-right { display: flex; align-items: center; gap: 12px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 15px; font-weight: 600; border-radius: var(--radius-md); border: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; white-space: nowrap; }
        .btn-primary { background: var(--gradient-primary); color: var(--dark); box-shadow: 0 4px 14px rgba(233, 249, 42, 0.4); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233, 249, 42, 0.5); }
        .btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-light); }
        .btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); background: rgba(58, 131, 47, 0.05); }
        .btn-ghost { background: transparent; color: var(--text-secondary); padding: 10px 18px; }
        .btn-ghost:hover { color: var(--text-primary); background: rgba(0,0,0,0.05); }
        .mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1002; }
        .mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text-primary); transition: all 0.3s; border-radius: 2px; }

        /* ==================== PAGE HEADER ==================== */
               .mobile-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 0;
}
        .page-header {
            background: linear-gradient(135deg, #fafafa 0%, rgba(233, 249, 42, 0.08) 50%, #fafafa 100%);
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233, 249, 42, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        .breadcrumb a { color: var(--accent-2); font-weight: 500; transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--text-primary); }
        .breadcrumb-sep { color: #ccc; }
        .page-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -1.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .page-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.6;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            background: rgba(233, 249, 42, 0.15);
            border: 1px solid rgba(233, 249, 42, 0.3);
            color: var(--accent-2);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
        }
        .last-updated i { font-size: 14px; }

        /* ==================== PRIVACY CONTENT ==================== */
        .privacy-section {
            padding: 60px 0 80px;
            background: #fff;
        }
        .privacy-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Sidebar Navigation */
        .privacy-sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-light);
        }
        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 3px solid transparent;
        }
        .sidebar-link:hover {
            background: rgba(233, 249, 42, 0.08);
            color: var(--text-primary);
            border-left-color: var(--accent-1);
        }
        .sidebar-link.active {
            background: linear-gradient(135deg, rgba(233, 249, 42, 0.15), rgba(58, 131, 47, 0.08));
            color: var(--accent-2);
            font-weight: 600;
            border-left-color: var(--accent-2);
        }
        .sidebar-link i {
            width: 18px;
            text-align: center;
            font-size: 13px;
        }

        /* Main Content */
        .privacy-content {
            max-width: 800px;
        }
        .privacy-block {
            margin-bottom: 48px;
            scroll-margin-top: 100px;
        }
        .privacy-block:last-child { margin-bottom: 0; }
        .block-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }
        .block-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(233, 249, 42, 0.25);
        }
        .block-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        .block-body {
            padding-left: 58px;
        }
        .block-body p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .block-body p:last-child { margin-bottom: 0; }
        .block-body strong { color: var(--text-primary); font-weight: 600; }
        .block-body a {
            color: var(--accent-2);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }
        .block-body a:hover { color: var(--accent-1); }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 16px 0;
        }
        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .info-list li::before {
            content: '•';
            color: var(--accent-2);
            font-weight: 800;
            font-size: 20px;
            line-height: 1;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .info-box {
            background: linear-gradient(135deg, rgba(233, 249, 42, 0.06), rgba(58, 131, 47, 0.04));
            border: 1px solid rgba(233, 249, 42, 0.2);
            border-radius: var(--radius-md);
            padding: 20px;
            margin: 20px 0;
        }
        .info-box-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-2);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .info-box p { margin-bottom: 0 !important; font-size: 14px !important; }

        .highlight-text {
            background: linear-gradient(135deg, rgba(233, 249, 42, 0.15), rgba(58, 131, 47, 0.08));
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--accent-2);
            font-weight: 600;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark);
            color: var(--text-light);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }
        .footer::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233, 249, 42, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }
        .footer-brand { max-width: 300px; }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 24px;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-logo .logo-icon { background: var(--gradient-primary); color: var(--dark); }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
            margin-bottom: 24px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            transition: all 0.3s;
            font-size: 16px;
        }
        .social-link:hover {
            background: var(--gradient-primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #fff;
            margin-bottom: 24px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .footer-link {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            transition: all 0.3s;
            display: inline-block;
            position: relative;
        }
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-1);
            transition: width 0.3s;
        }
        .footer-link:hover { color: #fff; }
        .footer-link:hover::after { width: 100%; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-copyright {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }
        .footer-payments {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .payment-icon {
            height: 28px;
            width: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            font-weight: 600;
        }


        .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 249, 42, 0.15);
    border: 1px solid rgba(233, 249, 42, 0.3);
    color: var(--accent-2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge .percent {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--dark);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
}

        /* ==================== MOBILE MENU ==================== */
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9998;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-overlay.active { display: block; opacity: 1; }
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 360px;
            height: 100vh;
            height: 100dvh;
            background: #fff;
            z-index: 9999;
            padding: 80px 24px 24px;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        }
        .mobile-menu.active { right: 0; }
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 28px;
            color: var(--text-primary);
            background: rgba(0,0,0,0.05);
            border-radius: 50%;
            border: none;
            z-index: 10;
        }
        .mobile-close:hover { background: rgba(0,0,0,0.1); }
        .mobile-nav-item { border-bottom: 1px solid var(--border-light); }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        .mobile-dropdown { padding: 0 0 16px 16px; display: none; }
        .mobile-dropdown.active { display: block; animation: slideDown 0.3s ease; }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-dropdown-item { padding: 10px 0; font-size: 14px; color: var(--text-secondary); cursor: pointer; }
        .mobile-dropdown-item:hover { color: var(--accent-2); }
        .mobile-menu-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-light); }
        .mobile-menu-footer .btn { width: 100%; margin-bottom: 12px; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .nav-menu, .nav-right .btn-ghost { display: none; }
            .mobile-toggle { display: flex; }
            .privacy-container { grid-template-columns: 1fr; gap: 40px; }
            .privacy-sidebar { position: static; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .footer-brand { max-width: 100%; grid-column: 1 / -1; }
        }

        @media (max-width: 767px) {
            .navbar { position: fixed; top: 0; left: 0; right: 0; width: 100%; }
            body { padding-top: 72px; }
            .nav-container { padding: 0 16px; height: 64px; }
            .nav-right .btn-primary { padding: 10px 18px; font-size: 14px; }
            .mobile-toggle { display: flex; }
            .logo { font-size: 20px; }
            .logo-icon { width: 32px; height: 32px; font-size: 16px; }
            .page-header { padding: 40px 0 30px; }
            .page-title { font-size: 32px; }
            .page-subtitle { font-size: 15px; }
            .privacy-section { padding: 40px 0 60px; }
            .privacy-container { padding: 0 16px; }
            .block-body { padding-left: 0; }
            .block-header { margin-bottom: 16px; }
            .block-title { font-size: 20px; }
            .privacy-block { margin-bottom: 36px; }
            .footer { padding: 50px 0 30px; }
            .footer-container { padding: 0 16px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
            .footer-brand { text-align: center; }
            .footer-logo { justify-content: center; }
            .footer-desc { text-align: center; }
            .footer-social { justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
            .footer-payments { justify-content: center; }
        }

        @media (max-width: 480px) {
            .page-title { font-size: 28px; }
            .block-icon { width: 36px; height: 36px; font-size: 15px; }
            .block-title { font-size: 18px; }
        }

        body.menu-open { overflow: hidden; position: fixed; width: 100%; height: 100%; }
        /* ================= FIX: NAVBAR STRUCTURE ================= */

/* Prevent both sides from breaking */
.nav-left,
.nav-right {
    flex-shrink: 0;
}

/* Allow center space to adjust properly */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Prevent menu pushing too much */
.nav-left {
    gap: 24px !important;
}

/* Keep logo stable */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* ================= FIX: BUTTON CONSISTENCY ================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Force same size everywhere */
.nav-right .btn,
.nav-right .btn-primary,
.nav-right .btn-outline,
.nav-right .btn-ghost {
    height: 40px;
    padding: 0 16px !important;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Prevent button pushing layout */
.nav-right .btn-primary {
    min-width: 120px;
}

/* ================= TABLET FIX ================= */

@media (max-width: 1023px) {

    /* Hide desktop menu earlier */
    .nav-menu {
        display: none !important;
    }

    /* Reduce spacing */
    .nav-left {
        gap: 12px !important;
    }

    /* Slightly smaller logo */
    .logo-img {
        height: 32px;
        max-width: 140px;
    }

    /* Smaller buttons */
    .nav-right .btn {
        height: 36px;
        padding: 0 12px !important;
        font-size: 13px !important;
    }
}

/* ================= MOBILE FIX ================= */

@media (max-width: 767px) {

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    body {
        padding-top: 64px;
    }

    .nav-container {
        height: 64px !important;
        padding: 0 14px !important;
    }

    /* Hide register to save space */
    .nav-right .btn-ghost {
        display: none !important;
    }

    /* Compact button */
    .nav-right .btn-primary {
        padding: 6px 12px !important;
        font-size: 12px !important;
        height: 34px;
    }

    /* Smaller logo */
    .logo-img {
        height: 28px !important;
        max-width: 120px;
    }

    /* Keep hamburger aligned */
    .mobile-toggle {
        margin-left: 4px;
    }
}

/* ================= EXTRA SMALL DEVICES ================= */

@media (max-width: 380px) {

    .nav-right .btn-primary {
        padding: 5px 10px !important;
        font-size: 11px !important;
    }

    .logo-img {
        max-width: 100px;
    }
}
    

/* ======================================== */


      /* Offer Box - WordPress Style */
.hero-unlimited-wp-offerbox {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #c5d65a;
    border-radius: 16px;
    padding: 16px 24px;
    width: fit-content;
    margin-top: 10px;
    background: #fff;
}

.offer-ribbon {
    position: relative;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    min-width: 100px;
    text-align: center;
}

.offer-divider-v {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #c5d65a, transparent);
    margin: 0 24px;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 14px;
    color: #5a8f3a;
    font-weight: 600;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    margin-left: 4px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #3A832F;
}

.price-value {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    

    .hero-unlimited-wp-offerbox {
        margin: 10px auto 0;
    }

  
}

@media (max-width: 640px) {
    

    .offer-ribbon {
        font-size: 14px;
        padding: 8px 14px;
        min-width: 80px;
    }

    .offer-divider-v {
        margin: 0 16px;
        height: 50px;
    }

    .price-value {
        font-size: 36px;
    }

}

@media (max-width: 480px) {
    .hero-unlimited-wp-title {
        font-size: 26px;
    }

    .hero-unlimited-wp-offerbox {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .offer-divider-v {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c5d65a, transparent);
    }


}
/* ==================== HERO SECTION ==================== */

/* Top Badge */
.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(197,214,90,0.12), rgba(90,143,58,0.06));
    border: 1px solid rgba(197,214,90,0.25);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #5a8f3a;
    width: fit-content;
}

.percent-badge {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
}


.hero {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, rgba(233, 249, 42, 0.06) 50%, #fafafa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 214, 90, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* LEFT CONTENT */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Services Bar */
.services-bar {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #E9F92A 0%, #c5d65a 100%);
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(197, 214, 90, 0.3);
}

/* Title */
.hero-title {
    font-size:40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 8px 0 0;
}

.title-gradient {
    background: linear-gradient(#d0de25, #3A832F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Underline */
.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #E9F92A, #5a8f3a);
    border-radius: 2px;
    margin: 4px 0 8px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Checklist */
.hero-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    list-style: none;
    padding: 0;
    margin: 12px 0 8px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ==================== OFFER BLOCK ==================== */
.offer-block {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
    flex-wrap: wrap;
}

.offer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.big-offer-text {
    font-size: 56px;
    font-weight: 900;
    line-height: 0.95;
    background: linear-gradient(135deg, #c5d65a 0%, #5a8f3a 50%, #3A832F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.offer-sub {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-top: 4px;
}

.offer-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, #c5d65a, transparent);
    margin: 0 24px;
}

.offer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extra-offer-badge {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(197, 214, 90, 0.3);
    width: fit-content;
}

.coupon-box {
    border: 2px dashed #5a8f3a;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #5a8f3a;
    letter-spacing: 0.5px;
    background: rgba(197, 214, 90, 0.06);
}

.coupon-highlight {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    color: #3A832F;
    font-size: 14px;
}

/* ==================== RIGHT VISUAL ==================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 1px solid #e5e5e5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

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

/* ==================== FLOATING COUNTDOWN ==================== */
.countdown-float {
    position: absolute;
    bottom: -40px;
    left: -20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(197, 214, 90, 0.2);
    animation: float-badge 3s ease-in-out infinite;
    min-width: 240px;
    z-index: 10;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a4a4a;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #5a8f3a;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s ease-in-out infinite;
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #5a8f3a;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

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

.timer-value {
    background: linear-gradient(135deg, rgba(197, 214, 90, 0.15), rgba(90, 143, 58, 0.08));
    border: 1px solid rgba(197, 214, 90, 0.25);
    border-radius: 10px;
    padding: 10px 8px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #c5d65a 0%, #5a8f3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    min-width: 44px;
}

.timer-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.timer-sep {
    font-size: 20px;
    font-weight: 700;
    color: #c5d65a;
    padding-bottom: 16px;
}

.countdown-discount {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(197, 214, 90, 0.1), rgba(90, 143, 58, 0.05));
    border: 1px solid rgba(197, 214, 90, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #5a8f3a;
}

.countdown-discount strong {
    font-size: 16px;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        order: 2;
    }

    .hero-title {
        font-size: 42px;
    }

    .title-underline {
        margin: 4px auto 8px;
    }

    .hero-checklist {
        max-width: 500px;
        margin: 12px auto 8px;
        text-align: left;
    }

    .offer-block {
        justify-content: center;
        margin: 8px auto 0;
    }

    .offer-left {
        align-items: center;
    }

    .offer-right {
        align-items: center;
    }

    .hero-visual {
        order: 1;
    }

    .countdown-float {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-container {
        padding: 0 16px;
        gap: 36px;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-bar {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-checklist {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 320px;
    }

    .hero-checklist li {
        font-size: 15px;
    }

    .big-offer-text {
        font-size: 42px;
    }

    .offer-divider {
        height: 60px;
        margin: 0 16px;
    }

    .extra-offer-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .coupon-box {
        font-size: 11px;
        padding: 8px 14px;
    }

    .visual-frame {
        aspect-ratio: 16/10;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .big-offer-text {
        font-size: 36px;
    }

    .offer-block {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .offer-divider {
        width: 80px;
        height: 2px;
        margin: 0;
        background: linear-gradient(90deg, transparent, #c5d65a, transparent);
    }

    .offer-left {
        align-items: center;
    }

    .offer-sub {
        font-size: 12px;
    }
}


/* ======================================== */

/* ==================== FEATURES SECTION ==================== */
.hp-features-section {
    width: 100%;
    padding: 4rem 1rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hp-features-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layout - 8 columns on desktop */
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

/* Feature Card */
.hp-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.hp-feature-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Glowing Gradient Border Effect */
.hp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 1.5px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 50%, #E9F92A 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
    pointer-events: none;
}

.hp-feature-card:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Top accent line */
.hp-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hp-feature-card:hover::after {
    transform: scaleX(1);
}

/* Icon Wrap - Gradient Background */
.hp-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
    color: #1a1a1a;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    
    box-shadow: 0 4px 14px rgba(233, 249, 42, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
   
}

@keyframes iconGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon itself */
.hp-icon-wrap i {
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-weight: 900;
}

/* Hover State */
.hp-feature-card:hover .hp-icon-wrap {
    transform: scale(1.15) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(233, 249, 42, 0.45), 0 0 0 4px rgba(233, 249, 42, 0.1);
}

.hp-feature-card:hover .hp-icon-wrap i {
    color: #000000;
    transform: scale(1.1);
}

/* Text */
.hp-feature-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.hp-feature-card:hover h3 {
    color: #3A832F;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hp-features-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.75rem;
    }
    .hp-feature-card {
        padding: 1.25rem 0.5rem;
    }
    .hp-icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
    .hp-feature-card h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hp-features-section {
        padding: 3rem 1rem;
    }
    .hp-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    .hp-feature-card {
        padding: 1.25rem 0.5rem;
        border-radius: 1rem;
    }
    .hp-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .hp-feature-card h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .hp-feature-card {
        padding: 1.25rem 0.5rem;
        border-radius: 1rem;
    }
    .hp-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .hp-feature-card h3 {
        font-size: 0.9rem;
    }
}


/* ======================================== */

/* ==================== PRICING SECTION ==================== */
.hp-pricing-section {
    width: 100%;
    padding: 5rem 1rem;
    background: #ffffff;
    position: relative;
}

.hp-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.hp-pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(233, 249, 42, 0.3);
    background: linear-gradient(135deg, rgba(233,249,42,0.12), rgba(58,131,47,0.06));
    color: #3A832F;
}

.hp-pricing-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hp-gradient-text {
    background: linear-gradient(to bottom right, #d0de25, #3A832F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-grad-accent {
    background: linear-gradient(to bottom right, #838d0f, #3A832F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hp-pricing-header p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.hp-migration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233,249,42,0.15), rgba(58,131,47,0.08));
    border: 1px solid rgba(233, 249, 42, 0.25);
    color: #3A832F;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 8px;
}

/* Pricing Grid - 3 Columns (WordPress has 3 plans) */
.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Plan Card */
.hp-plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.hp-plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 249, 42, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* Top gradient line */
.hp-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hp-plan-card:hover::before {
    transform: scaleX(1);
}

/* Popular Plan */
.hp-plan-card.hp-popular {
    border: 2px solid #E9F92A;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 249, 42, 0.15);
}

.hp-plan-card.hp-popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 60px rgba(233, 249, 42, 0.2);
}

.hp-popular-tag {
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, #E9F92A, #3A832F);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

/* Plan Badge */
.hp-plan-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Plan Name */
.hp-plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

/* Price */
.hp-plan-price {
    margin: 12px 0 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.hp-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3A832F;
    margin-top: 4px;
}

.hp-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -2px;
}

.hp-period {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    margin-top: 8px;
}

.hp-plan-renew {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* Features List */
.hp-plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 16px;
    flex: 1;
    padding: 0;
}

.hp-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    line-height: 1.4;
}

.hp-plan-features li:last-child {
    border-bottom: none;
}

.hp-plan-features li i {
    color: #3A832F;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hp-plan-features li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* WordPress Highlight Feature */
.hp-wp-highlight {
    color: #3A832F;
    font-weight: 700;
}

/* Promo Tag */
.hp-promo-tag {
    display: inline-block;
    background: linear-gradient(135deg, #E9F92A, #c5d65a);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    text-transform: uppercase;
}

/* Coupon Strip */
.hp-coupon-strip {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    padding: 10px;
    background: rgba(233, 249, 42, 0.08);
    border: 1.5px dashed #c5d65a;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.hp-coupon-strip strong {
    color: #3A832F;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Plan Form */
.hp-plan-form {
    width: 100%;
    margin: 0;
}

/* Button */
.hp-plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1.5px solid #e5e5e5;
    background: #fff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.hp-plan-btn:hover {
    border-color: #3A832F;
    color: #3A832F;
    background: rgba(58, 131, 47, 0.03);
}

.hp-btn-primary {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 16px rgba(233, 249, 42, 0.3);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 249, 42, 0.4);
    color: #000;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
}

/* Footer */
.hp-pricing-footer {
    text-align: center;
}

.hp-view-features {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #3A832F;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.hp-view-features:hover {
    color: #1a1a1a;
    gap: 12px;
}

.hp-view-features i {
    transition: transform 0.3s;
}

.hp-view-features:hover i {
    transform: translateY(3px);
}

.hp-pricing-note {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-pricing-note a {
    color: #3A832F;
    font-weight: 600;
    text-decoration: none;
}

.hp-pricing-note a:hover {
    text-decoration: underline;
}

/* ==================== MODAL ==================== */
.hp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hp-modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
}

.hp-modal-content {
    background: #fff;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.hp-modal-overlay.active .hp-modal-content {
    transform: translateY(0);
}

.hp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.hp-modal-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hp-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hp-modal-close:hover {
    background: #eee;
    color: #1a1a1a;
    transform: rotate(90deg);
}

.hp-modal-body {
    padding: 0;
    overflow-x: auto;
}

/* Comparison Table */
.hp-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hp-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
    table-layout: fixed;
}

.hp-compare-table th,
.hp-compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    vertical-align: middle;
}

.hp-compare-table thead th {
    background: #fafafa;
    font-weight: 700;
    color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 5;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 20%;
}

.hp-compare-table thead th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
    width: 40%;
}

.hp-compare-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.hp-col-plan {
    width: 20%;
    min-width: 130px;
}

.hp-table-price {
    display: block;
    font-size: 0.8rem;
    color: #3A832F;
    font-weight: 700;
    margin-top: 4px;
}

.hp-sticky-col {
    position: sticky;
    left: 0;
    background: #fff;
    text-align: left !important;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 220px;
    width: 40%;
    z-index: 4;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
}

.hp-category-row td {
    background: linear-gradient(135deg, rgba(233,249,42,0.08), rgba(58,131,47,0.04));
    font-weight: 800;
    color: #3A832F;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
}

.hp-highlight-col {
    background: rgba(233, 249, 42, 0.06);
    border-left: 2px solid #E9F92A;
    border-right: 2px solid #E9F92A;
}

.hp-check {
    color: #3A832F;
    font-weight: 700;
}

.hp-check-icon {
    color: #3A832F;
    font-size: 1rem;
}

.hp-cross-icon {
    color: #ff4444;
    font-size: 1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hp-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
    .hp-plan-card.hp-popular {
        transform: none;
    }
    .hp-plan-card.hp-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .hp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hp-plan-card.hp-popular {
        order: -1;
        transform: none;
    }
    .hp-plan-card.hp-popular:hover {
        transform: translateY(-8px);
    }
    .hp-popular-tag {
        right: -30px;
        padding: 3px 35px;
    }
}

@media (max-width: 768px) {
    .hp-pricing-section {
        padding: 3.5rem 1rem;
    }
    .hp-pricing-header h2 {
        font-size: 1.9rem;
    }
    .hp-plan-card {
        padding: 1.5rem 1rem;
    }
    .hp-amount {
        font-size: 2.2rem;
    }
    .hp-plan-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    .hp-modal-content {
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }
    .hp-modal-header {
        padding: 16px 20px;
    }
    .hp-compare-table th,
    .hp-compare-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    .hp-sticky-col {
        min-width: 160px;
    }
    .hp-col-plan {
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .hp-pricing-header h2 {
        font-size: 1.6rem;
    }
    .hp-pricing-note {
        flex-direction: column;
        gap: 8px;
    }
    .hp-migration-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    .hp-coupon-strip {
        font-size: 0.7rem;
    }
}


/* ======================================== */

/* ==================== MIGRATION SECTION ==================== */
.hp-migration-section {
    width: 100%;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hp-migration-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(233, 249, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hp-migration-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.hp-migration-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(233, 249, 42, 0.3);
    background: linear-gradient(135deg, rgba(233,249,42,0.12), rgba(58,131,47,0.06));
    color: #3A832F;
}

.hp-migration-header h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.hp-gradient-text {
    background: linear-gradient(to bottom right, #d0de25, #3A832F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-migration-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Container */
.hp-migrate-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

/* Step Card */
.hp-step-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

/* Visual Area - Icon + Image */
.hp-step-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Circle Icon */
.hp-step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 15px 40px rgba(58,131,47,0.25), 0 0 0 8px rgba(233,249,42,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Glow Effect */
.hp-step-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,249,42,0.2) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Image Placeholder */
.hp-step-img {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s ease;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Show image if it loads, hide icon */
.hp-step-img:not([src=""]) ~ .hp-step-icon {
    opacity: 0;
    transform: scale(0.8);
}

.hp-step-img:not([src=""]) {
    opacity: 1;
}

/* Hover Effects */
.hp-step-card:hover .hp-step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 20px 50px rgba(58,131,47,0.35), 0 0 0 12px rgba(233,249,42,0.15);
}

.hp-step-card:hover .hp-step-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Step Number */
.hp-step-number {
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(58,131,47,0.25);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Step Text */
.hp-step-card h4 {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.hp-step-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

/* Connector Between Steps */
.hp-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
    flex-shrink: 0;
}

.hp-connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    border-radius: 2px;
    position: relative;
}

.hp-connector-line::before,
.hp-connector-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #E9F92A;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hp-connector-line::before { left: -3px; }
.hp-connector-line::after { right: -3px; }

.hp-connector-arrow {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #E9F92A, #3A832F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.7rem;
    margin-left: -8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(233,249,42,0.3);
}

/* CTA */
.hp-migration-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hp-btn-migrate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(233,249,42,0.3);
}

.hp-btn-migrate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233,249,42,0.4);
    gap: 14px;
}

.hp-cta-note {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hp-migration-header h3 {
        font-size: 2.2rem;
    }
    .hp-step-card {
        min-width: 220px;
    }
    .hp-step-visual {
        width: 120px;
        height: 120px;
    }
    .hp-step-icon {
        width: 80px;
        height: 80px;
        font-size: 1.7rem;
    }
    .hp-step-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hp-migration-section {
        padding: 4rem 1rem;
    }
    .hp-migration-header h3 {
        font-size: 1.9rem;
    }
    .hp-migration-header p {
        font-size: 1rem;
    }
    .hp-migrate-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .hp-step-card {
        max-width: 340px;
        width: 100%;
    }
    .hp-step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: -10px 0;
    }
    .hp-connector-line {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hp-migration-header h3 {
        font-size: 1.6rem;
    }
    .hp-step-visual {
        width: 110px;
        height: 110px;
    }
    .hp-step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        box-shadow: 0 10px 30px rgba(58,131,47,0.25), 0 0 0 6px rgba(233,249,42,0.1);
    }
    .hp-step-img {
        width: 110px;
        height: 110px;
    }
    .hp-step-card h4 {
        font-size: 1.05rem;
    }
    .hp-step-card p {
        font-size: 0.85rem;
    }
    .hp-btn-migrate {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}


/* ======================================== */

/* ==================== WORDPRESS FIX SECTION ==================== */
.wp-fix-section {
    position: relative;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 0 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.wp-fix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(233, 249, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.wp-fix-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.wp-fix-header {
    text-align: center;
    margin-bottom: 50px;
}

.wp-fix-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233, 249, 42, 0.15), rgba(58, 131, 47, 0.08));
    border: 1px solid rgba(233, 249, 42, 0.3);
    color: #3A832F;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.wp-fix-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.wp-fix-gradient {
    background: linear-gradient(#d0de25, #3A832F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-fix-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PROBLEMS GRID - 3x4 Balanced */
.wp-problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.wp-problem-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wp-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 249, 42, 0.3);
}

.wp-problem-card:hover::before {
    transform: scaleX(1);
}

.wp-problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
}

.wp-icon-red { background: rgba(255, 68, 68, 0.1); color: #ff4444; }
.wp-icon-orange { background: rgba(255, 150, 50, 0.1); color: #ff9632; }
.wp-icon-yellow { background: rgba(255, 200, 50, 0.1); color: #d4a017; }
.wp-icon-purple { background: rgba(200, 100, 255, 0.1); color: #a855f7; }
.wp-icon-blue { background: rgba(50, 150, 255, 0.1); color: #3b82f6; }
.wp-icon-cyan { background: rgba(50, 200, 200, 0.1); color: #06b6d4; }
.wp-icon-pink { background: rgba(255, 100, 150, 0.1); color: #ec4899; }
.wp-icon-gray { background: rgba(150, 150, 150, 0.1); color: #6b7280; }
.wp-icon-red2 { background: rgba(255, 80, 80, 0.1); color: #ef4444; }
.wp-icon-red3 { background: rgba(255, 60, 60, 0.1); color: #dc2626; }
.wp-icon-brown { background: rgba(200, 120, 80, 0.1); color: #b45309; }
.wp-icon-dark { background: rgba(100, 100, 100, 0.1); color: #4b5563; }

.wp-problem-text strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 4px;
}

.wp-problem-text span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* DIVIDER */
.wp-fix-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.wp-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c5d65a, transparent);
    max-width: 200px;
}

.wp-divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    animation: wp-bounce 2s ease-in-out infinite;
}

@keyframes wp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SOLUTION WRAP - CENTERED */
.wp-solution-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 50px;
}

.wp-solution-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(233, 249, 42, 0.3);
}

.wp-solution-headline {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.wp-solution-intro {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.wp-solution-intro strong {
    color: #1a1a1a;
}

/* 2-Column Solutions */
.wp-solutions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.wp-solution-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wp-solution-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.wp-solution-box:hover {
    border-color: rgba(233, 249, 42, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.wp-sol-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.wp-sol-content strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 4px;
}

.wp-sol-content span {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    font-weight: 500;
}

/* CTA */
.wp-fix-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.wp-fix-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    gap: 16px;
}

.wp-fix-cta i {
    transition: transform 0.3s;
}

.wp-fix-cta:hover i {
    transform: translateX(4px);
}

/* TRUST BAR */
.wp-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    padding: 40px 24px;
    margin: 0 -24px;
    border-radius: 24px 24px 0 0;
}

.wp-trust-item {
    text-align: center;
    padding: 0 50px;
}

.wp-trust-num {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    letter-spacing: -2px;
}

.wp-trust-txt {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.wp-trust-sep {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.15);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .wp-problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .wp-solutions-row {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .wp-trust-item {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .wp-fix-title {
        font-size: 32px;
    }
    .wp-problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wp-problem-card {
        padding: 20px 12px;
    }
    .wp-solution-wrap {
        padding: 40px 24px;
    }
    .wp-solution-headline {
        font-size: 28px;
    }
    .wp-trust-bar {
        flex-wrap: wrap;
        gap: 30px;
        border-radius: 20px 20px 0 0;
    }
    .wp-trust-sep {
        display: none;
    }
    .wp-trust-item {
        flex: 1 1 40%;
        padding: 0 20px;
    }
    .wp-trust-num {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .wp-fix-section {
        padding-top: 50px;
    }
    .wp-fix-title {
        font-size: 26px;
    }
    .wp-problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .wp-problem-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .wp-problem-text strong {
        font-size: 13px;
    }
    .wp-problem-text span {
        font-size: 11px;
    }
    .wp-solution-headline {
        font-size: 24px;
    }
    .wp-solution-box {
        padding: 16px;
    }
    .wp-fix-cta {
        width: 100%;
        justify-content: center;
    }
    .wp-trust-item {
        flex: 1 1 100%;
    }
}


/* ======================================== */

/* ==================== WORDPRESS 1-CLICK INSTALLER SECTION ==================== */
.wp-installer-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    padding: 80px 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.wp-installer-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.wp-installer-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 131, 47, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.wp-installer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.wp-installer-header {
    text-align: center;
    margin-bottom: 50px;
}

.wp-installer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233, 249, 42, 0.15), rgba(58, 131, 47, 0.08));
    border: 1px solid rgba(233, 249, 42, 0.3);
    color: #3A832F;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.wp-installer-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.wp-gradient-text {
    background: linear-gradient(135deg, #c5d65a 0%, #3A832F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-installer-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Install Card */
.wp-install-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.wp-install-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.1) 0%, transparent 70%);
}

.wp-install-hero-content {
    position: relative;
    z-index: 2;
}

.wp-install-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-install-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.wp-install-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wp-install-hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

.wp-install-hero-list li i {
    color: #E9F92A;
    font-size: 18px;
}

.wp-install-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(233, 249, 42, 0.3);
}

.wp-install-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 249, 42, 0.4);
    gap: 16px;
}

/* Hero Visual - Install Mockup */
.wp-install-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-install-mockup {
    background: #252525;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.wp-mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.wp-mockup-dots {
    display: flex;
    gap: 6px;
}

.wp-mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.wp-mockup-url {
    margin-left: auto;
    font-size: 11px;
    color: #666;
    font-family: 'Courier New', monospace;
}

.wp-mockup-body {
    padding: 30px 20px;
    text-align: center;
}

.wp-mockup-logo {
    font-size: 50px;
    color: #21759b;
    margin-bottom: 16px;
}

.wp-mockup-text {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.wp-mockup-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wp-mockup-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    border-radius: 3px;
    animation: wp-progress-fill 3s ease-in-out infinite;
}

@keyframes wp-progress-fill {
    0% { width: 0; }
    50% { width: 85%; }
    70% { width: 85%; }
    100% { width: 100%; }
}

.wp-mockup-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    padding: 8px;
    border-radius: 8px;
    background: #1a1a1a;
}

.wp-step.active {
    color: #E9F92A;
    background: rgba(233, 249, 42, 0.1);
}

.wp-step i {
    font-size: 11px;
}

/* Floating badges */
.wp-install-float {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: wp-float-y 3s ease-in-out infinite;
}

.wp-float-time {
    top: 10px;
    right: -20px;
    color: #3A832F;
    animation-delay: 0s;
}

.wp-float-done {
    bottom: 20px;
    left: -20px;
    color: #3A832F;
    animation-delay: 1.5s;
}

@keyframes wp-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Subtitle 2 */
.wp-installer-subtitle2 {
    text-align: center;
    margin-bottom: 40px;
}

.wp-installer-subtitle2 h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.wp-installer-subtitle2 p {
    font-size: 15px;
    color: #888;
}

/* Tools Grid */
.wp-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.wp-tool-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E9F92A, #3A832F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wp-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 249, 42, 0.3);
}

.wp-tool-card:hover::before {
    transform: scaleX(1);
}

.wp-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}

.wp-icon-speed { background: rgba(233, 249, 42, 0.15); color: #c5a500; }
.wp-icon-security { background: rgba(58, 131, 47, 0.15); color: #3A832F; }
.wp-icon-seo { background: rgba(66, 133, 244, 0.15); color: #4285f4; }
.wp-icon-backup { background: rgba(52, 168, 83, 0.15); color: #34a853; }
.wp-icon-forms { background: rgba(234, 67, 53, 0.15); color: #ea4335; }
.wp-icon-builder { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }
.wp-icon-shop { background: rgba(230, 126, 34, 0.15); color: #e67e22; }
.wp-icon-ssl { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.wp-icon-php { background: rgba(119, 123, 180, 0.15); color: #777bb4; }
.wp-icon-staging { background: rgba(52, 73, 94, 0.15); color: #34495e; }
.wp-icon-migrate { background: rgba(26, 188, 156, 0.15); color: #1abc9c; }

.wp-tool-core .wp-tool-icon {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-size: 26px;
}

.wp-tool-info strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 4px;
}

.wp-tool-info span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.wp-tool-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #3A832F;
    background: rgba(58, 131, 47, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Comparison Strip */
.wp-compare-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 60px;
}

.wp-compare-item {
    padding: 40px;
}

.wp-compare-before {
    background: #fafafa;
}

.wp-compare-after {
    background: linear-gradient(135deg, rgba(233, 249, 42, 0.05), rgba(58, 131, 47, 0.05));
}

.wp-compare-label {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-compare-before .wp-compare-label {
    color: #888;
}

.wp-compare-after .wp-compare-label {
    background: linear-gradient(135deg, #c5d65a 0%, #3A832F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-compare-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    font-weight: 500;
}

.wp-compare-line i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.wp-compare-before .wp-compare-line i {
    color: #ff4444;
}

.wp-compare-after .wp-compare-line i {
    color: #3A832F;
}

.wp-compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-size: 14px;
    font-weight: 900;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Bottom CTA */
.wp-installer-cta {
    text-align: center;
}

.wp-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.wp-cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.08) 0%, transparent 70%);
}

.wp-cta-text {
    position: relative;
    z-index: 2;
    text-align: left;
}

.wp-cta-text h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.wp-cta-text p {
    font-size: 15px;
    color: #aaa;
}

.wp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(233, 249, 42, 0.3);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.wp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 249, 42, 0.4);
    gap: 16px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .wp-install-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .wp-install-hero-list {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    .wp-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .wp-compare-strip {
        grid-template-columns: 1fr;
    }
    .wp-compare-vs {
        padding: 16px;
    }
    .wp-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .wp-cta-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wp-installer-title {
        font-size: 32px;
    }
    .wp-install-hero {
        padding: 32px 24px;
    }
    .wp-install-hero-title {
        font-size: 26px;
    }
    .wp-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wp-tool-card {
        padding: 20px 12px;
    }
    .wp-compare-item {
        padding: 30px 24px;
    }
    .wp-cta-text h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .wp-installer-section {
        padding: 50px 0;
    }
    .wp-installer-title {
        font-size: 26px;
    }
    .wp-install-hero-list li {
        font-size: 14px;
    }
    .wp-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-tool-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .wp-compare-item {
        padding: 24px 16px;
    }
    .wp-compare-line {
        font-size: 13px;
    }
    .wp-cta-box {
        padding: 32px 24px;
    }
    .wp-cta-text h3 {
        font-size: 22px;
    }
}


/* ======================================== */

/* ==================== COMPARISON SECTION ==================== */
.hp-compare-section {
    width: 100%;
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hp-compare-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(233, 249, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hp-compare-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.hp-compare-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(233, 249, 42, 0.3);
    background: linear-gradient(135deg, rgba(233,249,42,0.12), rgba(58,131,47,0.06));
    color: #3A832F;
}

.hp-compare-header h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.hp-gradient-text {
    background: linear-gradient(#d0de25, #3A832F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-compare-header p {
    font-size: 1rem;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== DESKTOP TABLE ==================== */
.hp-compare-desktop {
    display: block;
}

.hp-compare-mobile {
    display: none;
}

.hp-compare-table-wrap {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.hp-compare-table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Headers */
.hp-compare-table thead th {
    padding: 24px 20px;
    text-align: left;
    vertical-align: middle;
}

.hp-col-feature {
    width: 22%;
    background: #fafafa;
    border-right: 1px solid #f0f0f0;
}

.hp-col-them {
    width: 39%;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border-right: 1px solid #f0f0f0;
}

.hp-col-us {
    width: 39%;
    background: linear-gradient(135deg, rgba(233,249,42,0.08) 0%, #fff 100%);
}

.hp-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hp-icon-them {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.25);
}

.hp-icon-us {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    box-shadow: 0 4px 14px rgba(233, 249, 42, 0.3);
}

.hp-header-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.hp-header-sub {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Table Body */
.hp-compare-table tbody tr {
    border-top: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.hp-compare-table tbody tr:hover {
    background: rgba(233, 249, 42, 0.02);
}

.hp-compare-table tbody td {
    padding: 20px;
    vertical-align: top;
}

.hp-feature-name {
    background: #fafafa;
    border-right: 1px solid #f0f0f0;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-feature-name i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #666;
    flex-shrink: 0;
}

.hp-cell-bad {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border-right: 1px solid #f0f0f0;
}

.hp-cell-good {
    background: linear-gradient(135deg, rgba(233,249,42,0.04) 0%, #fff 100%);
}

.hp-cell-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hp-x-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.hp-check-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(233, 249, 42, 0.25);
}

.hp-cell-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: left;
}

.hp-cell-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* ==================== MOBILE CARDS ==================== */
.hp-compare-mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.hp-mobile-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.hp-mobile-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(233, 249, 42, 0.3);
}

/* Top - Bad */
.hp-mobile-top {
    padding: 24px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
}

.hp-mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hp-badge-bad {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.hp-badge-good {
    background: linear-gradient(135deg, rgba(233,249,42,0.15) 0%, rgba(58,131,47,0.08) 100%);
    color: #3A832F;
    border: 1px solid rgba(233, 249, 42, 0.3);
}

.hp-mobile-top h4,
.hp-mobile-bottom h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hp-mobile-top p,
.hp-mobile-bottom p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hp-mobile-top p strong,
.hp-mobile-bottom p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.hp-mobile-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hp-tag-red {
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.hp-tag-green {
    background: linear-gradient(135deg, rgba(233,249,42,0.12) 0%, rgba(58,131,47,0.06) 100%);
    color: #3A832F;
    border: 1px solid rgba(233, 249, 42, 0.25);
}

/* Divider */
.hp-mobile-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: #fafafa;
    border-top: 1px dashed #e5e5e5;
    border-bottom: 1px dashed #e5e5e5;
}

.hp-divider-arrow {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.7rem;
    box-shadow: 0 4px 12px rgba(233, 249, 42, 0.3);
}

.hp-divider-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom - Good */
.hp-mobile-bottom {
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(233,249,42,0.04) 0%, #fff 100%);
}

/* ==================== CTA ==================== */
.hp-compare-cta {
    margin-top: 3rem;
}

.hp-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 249, 42, 0.15);
}

.hp-cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hp-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.hp-cta-gift {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(233, 249, 42, 0.25);
}

.hp-cta-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.hp-cta-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.hp-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(233, 249, 42, 0.3);
    white-space: nowrap;
}

.hp-cta-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 249, 42, 0.4);
    gap: 14px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hp-compare-header h3 {
        font-size: 2rem;
    }
    .hp-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
    .hp-cta-left {
        flex-direction: column;
    }
    .hp-cta-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hp-compare-section {
        padding: 3rem 1rem;
    }
    .hp-compare-header h3 {
        font-size: 1.7rem;
    }
    .hp-compare-header p {
        font-size: 0.9rem;
    }
    
    /* Switch to mobile cards */
    .hp-compare-desktop {
        display: none;
    }
    .hp-compare-mobile {
        display: flex;
    }
    
    .hp-mobile-card {
        border-radius: 20px;
    }
    .hp-mobile-top,
    .hp-mobile-bottom {
        padding: 20px 18px;
    }
    .hp-mobile-top h4,
    .hp-mobile-bottom h4 {
        font-size: 1rem;
    }
    .hp-mobile-top p,
    .hp-mobile-bottom p {
        font-size: 0.85rem;
    }
    
    .hp-cta-box {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .hp-cta-gift {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    .hp-cta-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hp-compare-header h3 {
        font-size: 1.5rem;
    }
    .hp-tag {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    .hp-mobile-card {
        border-radius: 16px;
    }
    .hp-mobile-top,
    .hp-mobile-bottom {
        padding: 18px 16px;
    }
    .hp-mobile-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .hp-mobile-tag {
        font-size: 0.7rem;
    }
    .hp-cta-box {
        padding: 20px 16px;
    }
    .hp-cta-action {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* ======================================== */

    /* ========== CPANEL FEATURES SECTION ========== */
    .cpanel-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
        padding: 80px 0;
    }

    .cpanel-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(233, 249, 42, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .cpanel-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(58, 131, 47, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .mw-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }

    /* Header */
    .cpanel-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .cpanel-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
        color: var(--text-dark);
        font-weight: 600;
        font-size: 13px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .cpanel-badge svg {
        width: 16px;
        height: 16px;
    }

    .cpanel-title {
        font-size: clamp(32px, 5vw, 35px);
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .cpanel-title span {
        background: linear-gradient(#d0de25, #3A832F);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cpanel-subtitle {
        font-size: 16px;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Main Grid Layout */
    .cpanel-grid {
        display: grid;
        grid-template-columns: 1.1fr 1.3fr;
        gap: 80px;
        align-items: center;
    }

    /* Left Content */
    .cpanel-content {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .cpanel-heading {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .cpanel-heading span {
        color: var(--accent-2);
    }

    .cpanel-desc {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* Feature List */
    .cpanel-features {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cpanel-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 16px;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid rgba(58, 131, 47, 0.1);
        transition: all 0.3s ease;
    }

    .cpanel-feature:hover {
        border-color: var(--accent-2);
        transform: translateX(6px);
        box-shadow: 0 4px 20px rgba(58, 131, 47, 0.08);
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: linear-gradient(135deg, rgba(233, 249, 42, 0.15), rgba(58, 131, 47, 0.15));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-2);
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-text {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.4;
    }

    /* CTA Button */
    .cpanel-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
        color: var(--text-dark);
        font-weight: 700;
        font-size: 15px;
        padding: 16px 36px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(58, 131, 47, 0.2);
        width: fit-content;
        margin-top: 8px;
    }

    .cpanel-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(58, 131, 47, 0.3);
    }

    .cpanel-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .cpanel-btn:hover svg {
        transform: translateX(4px);
    }

    /* Right Image */
    .cpanel-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cpanel-frame {
        position: relative;
        background: var(--white);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
        width: 100%;
    }

    .cpanel-frame img {
        width: 100%;
        max-width: 680px;
        min-width: 500px;
        height: auto;
        border-radius: 10px;
        display: block;
    }

    /* Decorative elements around image */
    .cpanel-frame::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
        border-radius: 16px;
        opacity: 0.3;
        z-index: -1;
    }

    .cpanel-frame::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: -20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
        border-radius: 12px;
        opacity: 0.2;
        z-index: -1;
    }

    /* Floating badge on image */
    .cpanel-float-badge {
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--white);
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(58, 131, 47, 0.1);
        white-space: nowrap;
    }

    .float-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .float-icon svg {
        width: 16px;
        height: 16px;
        color: var(--text-dark);
    }

    .float-text {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .float-sub {
        font-size: 11px;
        color: var(--text-muted);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .cpanel-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .cpanel-visual {
            order: -1;
        }

        .cpanel-frame img {
            max-width: 100%;
            min-width: unset;
        }
    }

    @media (max-width: 768px) {
        .cpanel-section {
            padding: 60px 0;
        }

        .cpanel-heading {
            font-size: 24px;
        }

        .cpanel-feature {
            padding: 12px 14px;
        }

        .cpanel-float-badge {
            display: none;
        }
    }


/* ======================================== */

/* ==================== FAQ SECTION ==================== */
.hp-faq-section {
    width: 100%;
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.faq-question-text {
    color: #000 !important;
}

.faq-question {
    color: #000 !important;
}

.hp-faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 249, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hp-faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 131, 47, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hp-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.hp-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(233, 249, 42, 0.3);
    background: linear-gradient(135deg, rgba(233,249,42,0.12), rgba(58,131,47,0.06));
    color: #3A832F;
}

.hp-faq-header h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}



.hp-faq-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hp-faq-header p a {
    color: #3A832F;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hp-faq-header p a:hover {
    color: #000;
}

/* ==================== FAQ GRID ==================== */
.hp-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* LEFT: Image */
.hp-faq-left {
    position: sticky;
    top: 100px;
}

.hp-faq-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.hp-faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WhatsApp Float */
.hp-faq-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hp-faq-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.hp-float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.hp-float-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.hp-float-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Trust Pills */
.hp-faq-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.hp-trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.hp-trust-pill i {
    color: #3A832F;
    font-size: 1rem;
}

/* ==================== RIGHT: ACCORDION ==================== */
.hp-faq-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FAQ Item */
.hp-faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hp-faq-item:hover {
    border-color: rgba(233, 249, 42, 0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hp-faq-item.active {
    border-color: rgba(233, 249, 42, 0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Question Button */
.hp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.hp-faq-qicon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.hp-faq-qtext {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    padding-right: 20px;
}

.hp-faq-arrow {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #888;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hp-faq-item.active .hp-faq-arrow {
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    color: #000;
    transform: rotate(180deg);
}

/* Answer */
.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-faq-ans-inner {
    padding: 0 20px 20px 66px;
}

.hp-faq-ans-inner p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hp-faq-ans-inner p:last-child {
    margin-bottom: 0;
}

.hp-faq-ans-inner strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Lists */
.hp-faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.hp-faq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.hp-faq-list li i {
    color: #3A832F;
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.hp-faq-ordered {
    list-style: none;
    counter-reset: faq-counter;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}

.hp-faq-ordered li {
    counter-increment: faq-counter;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.hp-faq-ordered li::before {
    content: counter(faq-counter);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #E9F92A 0%, #3A832F 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hp-faq-grid {
       
        gap: 32px;
    }
    .hp-faq-header h3 {
        font-size: 2rem;
    }
    .hp-faq-question {
        padding: 16px 18px;
    }
    .hp-faq-ans-inner {
        padding: 0 18px 18px 60px;
    }
}

@media (max-width: 768px) {
    .hp-faq-section {
        padding: 3rem 1rem;
    }
    .hp-faq-header h3 {
        font-size: 1.7rem;
    }
    .hp-faq-header p {
        font-size: 0.9rem;
    }
    
    /* Stack image on top */
    .hp-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hp-faq-left {
       display: none;
    }
    
    .hp-faq-visual {
        aspect-ratio: 16/10;
        border-radius: 20px;
    }
    
    .hp-faq-float {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 14px;
    }
    
    .hp-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hp-float-title {
        font-size: 0.9rem;
    }
    
    .hp-faq-trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hp-trust-pill {
        flex: 1 1 40%;
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .hp-faq-question {
        padding: 16px;
        gap: 12px;
    }
    
    .hp-faq-qicon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .hp-faq-qtext {
        font-size: 0.9rem;
        padding-right: 10px;
    }
    
    .hp-faq-ans-inner {
        padding: 0 16px 16px 56px;
    }
    
    .hp-faq-ans-inner p,
    .hp-faq-list li,
    .hp-faq-ordered li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hp-faq-header h3 {
        font-size: 1.5rem;
    }
    .hp-tag {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    
    .hp-faq-visual {
        border-radius: 16px;
    }
    
    .hp-faq-float {
        padding: 12px;
        gap: 10px;
    }
    
    .hp-float-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .hp-float-title {
        font-size: 0.85rem;
    }
    
    .hp-float-desc {
        font-size: 0.75rem;
    }
    
    .hp-trust-pill {
        flex: 1 1 100%;
        padding: 10px 14px;
    }
    
    .hp-faq-question {
        padding: 14px;
        gap: 10px;
    }
    
    .hp-faq-qtext {
        font-size: 0.85rem;
    }
    
    .hp-faq-arrow {
        width: 24px;
        height: 24px;
    }
    
    .hp-faq-ans-inner {
        padding: 0 14px 14px 48px;
    }
    
    .hp-faq-ans-inner p,
    .hp-faq-list li,
    .hp-faq-ordered li {
        font-size: 0.82rem;
        line-height: 1.6;
    }
}

/* ============================================
   TUTORIALS SECTION — TOPICAL AUTHORITY
   ============================================ */
.hp-tutorials-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hp-tutorials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(233, 249, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hp-tutorials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hp-tutorials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.hp-tutorials-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--hp-black);
  line-height: 1.2;
  margin: 0 0 14px;
}

.hp-tutorials-header h2 .hp-gradient-text {
  background: var(--hp-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-tutorials-header p {
  font-size: 16px;
  color: var(--hp-gray);
  line-height: 1.7;
  margin: 0;
}

/* Grid */
.hp-tutorials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  
}

/* Card */
.hp-tutorial-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
      border-radius:32px;
}

.hp-tutorial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hp-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.hp-tutorial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
  border-color: rgba(197, 214, 90, 0.3);
}

.hp-tutorial-card:hover::before {
  transform: scaleX(1);
}

.hp-tutorial-card.hp-tutorial-all {
  background: linear-gradient(135deg, rgba(233,249,42,0.08), rgba(58,131,47,0.04));
  border: 2px dashed rgba(197, 214, 90, 0.4);
}

.hp-tutorial-card.hp-tutorial-all:hover {
  background: linear-gradient(135deg, rgba(233,249,42,0.12), rgba(58,131,47,0.06));
  border-color: var(--hp-primary);
}

/* Visual */
.hp-tutorial-visual {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-tutorial-icon {
  width: 52px;
  height: 52px;
  background: var(--hp-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--hp-black);
  box-shadow: 0 4px 14px rgba(233, 249, 42, 0.25);
}

.hp-tutorial-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(197, 214, 90, 0.12);
  color: var(--hp-dark);
  border: 1px solid rgba(197, 214, 90, 0.2);
}

/* Content */
.hp-tutorial-content {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-tutorial-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-black);
  margin: 0 0 10px;
  line-height: 1.3;
}

.hp-tutorial-content p {
  font-size: 14px;
  color: var(--hp-gray);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}

/* Meta */
.hp-tutorial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.hp-tutorial-meta span:first-child {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-tutorial-meta span:first-child i {
  color: var(--hp-dark);
  font-size: 11px;
}

.hp-tutorial-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.hp-tutorial-card:hover .hp-tutorial-cta {
  gap: 10px;
  color: var(--hp-darker);
}

/* Context paragraph */
.hp-tutorials-context {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 32px;
  background: rgba(197, 214, 90, 0.06);
  border: 1px solid rgba(197, 214, 90, 0.15);
  border-radius: var(--hp-radius);
}

.hp-tutorials-context p {
  font-size: 15px;
  color: var(--hp-gray);
  line-height: 1.8;
  margin: 0;
}

.hp-tutorials-context p strong {
  color: var(--hp-black);
}

.hp-tutorials-context a {
  color: var(--hp-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hp-tutorials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-tutorials-section {
    padding: 60px 0;
  }
  .hp-tutorials-header h2 {
    font-size: 28px;
  }
  .hp-tutorials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hp-tutorials-context {
    padding: 20px;
  }
}




/* ============================================
   REVIEWS SECTION — REAL REVIEW SCHEMA
   ============================================ */
.hp-reviews-section {
  background: var(--hp-white);
  padding: 80px 0;
  position: relative;
}
.hp-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(197, 214, 90, 0.12), rgba(90, 143, 58, 0.06));
    border: 1px solid rgba(197, 214, 90, 0.25);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #3A832F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hp-reviews-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 249, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hp-reviews-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hp-reviews-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.hp-reviews-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--hp-black);
  line-height: 1.2;
  margin: 0 0 14px;
}

.hp-reviews-header h2 .hp-gradient-text {
  background: var(--hp-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-reviews-header p {
  font-size: 16px;
  color: var(--hp-gray);
  line-height: 1.7;
  margin: 0;
}

/* Grid */
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Review Card */
.hp-review-card {
  background: var(--hp-light);
  border-radius: var(--hp-radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
  position: relative;
  border-radius: 32px;
}

.hp-review-card:hover {
  background: var(--hp-white);
  box-shadow: var(--hp-shadow-md);
  transform: translateY(-4px);
}

.hp-review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 40px;
  color: rgb(197 214 90);
  line-height: 1;
}

/* Stars */
.hp-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hp-review-stars i {
  color: #4fac0a;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Text */
.hp-review-text {
  font-size: 15px;
  color: var(--hp-gray);
  line-height: 1.8;
  margin: 0 0 20px;
  font-style: italic;
}

/* Author */
.hp-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-review-avatar {
  width: 40px;
  height: 40px;
  background: var(--hp-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--hp-black);
  flex-shrink: 0;
}

.hp-review-info {
  display: flex;
  flex-direction: column;
}

.hp-review-info strong {
  font-size: 14px;
  color: var(--hp-black);
  font-weight: 700;
}

.hp-review-info span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* Footer */
.hp-reviews-footer {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Aggregate Rating */
.hp-aggregate-rating {
  margin-bottom: 24px;
}

.hp-aggregate-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.hp-aggregate-stars i {
  color: #80b22e;
  font-size: 24px;
}

.hp-aggregate-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--hp-black);
  margin-bottom: 4px;
}

.hp-aggregate-score span:first-child {
  background: var(--hp-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-aggregate-count {
  font-size: 14px;
  color: var(--hp-gray);
  font-weight: 500;
}

/* CTA Button */
.hp-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hp-gradient);
  color: var(--hp-black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--hp-shadow-sm);
  transition: all 0.2s;
  margin-bottom: 16px;
}

.hp-reviews-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 214, 90, 0.35);
}

/* Disclaimer */
.hp-reviews-disclaimer {
  font-size: 10px;
  color: #999;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hp-reviews-disclaimer i {
  color: var(--hp-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .hp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-reviews-section {
    padding: 60px 0;
  }
  .hp-reviews-header h2 {
    font-size: 28px;
  }
  .hp-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hp-review-card {
    padding: 24px;
  }
}
