/* ── HERO ── */
.hero p { font-size:17px; color:rgba(255,255,255,.65); max-width:600px; margin:0 auto 40px; line-height:1.7; position:relative; }

/* ── HOW ── */
.how-intro { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px;
    padding:24px 28px; margin-bottom:44px; font-size:14.5px; color:rgba(255,255,255,.65); line-height:1.8; }
.how-intro strong { color:var(--green); }

/* ── PRICING ── */
.pricing-section { padding:80px 24px; max-width:1160px; margin:0 auto; }
.pricing-header { text-align:center; margin-bottom:48px; }
.pricing-header h2 { font-family:'Unbounded',sans-serif; font-size:clamp(22px,3.5vw,38px); font-weight:900; color:var(--navy); margin-bottom:12px; }
.pricing-header p { color:var(--muted); font-size:16px; max-width:500px; margin:0 auto; }
.toggle-wrap { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:48px; }
.toggle-label { font-size:15px; font-weight:600; color:var(--muted); cursor:pointer; transition:color .2s; }
.toggle-label.active { color:var(--navy); }
.badge-save { background:var(--green); color:white; font-size:11px; font-weight:700; padding:2px 8px; border-radius:100px; letter-spacing:.5px; }
.toggle-switch { width:52px; height:28px; background:var(--gray2); border-radius:100px; position:relative; cursor:pointer; transition:background .25s; }
.toggle-switch.on { background:var(--navy); }
.toggle-knob { position:absolute; top:3px; left:3px; width:22px; height:22px; background:white; border-radius:50%; transition:transform .25s cubic-bezier(.4,0,.2,1); box-shadow:0 2px 6px rgba(0,0,0,.18); }
.toggle-switch.on .toggle-knob { transform:translateX(24px); }
.cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; align-items:start; }
.card { background:white; border-radius:20px; padding:36px 32px 32px; border:2px solid var(--border); box-shadow:var(--shadow); transition:transform .25s, box-shadow .25s; position:relative; overflow:hidden; }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.card.featured { border-color:var(--blue); background:var(--navy); color:white; }
.card.featured .card-desc,.card.featured .price-note,.card.featured .feature-item { color:rgba(255,255,255,.55); }
.card.featured .feature-item.has { color:rgba(255,255,255,.9); }
.card.featured .card-name { color:rgba(255,255,255,.7); }
.card.featured .price-amount { color:white; }
.card.featured .divider { background:rgba(255,255,255,.1); }
.card.featured .features-title,.card.featured .pros-cons-title { color:rgba(255,255,255,.4); }
.card-ribbon { position:absolute; top:18px; right:-28px; background:var(--green); color:white; font-size:11px; font-weight:700; padding:5px 40px; transform:rotate(40deg); letter-spacing:1px; }
.card-name { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--muted); margin-bottom:8px; }
.card-title { font-family:'Unbounded',sans-serif; font-size:24px; font-weight:900; margin-bottom:10px; }
.card-desc { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:24px; min-height:54px; }
.price-block { margin-bottom:24px; }
.price-amount { font-family:'Unbounded',sans-serif; font-size:38px; font-weight:900; color:var(--navy); line-height:1; }
.price-amount sup { font-size:18px; vertical-align:top; margin-top:8px; display:inline-block; }
.price-period { font-size:13px; color:var(--muted); margin-top:4px; }
.price-note { font-size:12px; color:var(--muted); margin-top:8px; }
.price-annual { display:none; }
body.annual .price-monthly { display:none; }
body.annual .price-annual { display:block; }
.divider { height:1px; background:var(--border); margin:20px 0; }
.features-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:14px; }
.feature-item { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--text); margin-bottom:11px; line-height:1.5; }
.feature-item.no { opacity:.5; }
.feature-item.no .fi-text { text-decoration:line-through; color:var(--muted); }
.feature-check { flex-shrink:0; width:18px; height:18px; margin-top:1px; }

/* pros/cons */
.pros-cons { margin-top:20px; }
.pros-cons-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:12px; }
.pc-row { display:flex; align-items:flex-start; gap:8px; font-size:12.5px; line-height:1.55; margin-bottom:9px; }
.pc-icon { flex-shrink:0; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:900; margin-top:1px; }
.pc-icon.pro { background:rgba(0,201,141,.15); color:var(--green-dark); }
.pc-icon.con { background:rgba(232,64,64,.1); color:var(--red); }
.pc-row.pro-row .pc-text { color:#1a5c40; }
.pc-row.con-row .pc-text { color:#8c3a3a; }
.card.featured .pc-row.pro-row .pc-text { color:rgba(0,220,140,.85); }
.card.featured .pc-row.con-row .pc-text { color:rgba(255,150,150,.75); }
.pc-monthly { display:flex; }
.pc-annual { display:none; }
body.annual .pc-monthly { display:none; }
body.annual .pc-annual { display:flex; }

.btn { display:block; width:100%; padding:16px; border-radius:12px; font-family:'Manrope',sans-serif; font-size:15px; font-weight:700; text-align:center; cursor:pointer; border:none; text-decoration:none; margin-top:28px; transition:transform .15s,box-shadow .15s,opacity .15s; }
.btn:hover { transform:translateY(-2px); opacity:.9; }
.btn-primary { background:linear-gradient(135deg,var(--blue-light),var(--blue)); color:white; box-shadow:0 6px 24px rgba(18,85,204,.35); }
.btn-green { background:linear-gradient(135deg,var(--green),var(--green-dark)); color:white; box-shadow:0 6px 24px rgba(0,201,141,.35); }
.btn-outline { background:transparent; color:var(--navy); border:2px solid var(--border); }
.btn-outline:hover { border-color:var(--blue); color:var(--blue); }

/* ── MARKETING ── */
.marketing-section { background:linear-gradient(135deg,var(--navy) 0%,#0d1e3a 100%); padding:72px 24px; position:relative; overflow:hidden; }
.marketing-section::before { content:''; position:absolute; right:-120px; top:-80px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(18,85,204,.2) 0%,transparent 70%); }
.marketing-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media(max-width:768px){ .marketing-inner,.buyers-db-inner{ grid-template-columns:1fr; gap:40px; } .step:not(:last-child)::after{ display:none; } }
.marketing-left .section-label { text-align:left; }
.marketing-left h2 { font-family:'Unbounded',sans-serif; font-size:clamp(20px,3vw,30px); font-weight:900; color:white; line-height:1.3; margin-bottom:16px; }
.marketing-left p { color:rgba(255,255,255,.55); font-size:15px; line-height:1.7; margin-bottom:28px; }
.price-pill { display:inline-block; background:rgba(245,166,35,.15); border:1px solid rgba(245,166,35,.4); color:var(--gold); font-family:'Unbounded',sans-serif; font-size:22px; font-weight:900; padding:10px 24px; border-radius:12px; margin-bottom:28px; }
.price-pill span { font-size:13px; font-family:'Manrope',sans-serif; font-weight:500; display:block; color:rgba(255,255,255,.4); margin-top:2px; }
@media(max-width:480px){ .mkt-features{ grid-template-columns:1fr; } }

/* ── CASES ── */
.cases-section { padding:80px 24px; background:white; }
.cases-inner { max-width:1060px; margin:0 auto; }
.cases-header { text-align:center; margin-bottom:44px; }
.cases-header h2 { font-family:'Unbounded',sans-serif; font-size:clamp(20px,3.5vw,34px); font-weight:900; color:var(--navy); margin-bottom:10px; }
.cases-header p { color:var(--muted); font-size:15px; max-width:520px; margin:0 auto; }
.cases-tabs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom:32px; }
.case-tab { padding:10px 22px; border-radius:100px; font-size:13.5px; font-weight:700; cursor:pointer; border:2px solid var(--border); color:var(--muted); background:white; transition:all .2s; }
.case-tab.active { background:var(--navy); color:white; border-color:var(--navy); }
.case-panel { display:none; }
.case-panel.active { display:block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.mockup-wrap { background:var(--gray); border-radius:20px; overflow:hidden; border:2px solid var(--border); box-shadow:var(--shadow); }
.mockup-bar { background:var(--navy); padding:12px 20px; display:flex; align-items:center; gap:8px; }
.mockup-dot { width:10px; height:10px; border-radius:50%; }
.mockup-url { flex:1; background:rgba(255,255,255,.08); border-radius:6px; padding:5px 14px; font-size:12px; color:rgba(255,255,255,.45); margin-left:8px; }
.mockup-body { padding:24px; }
.shop-header { background:white; border-radius:12px; padding:16px 20px; margin-bottom:14px; display:flex; align-items:center; gap:16px; box-shadow:0 2px 12px rgba(0,0,0,.06); flex-wrap:wrap; }
.shop-logo { width:52px; height:52px; background:linear-gradient(135deg,var(--blue),var(--blue-light)); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.shop-info h3 { font-size:15px; font-weight:700; color:var(--navy); }
.shop-info p { font-size:12px; color:var(--muted); margin-top:2px; }
.shop-nav { background:white; border-radius:12px; padding:12px 20px; margin-bottom:14px; display:flex; gap:20px; box-shadow:0 2px 12px rgba(0,0,0,.06); flex-wrap:wrap; }
.shop-nav-item { font-size:13px; font-weight:600; color:var(--muted); cursor:pointer; padding-bottom:2px; }
.shop-nav-item.active { color:var(--blue); border-bottom:2px solid var(--blue); }
.shop-cats { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:10px; }
.shop-cat { background:white; border-radius:10px; padding:12px 8px; text-align:center; font-size:11px; font-weight:700; color:var(--navy); box-shadow:0 2px 8px rgba(0,0,0,.05); }
.shop-cat span { font-size:24px; display:block; margin-bottom:6px; }
.product-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media(max-width:500px){ .product-grid{ grid-template-columns:1fr; } }
.product-img { background:linear-gradient(135deg,#e8eff8,#d0dcf0); border-radius:14px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:64px; }
.product-info { background:white; border-radius:14px; padding:20px; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.product-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:14px; line-height:1.4; }
.price-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid var(--border); }
.price-row:last-of-type { border-bottom:none; }
.price-row .pl { font-size:12px; color:var(--muted); }
.price-row .pv { font-size:14px; font-weight:700; color:var(--navy); }
.price-row .pv.main { color:var(--blue); font-size:16px; }
.add-btn { width:100%; margin-top:14px; padding:12px; background:linear-gradient(135deg,var(--blue-light),var(--blue)); color:white; border:none; border-radius:10px; font-size:14px; font-weight:700; cursor:pointer; }
.crm-layout { display:grid; grid-template-columns:190px 1fr; gap:14px; }
@media(max-width:560px){ .crm-layout{ grid-template-columns:1fr; } }
.crm-sidebar { background:white; border-radius:12px; padding:14px; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.crm-logo { display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.crm-logo .lg { width:30px; height:30px; background:var(--navy); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:13px; }
.crm-logo span { font-size:12px; font-weight:700; color:var(--navy); }
.crm-menu-item { padding:8px 10px; border-radius:8px; font-size:11.5px; font-weight:600; color:var(--muted); cursor:pointer; display:flex; align-items:center; gap:7px; }
.crm-menu-item.active { background:var(--gray); color:var(--navy); }
.crm-badge { background:var(--blue); color:white; font-size:10px; font-weight:700; padding:1px 6px; border-radius:100px; margin-left:auto; }
.crm-badge.green { background:var(--green); }
.crm-main { background:white; border-radius:12px; padding:16px; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.crm-leads-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; flex-wrap:wrap; gap:8px; }
.crm-leads-header h4 { font-size:13px; font-weight:700; color:var(--navy); }
.crm-total { font-size:12px; color:var(--muted); }
.lead-card { border:1px solid var(--border); border-radius:10px; padding:12px 14px; margin-bottom:10px; display:flex; align-items:flex-start; gap:12px; }
.lead-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--blue-light),var(--blue)); display:flex; align-items:center; justify-content:center; color:white; font-size:14px; font-weight:700; flex-shrink:0; }
.lead-info { flex:1; min-width:0; }
.lead-name { font-size:13px; font-weight:700; color:var(--navy); }
.lead-meta { font-size:11px; color:var(--muted); margin-top:2px; line-height:1.4; }
.lead-status { font-size:10px; font-weight:700; padding:3px 8px; border-radius:100px; flex-shrink:0; }
.status-new { background:rgba(0,201,141,.12); color:var(--green-dark); }
.status-active { background:rgba(18,85,204,.1); color:var(--blue); }

/* ── COMPARE ── */
.compare-section { padding:80px 24px; max-width:900px; margin:0 auto; }
.compare-section h2 { font-family:'Unbounded',sans-serif; font-size:clamp(20px,3vw,32px); font-weight:900; text-align:center; margin-bottom:40px; color:var(--navy); }

.cmp-table-wrap { display: block; }
.cmp-cards { display: none; }

@media (max-width: 768px) {
    .cmp-table-wrap { display: none; }

    .cmp-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 8px;
    }

    .cmp-cards::-webkit-scrollbar { display: none; }
    .cmp-cards { scrollbar-width: none; }

    .cmp-card {
        flex: unset;
        scroll-snap-align: start;
        background: white;
        border-radius: 16px;
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .cmp-card-head {
        background: var(--navy);
        color: white;
        padding: 16px 20px;
        font-family: 'Unbounded', sans-serif;
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .cmp-card-head::after {
        content: '›';
        font-size: 20px;
        transition: transform 0.3s;
        display: inline-block;
    }

    .cmp-card.open .cmp-card-head::after {
        transform: rotate(90deg);
    }

    .cmp-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .cmp-card.open .cmp-card-body {
        max-height: 600px;
    }

    .cmp-card ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .cmp-card ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        font-size: 13px;
        border-bottom: 1px solid var(--border);
    }

    .cmp-card ul li:last-child { border-bottom: none; }
    .cmp-card ul li:nth-child(even) { background: var(--gray); }
}

.left-logo-text-img {
    margin-left: 10px;
}

table.cmp { width:100%; border-collapse:separate; border-spacing:0; background:white; border-radius:16px; overflow:hidden; box-shadow:var(--shadow); font-size:14px; }
table.cmp th { background:var(--navy); color:white; padding:18px 20px; font-family:'Unbounded',sans-serif; font-size:13px; font-weight:700; text-align:left; }
table.cmp th:not(:first-child) { text-align:center; }
table.cmp tr:nth-child(even) td { background:var(--gray); }
table.cmp td { padding:14px 20px; border-bottom:1px solid var(--border); vertical-align:middle; }
table.cmp td:not(:first-child) { text-align:center; }
table.cmp tr:last-child td { border-bottom:none; }
.cmp-yes { color:var(--green-dark); font-size:18px; font-weight:700; }
.cmp-no { color:#ccc; font-size:18px; }
.cmp-val { font-weight:700; color:var(--navy); }
.cmp-head-start { background:#1a3060 !important; }
.cmp-head-max { background:var(--blue) !important; }

/* ── CTA ── */
