﻿:root {
        --color-primary:#059669; --color-primary-hover:rgba(16,185,129,0.15);
        --color-white:#fff; --color-bg-light:#f8fafc; --color-bg-hover:#f1f5f9;
        --color-text-dark:#1e293b; --color-text-medium:#475569; --color-text-muted:#64748b;
        --color-text-light:#94a3b8; --color-border:#e2e8f0; --color-success:#10b981;
        --shadow-sm:0 1px 3px rgba(0,0,0,0.05); --shadow-green:0 4px 14px rgba(5,150,105,0.2);
        --shadow-md:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
        --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);
        --shadow-xl:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);
        --border-radius:12px; --border-radius-sm:8px;
    }
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    body{font-family:'DM Sans',sans-serif;background:#f8fafc;color:var(--color-text-dark)}

    /* â”€â”€ Breadcrumb â”€â”€ */
    .cmp-breadcrumb {
        background: var(--color-white); border-bottom: 1px solid var(--color-border);
        padding: 0.875rem 2rem;
    }
    .cmp-breadcrumb-inner {
        max-width: 1100px; margin: 0 auto;
        display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
    }
    .cmp-breadcrumb a {
        font-size: 0.8125rem; color: var(--color-text-muted); text-decoration: none;
        font-weight: 500; transition: color 0.2s;
    }
    .cmp-breadcrumb a:hover { color: var(--color-primary); }
    .cmp-breadcrumb-sep { color: var(--color-text-light); font-size: 0.75rem; }
    .cmp-breadcrumb-current { font-size: 0.8125rem; font-weight: 600; color: var(--color-text-dark); }

    /* â”€â”€ Hero â”€â”€ */
    .cmp-hero {
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
        border-bottom: 1px solid var(--color-border);
        padding: 4rem 2rem 3.5rem; text-align: center; position: relative; overflow: hidden;
    }
    .cmp-hero::before {
        content:''; position:absolute; inset:0; pointer-events:none;
        background: radial-gradient(circle at 20% 50%, rgba(5,150,105,0.09) 0%,transparent 55%),
                    radial-gradient(circle at 80% 20%, rgba(16,185,129,0.06) 0%,transparent 50%);
    }
    .cmp-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
    .cmp-eyebrow {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: var(--color-white); border: 1px solid rgba(5,150,105,0.25);
        border-radius: 2rem; padding: 0.4rem 1.1rem;
        font-size: 0.75rem; font-weight: 700; color: var(--color-primary);
        text-transform: uppercase; letter-spacing: 0.07em;
        box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
        animation: slideDown 0.5s ease-out both;
    }
    @keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}
    .cmp-hero h1 {
        font-size: clamp(1.625rem, 3.5vw, 2.5rem); font-weight: 700;
        color: var(--color-text-dark); line-height: 1.25; margin-bottom: 1rem;
        animation: fadeUp 0.6s ease-out 0.15s both;
    }
    .cmp-grad {
        background: linear-gradient(135deg, var(--color-primary), #10b981);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .cmp-hero-sub {
        font-size: 1.0625rem; color: var(--color-text-medium); line-height: 1.7;
        animation: fadeUp 0.6s ease-out 0.3s both;
    }
    @keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
    .cmp-disclaimer {
        display: inline-flex; align-items: center; gap: 0.4rem;
        background: #fffbeb; border: 1px solid rgba(245,158,11,0.3);
        border-radius: var(--border-radius-sm); padding: 0.4rem 0.875rem;
        font-size: 0.75rem; font-weight: 600; color: #92400e;
        margin-top: 1.25rem; animation: fadeUp 0.6s ease-out 0.45s both;
    }

    /* â”€â”€ Layout â”€â”€ */
    .cmp-layout { max-width: 1100px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }
    .cmp-section-eyebrow {
        font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.5rem;
    }
    .cmp-section-title {
        font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 700;
        color: var(--color-text-dark); margin-bottom: 0.5rem;
    }
    .cmp-section-sub { font-size: 0.9375rem; color: var(--color-text-medium); margin-bottom: 2rem; }

    /* â”€â”€ Comparison table â”€â”€ */
    .cmp-table-wrap {
        background: var(--color-white); border: 1.5px solid var(--color-border);
        border-radius: var(--border-radius); overflow: hidden;
        box-shadow: var(--shadow-md); margin-bottom: 4rem;
    }
    .cmp-table { width: 100%; border-collapse: collapse; }

    /* Header row */
    .cmp-table thead tr { background: var(--color-bg-light); }
    .cmp-th-empty { width: 38%; padding: 1.25rem 1.5rem; }
    .cmp-th {
        padding: 1.25rem 1rem; text-align: center; vertical-align: middle;
        border-left: 1px solid var(--color-border);
    }
    .cmp-th-mykeynest { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); }
    .cmp-th-logo {
        font-size: 0.9375rem; font-weight: 800; color: var(--color-text-dark);
        display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    }
    .cmp-th-logo .cmp-badge-winner {
        font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
        background: linear-gradient(135deg, var(--color-primary), #10b981);
        color: white; padding: 0.15rem 0.5rem; border-radius: 2rem;
    }
    .cmp-th-price {
        font-family: 'Space Mono', monospace; font-size: 1.125rem; font-weight: 700;
        color: var(--color-primary);
    }
    .cmp-th-price-other { color: var(--color-text-dark); }

    /* Body rows */
    .cmp-table tbody tr { border-top: 1px solid var(--color-border); transition: background 0.15s; }
    .cmp-table tbody tr:hover { background: var(--color-bg-light); }
    .cmp-table tbody tr.cmp-row-category {
        background: var(--color-bg-light); border-top: 2px solid var(--color-border);
    }
    .cmp-td-feature {
        padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--color-text-dark); font-weight: 500;
    }
    .cmp-td-feature small { display: block; font-size: 0.75rem; color: var(--color-text-muted); font-weight: 400; margin-top: 0.1rem; }
    .cmp-td-category-label {
        padding: 0.625rem 1.5rem;
        font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: 0.08em; color: var(--color-text-muted);
    }
    .cmp-td-val {
        padding: 1rem; text-align: center; vertical-align: middle;
        border-left: 1px solid var(--color-border); font-size: 0.9rem;
    }
    .cmp-td-mykeynest { background: rgba(5,150,105,0.03); }
    .cmp-yes {
        display: inline-flex; align-items: center; justify-content: center;
        width: 1.75rem; height: 1.75rem;
        background: linear-gradient(135deg, var(--color-primary), #10b981);
        border-radius: 50%; color: white; font-size: 0.7rem; font-weight: 800;
    }
    .cmp-no {
        display: inline-flex; align-items: center; justify-content: center;
        width: 1.75rem; height: 1.75rem;
        background: #fef2f2; border: 1.5px solid #fecaca;
        border-radius: 50%; color: #ef4444; font-size: 0.875rem; font-weight: 700;
    }
    .cmp-partial {
        display: inline-flex; align-items: center; justify-content: center;
        width: 1.75rem; height: 1.75rem;
        background: #fffbeb; border: 1.5px solid #fde68a;
        border-radius: 50%; color: #d97706; font-size: 0.8rem;
    }
    .cmp-val-text { font-size: 0.8125rem; font-weight: 600; color: var(--color-text-medium); }

    /* â”€â”€ Why section â”€â”€ */
    .cmp-why-grid {
        display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem; margin-bottom: 4rem;
    }
    .cmp-why-card {
        background: var(--color-white); border: 1.5px solid var(--color-border);
        border-radius: var(--border-radius); padding: 1.5rem;
        transition: all 0.25s;
    }
    .cmp-why-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .cmp-why-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
    .cmp-why-title { font-size: 0.9375rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 0.4rem; }
    .cmp-why-desc { font-size: 0.8125rem; color: var(--color-text-medium); line-height: 1.6; }

    /* â”€â”€ CTA â”€â”€ */
    .cmp-cta {
        background: linear-gradient(135deg, var(--color-primary) 0%, #10b981 100%);
        border-radius: var(--border-radius); padding: 3rem 2.5rem;
        text-align: center; position: relative; overflow: hidden;
    }
    .cmp-cta::before {
        content:''; position:absolute; top:-50%; right:-5%; width:280px; height:280px;
        background:rgba(255,255,255,0.07); border-radius:50%; pointer-events:none;
    }
    .cmp-cta-title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; color: white; margin-bottom: 0.625rem; }
    .cmp-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; }
    .cmp-cta-btn {
        display: inline-flex; align-items: center; gap: 0.5rem;
        padding: 0.875rem 2rem; background: white; color: var(--color-primary);
        border-radius: var(--border-radius-sm); font-weight: 700; text-decoration: none;
        box-shadow: var(--shadow-lg); transition: all 0.25s;
    }
    .cmp-cta-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

    @media (max-width: 640px) {
        .cmp-table-wrap { overflow-x: auto; }
        .cmp-hero { padding: 3rem 1.25rem 2.5rem; }
        .cmp-layout { padding: 2rem 1.25rem 4rem; }
        .cmp-td-feature, .cmp-th-empty { min-width: 160px; }
    }
