@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #0060fe;
    --primary-hover: #004ecc;
    --accent-emerald: #16a34a;
    --accent-gold: #d97706;

    /* Clean 2D Light Theme Variables */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #fcfcfc;

    --border-light: #e2e8f0;
    --border-active: #0060fe;

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =====================================================
   CLEAN FLAT 2D WRAPPER (No Dark Glowing Spheres / Gradients)
===================================================== */
.ssl-redesign-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-page);
    padding-bottom: 90px;
}

/* Flat Simple Badge (Zero 3D shadow or animations) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background-color: #16a34a;
    border-radius: 50%;
}

/* Clean Flat Title (No multi-color cyberpunk gradients) */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-bottom: 22px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #0060fe 0%, #00a2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Action Button - Pure 2D Flat Style (Zero Box-Shadows or Bevels) */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary-glow:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary-glow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.btn-primary-glow:hover svg {
    transform: translateX(4px);
}

/* Hero Feature Pills (Flat 2D UI) */
.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 96, 254, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 96, 254, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 96, 254, 0.08);
}

/* =====================================================
   HERO VISUAL - 2D FLAT BROWSER PREVIEW (ZERO 3D/LOTTIE)
===================================================== */
.hero-visual {
    flex: 1;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.flat-security-preview {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 96, 254, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 24px 48px -12px rgba(0, 96, 254, 0.14),
        0 8px 24px -4px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.flat-security-preview:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 32px 64px -12px rgba(0, 96, 254, 0.22),
        0 12px 32px -6px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(0, 96, 254, 0.3);
}

.browser-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.browser-actions {
    display: flex;
    gap: 6px;
}

.action-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red-dot {
    background: #fca5a5;
}

.yellow-dot {
    background: #fde047;
}

.green-dot {
    background: #86efac;
}

.url-input {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
}

.url-lock-icon {
    font-size: 13px;
}

.url-protocol {
    color: #16a34a;
    font-weight: 700;
}

.browser-content {
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flat-badge-icon {
    font-size: 40px;
    margin-bottom: 4px;
}

.preview-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.preview-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 380px;
}

.preview-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.tag-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
}

/* =====================================================
   SSL PLANS & PRICING SECTION (CLEAN LIGHT THEME)
===================================================== */
.plans-section {
    position: relative;
    padding: 90px 0;
    background: var(--bg-page);
    z-index: 2;
}

.plans-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0369a1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Interactive Filter Tabs - 2D Minimalist */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs-pill-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    background: #e2e8f0;
    padding: 6px;
    border-radius: 999px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: #ffffff;
    font-weight: 700;
    box-shadow: none !important;
    transform: none !important;
}

/* Cards Grid Display */
.custom-table {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.custom-table.active-table {
    display: grid;
    animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =====================================================
   PURE FLAT 2D PRICING CARDS (Premium SaaS Look)
===================================================== */
.card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    box-shadow: none !important;
    transform: none !important;
}

.card:hover {
    border-color: var(--primary-blue);
    background: #fafcff;
    box-shadow: none !important;
    transform: none !important;
}

/* Clean Inline Badge */
.tag-most-plpr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #b45309;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.tag-most-plpr::before {
    content: '★';
    color: #d97706;
}

/* Card Header & Shield Emblem (Fixes Broken Icons!) */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ssl-image-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hide broken svg image links completely */
.ssl-image {
    display: none !important;
}

/* Replace with pristine rendered security shield emblem */
.ssl-image-wrap::after {
    content: '🛡️';
    font-size: 24px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* Pricing Section (Fixes Broken Price-Tag Icon!) */
.pricing {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
    line-height: 1;
}

/* Hide broken price tag icon completely */
.price-image {
    display: none !important;
}

.card-price-span,
.period {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-left: 2px;
}

/* Card Body & Feature Checklist */
.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-trust-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}

.card-trust-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.card-plan-info {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}

/* Flat Premium CTA Button */
.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    box-shadow: none !important;
    transform: none !important;
    transition: all 0.25s ease;
    margin-bottom: 16px;
}

.card:hover .order-btn,
.order-btn:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.order-btn:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.order-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.2s ease;
}

.order-btn:hover::after {
    transform: translateX(4px);
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
    padding-top: 4px;
}

.product-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.shield-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

/* Footer note */
.se-footer {
    margin-top: 60px;
    text-align: center;
}

.tax-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
}

.tax-pill-icon {
    color: var(--accent-gold);
    font-size: 16px;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .custom-table {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 35px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15.5px;
    }

    .section-title {
        font-size: 28px;
    }

    .tabs-pill-box {
        border-radius: 16px;
        padding: 8px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 13.5px;
        width: 100%;
        text-align: center;
    }

    .custom-table {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}/* Light Header Navigation styles for this page */
@media (min-width: 993px) {

    .light-header-page .site-header:not(.menu-open) .nav-link,
    .light-header-page .site-header:not(.menu-open) .dd-toggle {
        color: #111 !important;
        font-weight: 600;
    }

    .light-header-page .site-header:not(.menu-open) .dropdown:hover .dd-toggle,
    .light-header-page .site-header:not(.menu-open) .nav-link:hover {
        color: #0d6efd !important;
    }
}

/* Mobile Hamburger icon color */
.light-header-page .site-header:not(.menu-open) .hamburger,
.light-header-page .site-header:not(.menu-open) .hamburger::before,
.light-header-page .site-header:not(.menu-open) .hamburger::after {
    background-color: #111 !important;
}

/* Overrides for SSL Plans in Light Theme */
#ssl-plans .plan { background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }
#ssl-plans .plan:hover { background: #ffffff; border-color: #0d6efd; box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.15), 0 4px 6px -2px rgba(13, 110, 253, 0.1); transform: translateY(-8px); }
#ssl-plans .plan-head { border-bottom: 1px solid #f1f5f9; }
#ssl-plans .plan-name { color: #0f172a !important; }
#ssl-plans .plan-para { color: #64748b !important; }
#ssl-plans .plan-price .price { color: #0f172a !important; }
#ssl-plans .plan-price .price span { color: #64748b !important; }
#ssl-plans .plan-body .list strong { color: #1e293b !important; font-weight: 600; }
