    :root {
        --white: #ffffff;
        --bg: #f7f8fc;
        --bg2: #eef0f8;
        --border: #e2e5f0;
        --border2: #cdd2e8;
        --blue: #2563eb;
        --blue-light: #eff4ff;
        --blue-mid: #dbeafe;
        --blue-dark: #1d4ed8;
        --text: #0f172a;
        --text2: #334155;
        --muted: #64748b;
        --muted2: #94a3b8;
        --green: #16a34a;
        --font-h: 'Plus Jakarta Sans', sans-serif;
        --font-b: 'Manrope', sans-serif;
        --radius: 12px;
        --shadow-sm: 0 1px 3px rgba(15, 23, 42, .07), 0 1px 2px rgba(15, 23, 42, .04);
        --shadow: 0 4px 16px rgba(15, 23, 42, .08), 0 2px 6px rgba(15, 23, 42, .04);
        --shadow-lg: 0 12px 40px rgba(37, 99, 235, .14), 0 4px 12px rgba(15, 23, 42, .06);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--white);
        color: var(--text);
        font-family: var(--font-b);
        font-size: 16px;
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

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

    button {
        font-family: var(--font-b);
        cursor: pointer;
    }

    .container {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ══════════════ NAVBAR ══════════════ */
    nav {
        position: sticky;
        top: 0;
        z-index: 200;
        background: rgba(255, 255, 255, .93);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        gap: 16px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: var(--font-h);
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--text);
        flex-shrink: 0;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        background: var(--blue);
        border-radius: 9px;
        display: grid;
        place-items: center;
    }

    .logo-mark svg {
        width: 17px;
        height: 17px;
        color: #fff;
    }

    .logo span {
        color: var(--blue);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
    }

    .nav-links a {
        padding: 7px 13px;
        border-radius: 8px;
        font-size: .875rem;
        font-weight: 500;
        color: var(--muted);
        transition: color .18s, background .18s;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-links a:hover {
        color: var(--text);
        background: var(--bg);
    }

    .nav-links a svg {
        width: 14px;
        height: 14px;
    }

    /* Dropdown */
    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 8px;
        min-width: 230px;
        z-index: 300;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dd-item {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: .875rem;
        color: var(--text2);
        transition: background .15s;
    }

    .dd-item:hover {
        background: var(--bg);
    }

    .dd-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--blue-light);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .dd-icon svg {
        width: 15px;
        height: 15px;
        color: var(--blue);
    }

    .dd-text-title {
        font-weight: 700;
        font-size: .84rem;
        color: var(--text);
    }

    .dd-text-sub {
        font-size: .76rem;
        color: var(--muted);
        margin-top: 1px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .btn-ghost {
        padding: 8px 16px;
        border-radius: 8px;
        border: 1px solid var(--border2);
        background: var(--white);
        color: var(--text2);
        font-size: .875rem;
        font-weight: 600;
        transition: border-color .18s, color .18s;
    }

    .btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .btn-primary {
        padding: 9px 20px;
        border-radius: 8px;
        background: var(--blue);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        border: none;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .35);
        transition: background .18s, box-shadow .18s;
    }

    .btn-primary:hover {
        background: var(--blue-dark);
        box-shadow: var(--shadow-lg);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        display: block;
    }

    /* ══════════════ HERO ══════════════ */
    .hero {
        padding: 72px 0 52px;
        background: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, .06) 0%, transparent 70%);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--blue-light);
        border: 1px solid var(--blue-mid);
        border-radius: 99px;
        padding: 5px 14px 5px 8px;
        font-size: .78rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 22px;
        letter-spacing: .03em;
        text-transform: uppercase;
        animation: fadeUp .5s ease both;
    }

    .live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue);
        animation: blink 2s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    h1 {
        font-family: var(--font-h);
        font-size: clamp(2.1rem, 5vw, 3.6rem);
        font-weight: 800;
        letter-spacing: -.035em;
        line-height: 1.1;
        color: var(--text);
        max-width: 720px;
        margin: 0 auto 18px;
        animation: fadeUp .5s .07s ease both;
    }

    h1 .blue-text {
        color: var(--blue);
    }

    .hero-desc {
        font-size: 1.02rem;
        color: var(--muted);
        max-width: 500px;
        margin: 0 auto 40px;
        font-weight: 400;
        line-height: 1.7;
        animation: fadeUp .5s .13s ease both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(16px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Sample pills */
    .sample-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 18px;
        animation: fadeUp .5s .18s ease both;
    }

    .sample-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 99px;
        padding: 5px 14px 5px 6px;
        font-size: .8rem;
        font-weight: 600;
        color: var(--text2);
        transition: border-color .18s, background .18s, color .18s;
    }

    .sample-pill:hover {
        border-color: var(--blue);
        background: var(--blue-light);
        color: var(--blue);
        cursor: pointer;
    }

    .pill-avatar {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--blue-mid);
        display: grid;
        place-items: center;
        font-size: .68rem;
        font-weight: 800;
        color: var(--blue);
    }

    /* Upload box */
    .upload-box {
        background: var(--white);
        border: 1.5px dashed var(--border2);
        border-radius: 18px;
        box-shadow: var(--shadow);
        max-width: 700px;
        margin: 0 auto 14px;
        padding: 44px 32px 36px;
        cursor: pointer;
        transition: border-color .2s, box-shadow .2s;
        animation: fadeUp .5s .21s ease both;
    }

    .upload-box:hover {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .07), var(--shadow);
    }

    .upload-box input {
        display: none;
    }

    .upload-icon-wrap {
        width: 68px;
        height: 68px;
        background: var(--blue-light);
        border-radius: 18px;
        display: grid;
        place-items: center;
        margin: 0 auto 16px;
    }

    .upload-icon-wrap svg {
        width: 32px;
        height: 32px;
        color: var(--blue);
    }

    .upload-title {
        font-family: var(--font-h);
        font-size: 1.12rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 6px;
    }

    .upload-sub {
        font-size: .875rem;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .upload-sub strong {
        color: var(--blue);
        font-weight: 600;
    }

    .fmt-row {
        display: flex;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .fmt-chip {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 3px 10px;
        font-size: .72rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: .04em;
    }

    /* Tab row */
    .tab-row {
        display: flex;
        max-width: 700px;
        margin: 0 auto 14px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 4px;
        gap: 4px;
        animation: fadeUp .5s .25s ease both;
    }

    .tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 9px 12px;
        border-radius: 7px;
        font-size: .84rem;
        font-weight: 600;
        color: var(--muted);
        border: none;
        background: transparent;
        transition: all .18s;
    }

    .tab-btn svg {
        width: 15px;
        height: 15px;
    }

    .tab-btn.active {
        background: var(--white);
        color: var(--blue);
        box-shadow: var(--shadow-sm);
    }

    /* URL row */
    .url-row {
        display: none;
        gap: 8px;
        max-width: 700px;
        margin: 0 auto;
        animation: fadeUp .5s .28s ease both;
    }

    .url-input {
        flex: 1;
        padding: 12px 16px;
        background: var(--white);
        border: 1px solid var(--border2);
        border-radius: 10px;
        font-family: var(--font-b);
        font-size: .9rem;
        color: var(--text);
        outline: none;
        transition: border-color .18s, box-shadow .18s;
    }

    .url-input::placeholder {
        color: var(--muted2);
    }

    .url-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    }

    .btn-search {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 12px 24px;
        border-radius: 10px;
        background: var(--blue);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        border: none;
        white-space: nowrap;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .35);
        transition: background .18s, box-shadow .18s;
    }

    .btn-search:hover {
        background: var(--blue-dark);
        box-shadow: var(--shadow-lg);
    }

    .btn-search svg {
        width: 16px;
        height: 16px;
    }

    /* Trust row */
    .trust-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 22px;
        max-width: 700px;
        margin: 22px auto 0;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        animation: fadeUp .5s .3s ease both;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .8rem;
        color: var(--muted);
        font-weight: 500;
    }

    .trust-item svg {
        width: 15px;
        height: 15px;
        color: var(--blue);
        flex-shrink: 0;
    }

    /* ══════════════════════════════════════════════════════
       TOOL CARD — v2 card shell wrapping tabs + body + footer
       ══════════════════════════════════════════════════════ */
    .tool-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        max-width: 660px;
        margin: 24px auto 0;
        box-shadow: 0 8px 40px rgba(37, 99, 235, .10);
        overflow: hidden;
    }

    /* ── Tab header: card-top bar ── */
    .tool-card .tab-row {
        max-width: 100%;
        margin: 0;
        background: #FAFBFF;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        padding: 0;
        gap: 0;
        animation: none;
    }

    .tool-card .tab-btn {
        padding: 13px 8px;
        border-radius: 0;
        border-bottom: 2px solid transparent;
        font-size: 13px;
        background: none;
        box-shadow: none;
    }

    .tool-card .tab-btn.active {
        color: var(--blue);
        border-bottom-color: var(--blue);
        background: var(--white);
        box-shadow: none;
    }

    /* ── Card body ── */
    .tool-body {
        padding: 28px;
    }

    /* ── Reset search-container: no border, no padding (card handles that) ── */
    .tool-card #search-container {
        max-width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .tool-card #search-container.file-mode-active:hover {
        border-color: transparent;
        box-shadow: none;
    }

    /* ── Upload zone: dashed dropbox inside the card body ── */
    .upload-zone {
        border: 2px dashed #CBD5E1;
        border-radius: 12px;
        padding: 32px 24px;
        text-align: center;
        cursor: pointer;
        transition: border-color .3s ease, background .3s ease;
        margin-bottom: 14px;
    }

    .tool-card #search-container.file-mode-active:hover .upload-zone {
        border-color: var(--blue);
        background: var(--blue-light);
    }

    /* Tighter icon inside upload-zone */
    .upload-zone .upload-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .upload-zone .upload-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    /* ── Search button: full-width inside card ── */
    .tool-card .btn-search {
        width: 100%;
        justify-content: center;
        margin-top: 14px !important;
    }

    /* ══════════════════════════════════════════════════════
       PLATFORM CHIPS — URL mode "Works with links from" row
       ══════════════════════════════════════════════════════ */
    .mode-platforms {
        width: 100%;
        margin-top: 18px;
        text-align: left;
    }

    .mode-platforms-label {
        display: block;
        font-size: .72rem;
        font-weight: 700;
        color: var(--muted2, #9ca3af);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: 8px;
    }

    .mode-platform-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plat-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        background: var(--bg, #f8fafc);
        border: 1px solid var(--border, #e5e7eb);
        border-radius: 100px;
        font-size: .75rem;
        font-weight: 500;
        color: var(--mid, #374151);
        white-space: nowrap;
    }

    .plat-chip svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
        color: var(--muted, #6b7280);
    }

    .plat-chip--more {
        background: transparent;
        border-color: transparent;
        color: var(--muted2, #9ca3af);
        font-style: italic;
        padding-left: 4px;
    }

    /* ══════════════════════════════════════════════════════
       SAMPLE PILLS — Keyword mode "Try a search" row
       ══════════════════════════════════════════════════════ */
    .mode-sample-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .sample-pill {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 5px 12px;
        background: var(--blue-light, #eff6ff);
        border: 1px solid rgba(37, 99, 235, .18);
        border-radius: 100px;
        font-size: .75rem;
        font-weight: 500;
        color: var(--blue, #2563eb);
        cursor: pointer;
        transition: background .15s, border-color .15s, transform .1s;
        font-family: inherit;
        white-space: nowrap;
    }

    .sample-pill:hover {
        background: rgba(37, 99, 235, .12);
        border-color: rgba(37, 99, 235, .35);
        transform: translateY(-1px);
    }

    .sample-pill:active {
        transform: translateY(0);
    }

    /* ── Trust footer: bottom strip of the card ── */
    .tool-card .trust-strip {
        max-width: 100%;
        margin: 0;
        padding: 12px 28px;
        background: #FAFBFF;
        border-top: 1px solid var(--border);
        border-radius: 0;
        animation: none;
        gap: 16px;
    }

    /* ══════════════ SECTIONS ══════════════ */
    .section {
        padding: 80px 0;
    }

    .section-alt {
        background: var(--bg);
    }

    .s-label {
        display: block;
        font-size: .74rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
    }

    h2 {
        font-family: var(--font-h);
        font-size: clamp(1.55rem, 2.8vw, 2.25rem);
        font-weight: 800;
        letter-spacing: -.03em;
        line-height: 1.15;
        color: var(--text);
        margin-bottom: 12px;
    }

    .s-desc {
        font-size: .95rem;
        color: var(--muted);
        max-width: 500px;
        line-height: 1.7;
    }

    .s-head {
        margin-bottom: 48px;
    }

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

    .s-head.center .s-desc {
        margin: 0 auto;
    }

    /* Steps */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .step-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px 24px;
        transition: box-shadow .22s, border-color .22s, transform .22s;
    }

    .step-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--blue);
        transform: translateY(-3px);
    }

    .step-num {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: var(--blue);
        color: #fff;
        font-family: var(--font-h);
        font-size: .85rem;
        font-weight: 800;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
    }

    .step-card h3 {
        font-family: var(--font-h);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text);
    }

    .step-card p {
        font-size: .875rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* Pricing table */
    .pricing-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .pricing-table thead tr {
        background: var(--bg);
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 18px;
        text-align: left;
        border-bottom: 1px solid var(--border);
        font-size: .9rem;
    }

    .pricing-table th {
        font-family: var(--font-h);
        font-size: .76rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--muted);
    }

    .pricing-table tr:last-child td {
        border-bottom: none;
    }

    .pricing-table tbody tr:hover td {
        background: var(--bg);
    }

    .plan-cell {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: .98rem;
    }

    .plan-free {
        color: var(--muted);
    }

    .plan-pro {
        color: var(--blue);
    }

    .popular-badge {
        display: inline-block;
        background: var(--blue);
        color: #fff;
        font-size: .66rem;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 99px;
        margin-left: 7px;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .price-val {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: 1.05rem;
    }

    .check-y {
        color: var(--green);
    }

    .check-n {
        color: var(--muted2);
    }

    .tbl-btn {
        padding: 7px 18px;
        border-radius: 8px;
        font-size: .8rem;
        font-weight: 700;
        font-family: var(--font-b);
        transition: all .18s;
    }

    .tbl-btn-outline {
        border: 1.5px solid var(--border2);
        background: transparent;
        color: var(--text2);
    }

    .tbl-btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .tbl-btn-fill {
        border: none;
        background: var(--blue);
        color: #fff;
        box-shadow: 0 1px 3px rgba(37, 99, 235, .3);
    }

    .tbl-btn-fill:hover {
        background: var(--blue-dark);
    }

    /* Benefits */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .benefit-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 26px 22px;
        transition: box-shadow .22s, transform .22s;
    }

    .benefit-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
    }

    .b-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
    }

    .b-icon svg {
        width: 22px;
        height: 22px;
    }

    .b-icon.blue {
        background: var(--blue-light);
        color: var(--blue);
    }

    .b-icon.green {
        background: #f0fdf4;
        color: #16a34a;
    }

    .b-icon.orange {
        background: #fff7ed;
        color: #ea580c;
    }

    .b-icon.purple {
        background: #f5f3ff;
        color: #7c3aed;
    }

    .b-icon.teal {
        background: #f0fdfa;
        color: #0d9488;
    }

    .b-icon.pink {
        background: #fdf2f8;
        color: #db2777;
    }

    .benefit-card h3 {
        font-family: var(--font-h);
        font-size: .98rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text);
    }

    .benefit-card p {
        font-size: .875rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* Users */
    .users-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .user-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 22px 20px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: box-shadow .2s, transform .2s;
    }

    .user-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .u-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--blue-light);
        color: var(--blue);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }

    .u-icon svg {
        width: 20px;
        height: 20px;
    }

    .user-card h3 {
        font-family: var(--font-h);
        font-size: .92rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--text);
    }

    .user-card p {
        font-size: .84rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* FAQ */
    .faq-inner {
        max-width: 700px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
    }

    .faq-q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 20px 0;
        background: none;
        border: none;
        font-family: var(--font-b);
        font-size: .93rem;
        font-weight: 600;
        color: var(--text);
        text-align: left;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: var(--bg);
        border: 1px solid var(--border);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        transition: background .2s, border-color .2s;
    }

    .faq-toggle svg {
        width: 14px;
        height: 14px;
        color: var(--muted);
        transition: transform .3s, color .2s;
    }

    .faq-item.open .faq-toggle {
        background: var(--blue-light);
        border-color: var(--blue-mid);
    }

    .faq-item.open .faq-toggle svg {
        transform: rotate(45deg);
        color: var(--blue);
    }

    .faq-body {
        max-height: 0;
        overflow: hidden;
        font-size: .9rem;
        color: var(--muted);
        line-height: 1.7;
        transition: max-height .32s ease, padding .32s;
        padding: 0;
    }

    .faq-item.open .faq-body {
        max-height: 200px;
        padding-bottom: 18px;
    }

    /* CTA */
    .cta-box {
        background: var(--blue);
        border-radius: 20px;
        padding: 64px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-box::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    }

    .cta-box h2 {
        color: #fff;
        margin-bottom: 12px;
    }

    .cta-box p {
        color: rgba(255, 255, 255, .75);
        margin-bottom: 32px;
        font-size: .98rem;
    }

    .cta-btns {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn-white {
        padding: 13px 30px;
        border-radius: 9px;
        background: #fff;
        color: var(--blue);
        font-size: .9rem;
        font-weight: 700;
        border: none;
        transition: opacity .18s, transform .15s;
    }

    .btn-white:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

    .btn-outline-w {
        padding: 13px 24px;
        border-radius: 9px;
        background: transparent;
        color: #fff;
        font-size: .9rem;
        font-weight: 600;
        border: 1.5px solid rgba(255, 255, 255, .4);
        transition: border-color .18s;
    }

    .btn-outline-w:hover {
        border-color: rgba(255, 255, 255, .9);
    }

    /* Footer */
    footer {
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 56px 0 28px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        font-size: .875rem;
        color: var(--muted);
        margin-top: 12px;
        line-height: 1.7;
        max-width: 250px;
    }

    .footer-col h4 {
        font-family: var(--font-h);
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: var(--text2);
        margin-bottom: 14px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col li {
        margin-bottom: 9px;
    }

    .footer-col a {
        font-size: .875rem;
        color: var(--muted);
        transition: color .18s;
    }

    .footer-col a:hover {
        color: var(--blue);
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 22px;
        border-top: 1px solid var(--border);
        font-size: .82rem;
        color: var(--muted2);
    }

    .socials {
        display: flex;
        gap: 8px;
    }

    .soc-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        border: 1px solid var(--border2);
        background: var(--white);
        display: grid;
        place-items: center;
        color: var(--muted);
        transition: border-color .18s, color .18s;
    }

    .soc-btn svg {
        width: 15px;
        height: 15px;
    }

    .soc-btn:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    /* Responsive */
    @media (max-width: 960px) {
        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .steps-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: 1fr 1fr;
        }

        .users-grid {
            grid-template-columns: 1fr 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {

        /* Search container */
        #search-container {
            padding: 20px 16px 18px;
            margin: 16px auto 0;
        }

        /* Card-shell: let it fill mobile width */
        .tool-card {
            border-radius: 14px;
            margin: 16px auto 0;
        }

        .tool-body {
            padding: 18px 16px;
        }

        .tool-card .trust-strip {
            padding: 10px 16px;
            gap: 12px;
        }

        .upload-zone {
            padding: 24px 16px;
        }

        /* Reset search-container mobile padding when inside card */
        .tool-card #search-container {
            padding: 0;
            margin: 0;
        }

        /* Tab row — compact horizontal pills */
        .tab-row {
            flex-direction: row;
            padding: 3px;
            gap: 3px;
            margin-bottom: 12px;
        }

        /* Card tabs stay inline (no direction change) */
        .tool-card .tab-row {
            padding: 0;
            gap: 0;
            margin-bottom: 0;
        }

        .tab-btn {
            flex-direction: column;
            gap: 4px;
            padding: 8px 6px;
            font-size: .72rem;
            line-height: 1.2;
        }

        /* Card tab-btns stay horizontal, slightly tighter */
        .tool-card .tab-btn {
            flex-direction: row;
            padding: 11px 6px;
            font-size: .72rem;
            gap: 5px;
        }

        .tab-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Mode panels */
        .mode-url-body,
        .mode-keyword-body {
            padding: 4px 0 0;
        }

        .mode-panel-title {
            font-size: .88rem;
        }

        .mode-hint {
            font-size: .76rem;
            margin-bottom: 12px;
        }

        /* Keyword bar stacks */
        .keyword-search-bar {
            flex-direction: column;
        }

        .keyword-bar-divider {
            width: 100%;
            height: 1px;
            margin: 0;
        }

        .mode-select {
            min-width: unset;
            width: 100%;
            padding: 10px 14px;
            border-radius: 0;
            text-align: left;
        }

        .keyword-bar-input-wrap {
            width: 100%;
        }

        /* Search button */
        .btn-search {
            width: 100%;
            justify-content: center;
            margin-top: 14px !important;
        }

        /* Trust strip */
        .trust-strip {
            gap: 14px;
            padding-top: 16px;
        }

        .trust-item {
            font-size: .75rem;
        }

        /* Captcha modal */
        #captcha-modal-box {
            padding: 22px 18px 20px;
        }

        .benefits-grid,
        .users-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }


        .url-row {
            flex-direction: column;
        }

        .cta-box {
            padding: 44px 24px;
        }

        .hero {
            padding: 48px 0 36px;
        }

        .upload-box {
            padding: 32px 20px 26px;
        }
    }

    @media (max-width: 400px) {
        .tab-btn {
            font-size: .68rem;
            padding: 7px 4px;
        }

        .tab-btn svg {
            width: 14px;
            height: 14px;
        }
    }

    .tab-label-short {
        display: none;
    }

    .tab-label-full {
        display: inline;
    }

    @media (max-width: 640px) {
        .tab-label-full {
            display: none;
        }

        .tab-label-short {
            display: inline;
        }

        #tab-keyword {
            display: none;
        }
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .logo-wordmark {
        font-size: 21px;
        font-weight: 700;
        letter-spacing: -0.7px;
        line-height: 1;
    }

    /* ── Hamburger button ── */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        border: 1px solid var(--border2);
        border-radius: 8px;
        background: var(--white);
        cursor: pointer;
        padding: 0 8px;
        flex-shrink: 0;
        transition: border-color .18s;
    }

    .hamburger:hover {
        border-color: var(--blue);
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        display: block;
        transition: transform .25s ease, opacity .2s ease, width .2s ease;
        transform-origin: center;
    }

    /* X state */
    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Mobile menu panel ── */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(15, 23, 42, .09);
        z-index: 190;
        overflow: hidden;
        max-height: 0;
        transition: max-height .32s ease;
    }

    .mobile-menu.is-open {
        display: block;
        max-height: 600px;
    }

    .mobile-menu-inner {
        padding: 12px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    /* Mobile nav links */
    .mobile-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 12px;
        border-radius: 9px;
        font-size: .9rem;
        font-weight: 500;
        color: var(--text2);
        text-decoration: none;
        transition: background .15s, color .15s;
    }

    .mobile-link:hover,
    .mobile-link.is-active {
        background: var(--bg);
        color: var(--text);
    }

    .mobile-link svg {
        width: 16px;
        height: 16px;
        color: var(--muted2);
        transition: transform .22s;
        flex-shrink: 0;
    }

    .mobile-link.is-active svg {
        transform: rotate(180deg);
    }

    /* Mobile dropdown (accordion) */
    .mobile-dropdown-body {
        display: none;
        padding: 4px 0 6px 12px;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-body.is-open {
        display: flex;
    }

    .mobile-dd-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 10px;
        border-radius: 8px;
        font-size: .85rem;
        color: var(--text2);
        text-decoration: none;
        transition: background .15s;
    }

    .mobile-dd-item:hover {
        background: var(--bg);
    }

    .mobile-dd-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: var(--blue-light);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        color: var(--blue);
    }

    .mobile-dd-icon svg {
        width: 14px;
        height: 14px;
    }

    .mobile-dd-title {
        font-weight: 600;
        font-size: .84rem;
        color: var(--text);
    }

    .mobile-dd-sub {
        font-size: .75rem;
        color: var(--muted);
    }

    /* Mobile divider */
    .mobile-divider {
        height: 1px;
        background: var(--border);
        margin: 8px 0;
    }

    /* Mobile auth buttons */
    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 4px;
    }

    .mobile-btn-ghost {
        width: 100%;
        padding: 11px 16px;
        border-radius: 9px;
        border: 1.5px solid var(--border2);
        background: var(--white);
        color: var(--text2);
        font-size: .875rem;
        font-weight: 600;
        font-family: var(--font-b);
        text-align: center;
        text-decoration: none;
        transition: border-color .18s, color .18s;
        display: block;
    }

    .mobile-btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .mobile-btn-primary {
        width: 100%;
        padding: 11px 16px;
        border-radius: 9px;
        background: var(--blue);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        font-family: var(--font-b);
        text-align: center;
        text-decoration: none;
        border: none;
        transition: background .18s;
        display: block;
    }

    .mobile-btn-primary:hover {
        background: var(--blue-dark);
    }

    /* ── Overlay ── */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        top: 64px;
        background: rgba(15, 23, 42, .25);
        z-index: 180;
    }

    .nav-overlay.is-open {
        display: block;
    }

    /* ── Responsive breakpoints ── */
    @media (max-width: 960px) {
        .nav-links {
            display: none !important;
        }

        .nav-right .btn-ghost,
        .nav-right .btn-primary {
            display: none;
        }

        .hamburger {
            display: flex;
        }
    }

    @media (max-width: 480px) {
        .logo-wordmark {
            font-size: 18px;
        }
    }

    /* ═══════════════════════════════════════════════════════════════
    LEGAL PAGES — append to main.css
    (privacy policy, terms of service, cookie policy, etc.)
    ═══════════════════════════════════════════════════════════════ */

    /* ── Page shell ── */
    .legal-page {
        padding: 56px 0 80px;
        background: var(--white);
    }

    /* ── Header ── */
    .legal-header {
        max-width: 860px;
        margin-bottom: 48px;
    }

    .legal-title {
        font-family: var(--font-h);
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: var(--text);
        letter-spacing: -.03em;
        line-height: 1.12;
        margin: 8px 0 14px;
    }

    .legal-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .legal-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: .82rem;
        color: var(--muted);
        font-weight: 500;
    }

    .legal-meta-item svg {
        width: 14px;
        height: 14px;
        color: var(--blue);
        flex-shrink: 0;
    }

    /* ── Two-column layout ── */
    .legal-layout {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 48px;
        align-items: start;
    }

    @media (max-width: 900px) {
        .legal-layout {
            grid-template-columns: 1fr;
        }

        .legal-toc {
            display: none;
        }
    }

    /* ── Sidebar TOC ── */
    .legal-toc {
        position: sticky;
        top: 84px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius, 12px);
        padding: 20px;
    }

    .legal-toc-label {
        font-size: .7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--muted2);
        margin-bottom: 10px;
    }

    .legal-toc nav,
    .legal-toc-other {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .legal-toc-link {
        display: block;
        padding: 6px 10px;
        border-radius: 7px;
        font-size: .82rem;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        transition: background .15s, color .15s;
        line-height: 1.4;
    }

    .legal-toc-link:hover {
        background: var(--white);
        color: var(--blue);
    }

    /* ── Article ── */
    .legal-body {
        min-width: 0;
    }

    /* ── Dynamic content (TinyMCE output) ── */
    .legal-content {
        font-size: .925rem;
        color: var(--text2);
        line-height: 1.78;
    }

    .legal-content p {
        margin-bottom: 16px;
    }

    .legal-content p:last-child {
        margin-bottom: 0;
    }

    /* Headings */
    .legal-content h2 {
        font-family: var(--font-h);
        font-size: 1.12rem;
        font-weight: 800;
        color: var(--text);
        letter-spacing: -.02em;
        padding-top: 32px;
        margin: 32px 0 12px;
        border-top: 1px solid var(--border);
        scroll-margin-top: 90px;
    }

    .legal-content h2:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .legal-content h3 {
        font-family: var(--font-h);
        font-size: .97rem;
        font-weight: 700;
        color: var(--text);
        margin: 22px 0 8px;
    }

    /* Links */
    .legal-content a {
        color: var(--blue);
        text-decoration: underline;
        text-underline-offset: 2px;
        font-weight: 500;
    }

    .legal-content a:hover {
        opacity: .8;
    }

    /* Bold / italic */
    .legal-content strong {
        color: var(--text);
        font-weight: 700;
    }

    .legal-content em {
        font-style: italic;
    }

    /* Unordered lists */
    .legal-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .legal-content ul li {
        position: relative;
        padding-left: 18px;
        line-height: 1.7;
    }

    .legal-content ul li::before {
        content: '';
        position: absolute;
        left: 4px;
        top: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
        flex-shrink: unset;
    }

    /* Ordered lists */
    .legal-content ol {
        list-style: none;
        padding: 0;
        margin: 0 0 16px;
        counter-reset: legal-ol;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .legal-content ol li {
        position: relative;
        padding-left: 30px;
        line-height: 1.7;
        counter-increment: legal-ol;
    }

    .legal-content ol li::before {
        content: counter(legal-ol);
        position: absolute;
        left: 0;
        top: 1px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 5px;
        background: var(--blue-light);
        border: 1px solid var(--blue-mid);
        font-size: .66rem;
        font-weight: 800;
        color: var(--blue);
    }

    /* Tables */
    .legal-content table {
        width: 100%;
        border-collapse: collapse;
        font-size: .875rem;
        background: var(--white);
        border-radius: var(--radius, 12px);
        border: 1px solid var(--border);
        overflow: hidden;
        margin: 16px 0;
    }

    .legal-content th,
    .legal-content td {
        padding: 11px 16px;
        text-align: left;
        border-bottom: 1px solid var(--border);
    }

    .legal-content tr:last-child td {
        border-bottom: none;
    }

    .legal-content thead tr {
        background: var(--bg);
    }

    .legal-content th {
        font-family: var(--font-h);
        font-size: .73rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--muted);
    }

    .legal-content td {
        color: var(--text2);
    }

    .legal-content tbody tr:hover td {
        background: var(--bg);
    }

    /* Blockquote */
    .legal-content blockquote {
        border-left: 3px solid var(--blue);
        background: var(--bg);
        border-radius: 0 var(--radius, 12px) var(--radius, 12px) 0;
        padding: 14px 18px;
        margin: 16px 0;
        font-style: italic;
        color: var(--muted);
    }

    /* HR */
    .legal-content hr {
        border: none;
        border-top: 1px solid var(--border);
        margin: 32px 0;
    }

    /* Inline code */
    .legal-content code {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 1px 6px;
        font-size: .82em;
        font-family: 'SFMono-Regular', 'Consolas', monospace;
        color: var(--blue);
    }

    /* ── Mobile ── */
    @media (max-width: 640px) {
        .legal-page {
            padding: 36px 0 56px;
        }

        .legal-header {
            margin-bottom: 28px;
        }

        .legal-content h2 {
            font-size: 1rem;
            padding-top: 24px;
            margin-top: 24px;
        }

        .legal-content p,
        .legal-content li {
            font-size: .875rem;
        }

        .legal-content th,
        .legal-content td {
            padding: 9px 12px;
            font-size: .82rem;
        }
    }
