/* EnhancePD brand palette & typography
   Primary: #0048FE  (electric blue)
   Hover:   #003CD5
   Headlines: Oswald, condensed, uppercase
   Body: Open Sans
*/

:root {
    --enhance-blue: #0048FE;
    --enhance-blue-dark: #003CD5;
    --enhance-blue-deep: #001a52;
    --enhance-dark: #0a1026;
    --enhance-gray: #666;
    --enhance-light-gray: #f4f6fb;
}

* { box-sizing: border-box; }

html, body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    /* Kill horizontal swipe/pan on mobile so accidental finger drags don't move the page side to side. */
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    max-width: 100vw;
}

/* Header */
.enhance-header {
    background: linear-gradient(135deg, var(--enhance-dark) 0%, var(--enhance-blue-deep) 100%);
    color: white;
    border-bottom: 3px solid var(--enhance-blue);
}

.enhance-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0 16px;
    height: 34px;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.15s;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}
.enhance-btn-outline:hover {
    background: var(--enhance-blue);
    border-color: var(--enhance-blue);
    color: #fff;
}

/* Nav text links: same visual height as the outline button so they
   sit on the same baseline inside the flex row. */
.enhance-nav-link {
    display: inline-flex;
    align-items: center;
    height: 34px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.15s;
}
.enhance-nav-link:hover { color: #fff; }

/* Hero */
.enhance-hero {
    background:
        linear-gradient(135deg, rgba(10, 16, 38, 0.92) 0%, rgba(0, 26, 82, 0.9) 100%),
        radial-gradient(ellipse at top, rgba(0, 72, 254, 0.3), transparent 60%);
    background-color: var(--enhance-dark);
    color: white;
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.enhance-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 72, 254, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 72, 254, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.enhance-pill {
    display: inline-block;
    background: rgba(0, 72, 254, 0.15);
    border: 1px solid rgba(0, 72, 254, 0.4);
    color: #9fb8ff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.enhance-h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    position: relative;
}
.enhance-h1-accent {
    color: var(--enhance-blue);
    display: inline-block;
}

.enhance-subhead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

/* Cards */
.enhance-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 40px -20px rgba(0, 26, 82, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--enhance-blue);
}

.enhance-textarea {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    font-family: inherit;
    font-size: 15px;
    color: #1a1a2e;
    resize: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.enhance-textarea:focus {
    outline: none;
    border-color: var(--enhance-blue);
    box-shadow: 0 0 0 3px rgba(0, 72, 254, 0.15);
}

/* Buttons */
.enhance-btn-primary {
    background: var(--enhance-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
    box-shadow: 0 4px 12px -2px rgba(0, 72, 254, 0.4);
    white-space: nowrap;
}
.enhance-btn-primary:hover:not(:disabled) {
    background: var(--enhance-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -2px rgba(0, 72, 254, 0.5);
}
.enhance-btn-primary:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
}

.enhance-btn-white {
    display: inline-block;
    background: white;
    color: var(--enhance-blue);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.15s;
}
.enhance-btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Example chips */
.example-chip {
    cursor: pointer;
    background: #f1f5fd;
    border: 1px solid #d6e0f5;
    color: var(--enhance-blue);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s;
}
.example-chip:hover {
    background: var(--enhance-blue);
    border-color: var(--enhance-blue);
    color: white;
}

/* Headings */
.enhance-h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--enhance-dark);
    margin-bottom: 0;
}
.enhance-h2-light {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: white;
}
.enhance-h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--enhance-dark);
    margin-bottom: 10px;
}

/* Progress bar */
.enhance-progress {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.enhance-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--enhance-blue) 0%, #3d7aff 100%);
    border-radius: 999px;
    position: relative;
    transition: width 0.4s ease-out;
}
.enhance-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Novelty card */
.enhance-novelty-card {
    background: linear-gradient(135deg, #eef3ff 0%, #f8faff 100%);
    border: 1px solid #c5d5ff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px -10px rgba(0, 72, 254, 0.15);
}
.enhance-novelty-badge {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 5px solid var(--enhance-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--enhance-blue);
    box-shadow: inset 0 0 20px rgba(0, 72, 254, 0.08), 0 6px 16px rgba(0, 72, 254, 0.2);
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.enhance-novelty-badge.is-high   { border-color: #10b981; color: #047857; box-shadow: inset 0 0 20px rgba(16,185,129,.12), 0 6px 16px rgba(16,185,129,.25); }
.enhance-novelty-badge.is-med    { border-color: #f59e0b; color: #b45309; box-shadow: inset 0 0 20px rgba(245,158,11,.12), 0 6px 16px rgba(245,158,11,.25); }
.enhance-novelty-badge.is-low    { border-color: #f97316; color: #c2410c; box-shadow: inset 0 0 20px rgba(249,115,22,.12), 0 6px 16px rgba(249,115,22,.25); }
.enhance-novelty-badge.is-commodity { border-color: #ef4444; color: #b91c1c; box-shadow: inset 0 0 20px rgba(239,68,68,.12), 0 6px 16px rgba(239,68,68,.25); }

/* Verdict pill (sits under the score circle) */
.enhance-verdict-pill {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 160px;
}
.enhance-verdict-pill.v-good   { background: #d1fae5; color: #065f46; }
.enhance-verdict-pill.v-narrow { background: #fef3c7; color: #92400e; }
.enhance-verdict-pill.v-bad    { background: #ffedd5; color: #9a3412; }
.enhance-verdict-pill.v-exists { background: #fee2e2; color: #991b1b; }

/* Score column on mobile: badge + label + verdict pill all centered. On desktop
   the flex row handles alignment, so this only fires below the md breakpoint. */
@media (max-width: 767px) {
    .enhance-novelty-card {
        padding: 24px 20px;
        text-align: center;
    }
    .enhance-novelty-scorewrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .enhance-novelty-card .flex-1 {
        width: 100%;
        text-align: center;
    }
    .enhance-novelty-card .flex-1 ul {
        text-align: left;
        display: inline-block;
    }
    .enhance-novelty-card .enhance-existing-block,
    .enhance-novelty-card .enhance-must-prove,
    .enhance-novelty-card #differentiators-card,
    .enhance-novelty-card .enhance-novelty-card > div {
        text-align: left;
    }
}

/* "Already on the market" — the anti-optimism block */
.enhance-existing-block {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 4px;
}
.enhance-existing-label {
    font-weight: 800;
    color: #9a3412;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.enhance-existing-list {
    list-style: disc;
    padding-left: 20px;
    color: #7c2d12;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}
.enhance-existing-list li { margin-bottom: 3px; }

/* "What you'd need to prove" block — the honest patent-bar callout */
.enhance-must-prove {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 16px;
}
.enhance-must-prove-label {
    font-weight: 800;
    color: #334155;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.enhance-must-prove p {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.55;
}

/* Patent relevance badges */
.patent-relevance {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.patent-relevance.rel-high { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.patent-relevance.rel-med  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.patent-relevance.rel-low  { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* Patent cards */
.patent-card {
    display: flex;
    gap: 18px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.15s;
}
.patent-card:hover {
    border-color: var(--enhance-blue);
    box-shadow: 0 8px 20px -6px rgba(0, 72, 254, 0.2);
    transform: translateY(-1px);
}

.patent-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.patent-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Patent drawings are usually black-on-white; keep them crisp */
    image-rendering: -webkit-optimize-contrast;
}
.patent-thumb-placeholder {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px;
}
.patent-meta {
    flex: 1;
    min-width: 0;
}
.patent-title {
    font-weight: 700;
    color: var(--enhance-dark);
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
}
.patent-title a:hover {
    color: var(--enhance-blue);
}
.patent-abstract {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 8px;
}
.patent-metaline {
    font-size: 12px;
    color: #64748b;
}
.patent-metaline strong {
    color: var(--enhance-blue);
    font-weight: 700;
}

@media (max-width: 640px) {
    .patent-card { flex-direction: column; }
    .patent-thumb { width: 100%; height: 160px; }
}

/* Concept tags */
.concept-tag {
    display: inline-block;
    background: rgba(0, 72, 254, 0.08);
    color: var(--enhance-blue);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 72, 254, 0.15);
}
.concept-tag.secondary {
    background: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0;
}

/* Product marketplace cards */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.15s;
    display: block;
    text-decoration: none;
}
.product-card:hover {
    border-color: var(--enhance-blue);
    box-shadow: 0 6px 16px -4px rgba(0, 72, 254, 0.2);
    transform: translateY(-2px);
}
.product-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--enhance-blue) 0%, #3d7aff 100%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.product-name {
    font-weight: 700;
    color: var(--enhance-dark);
    font-size: 14px;
}
.product-desc {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Product logos (replaces letter icons) */
.product-logo {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.product-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card:hover .product-logo {
    background: white;
    border-color: var(--enhance-blue);
}

/* Enhance Buddy card */
.enhance-buddy-card {
    display: flex;
    gap: 22px;
    align-items: stretch;
    background: linear-gradient(135deg, #eef3ff 0%, #f8faff 100%);
    border: 1px solid #c5d5ff;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px -10px rgba(0, 72, 254, 0.18);
    position: relative;
    overflow: hidden;
}
.enhance-buddy-card.hidden { display: none; }

.enhance-buddy-character {
    flex-shrink: 0;
    width: 130px;
    align-self: flex-end;
    animation: buddyFloat 4s ease-in-out infinite;
}
.enhance-buddy-character svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 72, 254, 0.25));
}
@keyframes buddyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Slow gear rotation so Buddy looks alive without being distracting */
.buddy-gear {
    transform-box: fill-box;
    transform-origin: center;
    animation: buddyGearSpin 14s linear infinite;
}
@keyframes buddyGearSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.enhance-buddy-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enhance-buddy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.enhance-buddy-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--enhance-dark);
    font-size: 20px;
}
.enhance-buddy-tag {
    background: var(--enhance-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
}

.enhance-buddy-bubble {
    background: white;
    border: 1px solid #d6e0f5;
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    box-shadow: 0 4px 10px -4px rgba(0, 72, 254, 0.15);
}
.enhance-buddy-bubble::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 22px;
    width: 14px;
    height: 14px;
    background: white;
    border-left: 1px solid #d6e0f5;
    border-bottom: 1px solid #d6e0f5;
    transform: rotate(45deg);
}
.enhance-buddy-bubble p {
    margin: 0;
    color: #1a1a2e;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .enhance-buddy-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 18px;
    }
    .enhance-buddy-character { width: 110px; align-self: center; }
    .enhance-buddy-bubble::before {
        left: 50%;
        top: -8px;
        transform: translateX(-50%) rotate(135deg);
    }
}

/* CTA */
.enhance-cta-card {
    background: linear-gradient(135deg, var(--enhance-dark) 0%, var(--enhance-blue-deep) 100%);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px -20px rgba(0, 26, 82, 0.4);
    position: relative;
    overflow: hidden;
}
.enhance-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 72, 254, 0.3), transparent 70%);
    pointer-events: none;
}

/* ============================================================
   High-converting sales funnel (paid patent search + opinion)
   ============================================================ */
.enhance-sales {
    margin-top: 48px;
    padding: 56px 28px 48px;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--enhance-dark) 0%, var(--enhance-blue-deep) 50%, #001340 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0, 26, 82, 0.6);
}
.enhance-sales::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 72, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 72, 254, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.enhance-sales::after {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 72, 254, 0.35), transparent 70%);
    pointer-events: none;
}

.enhance-sales-hook {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
    position: relative;
}
.enhance-sales-pill-light {
    background: rgba(0, 72, 254, 0.2);
    border-color: rgba(0, 72, 254, 0.5);
    color: #c9d6ff;
    margin-bottom: 20px;
}
.enhance-sales-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.08;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}
.enhance-sales-headline-accent {
    color: var(--enhance-blue);
    display: inline-block;
}
.enhance-sales-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* Trust trio */
.enhance-sales-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}
.enhance-sales-trust-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;
    transition: all 0.2s;
}
.enhance-sales-trust-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 72, 254, 0.5);
    transform: translateY(-2px);
}
.enhance-sales-trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--enhance-blue) 0%, #3d7aff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -6px rgba(0, 72, 254, 0.7);
}
.enhance-sales-trust-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}
.enhance-sales-trust-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 6px;
}
.enhance-sales-trust-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .enhance-sales-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Main offer card */
.enhance-sales-offer {
    background: white;
    color: #1a1a2e;
    border-radius: 16px;
    padding: 40px 32px 32px;
    position: relative;
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.4);
    border-top: 5px solid var(--enhance-blue);
}

.enhance-sales-offer-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--enhance-blue) 0%, #3d7aff 100%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.enhance-sales-offer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--enhance-dark);
    margin-bottom: 20px;
}

.enhance-sales-offer-body p {
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.enhance-sales-included {
    margin-top: 24px;
    padding: 20px 22px;
    background: #f1f5fd;
    border-left: 4px solid var(--enhance-blue);
    border-radius: 0 8px 8px 0;
}
.enhance-sales-included-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--enhance-blue);
    margin: 0 0 10px 0;
}
.enhance-sales-included ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.enhance-sales-included li {
    position: relative;
    padding: 6px 0 6px 26px;
    color: #1a1a2e;
    font-size: 14px;
    line-height: 1.5;
}
.enhance-sales-included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--enhance-blue);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Price block */
.enhance-sales-price-block {
    text-align: center;
    margin: 32px 0 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #eef3ff 0%, #f8faff 100%);
    border: 1px solid #c5d5ff;
    border-radius: 12px;
}
.enhance-sales-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.enhance-sales-price-old {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-weight: 500;
}
.enhance-sales-price-now {
    background: var(--enhance-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: center;
}
.enhance-sales-price-new {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    color: var(--enhance-dark);
    letter-spacing: 0.02em;
    line-height: 1;
}
.enhance-sales-price-note {
    color: #64748b;
    font-size: 12px;
    margin: 10px 0 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Main CTA */
.enhance-sales-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--enhance-blue) 0%, #3d7aff 100%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px -8px rgba(0, 72, 254, 0.55);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.enhance-sales-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px rgba(0, 72, 254, 0.7);
    background: linear-gradient(135deg, var(--enhance-blue-dark) 0%, var(--enhance-blue) 100%);
}
.enhance-sales-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.enhance-sales-cta:hover::after {
    transform: translateX(100%);
}

.enhance-sales-guarantee {
    text-align: center;
    color: #475569;
    font-size: 12px;
    margin: 14px 0 0;
    letter-spacing: 0.03em;
}

.enhance-sales-disclaimer {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.65;
    margin-top: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}
.enhance-sales-disclaimer strong {
    color: rgba(255, 255, 255, 0.75);
}

/* Footer */
.enhance-footer {
    background: var(--enhance-dark);
    color: white;
    border-top: 3px solid var(--enhance-blue);
}

/* Utility overrides for Tailwind cohabitation */
.enhance-card [id^="llm-indicator"] {
    min-height: 1.25rem;
}

/* Email gate modal */
.enhance-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 38, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: modalFadeIn 0.2s ease-out;
}
.enhance-modal-backdrop.hidden {
    display: none;
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.enhance-modal {
    background: white;
    border-radius: 14px;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 72, 254, 0.1);
    animation: modalSlideIn 0.3s cubic-bezier(.25, .8, .25, 1);
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.enhance-modal-accent {
    height: 6px;
    background: linear-gradient(90deg, var(--enhance-blue) 0%, #3d7aff 100%);
}

.enhance-modal-body {
    padding: 32px 28px 28px;
    text-align: center;
}

.enhance-modal-pill {
    margin-bottom: 14px;
    background: rgba(0, 72, 254, 0.08);
    border-color: rgba(0, 72, 254, 0.25);
    color: var(--enhance-blue);
}

.enhance-modal-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--enhance-dark);
    margin-bottom: 10px;
}

.enhance-modal-sub {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.enhance-modal-form {
    text-align: left;
}

.enhance-modal-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 6px;
}

.enhance-modal-input {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    color: #1a1a2e;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.enhance-modal-input:focus {
    outline: none;
    border-color: var(--enhance-blue);
    box-shadow: 0 0 0 3px rgba(0, 72, 254, 0.15);
}
.enhance-modal-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.enhance-modal-error {
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}
.enhance-modal-error.hidden {
    display: none;
}

.enhance-modal-btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    font-size: 14px;
}

.enhance-modal-fineprint {
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.5;
    margin-top: 14px;
    text-align: center;
}

/* ----------------------------------------------------------------------
   MARKET TOOL ADDITIONS
   Optional-fields drawer, TAM/SAM/SOM grid, sub-cards, competitor list,
   pricing block, GTM ordered list.
   ---------------------------------------------------------------------- */

/* Optional context drawer under the textarea */
.enhance-extras {
    margin-top: 16px;
    border-top: 1px dashed #d5dcec;
    padding-top: 14px;
}
.enhance-extras[open] {
    padding-bottom: 4px;
}
.enhance-extras-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--enhance-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    list-style: none;
    user-select: none;
    padding: 4px 0;
}
.enhance-extras-toggle::-webkit-details-marker { display: none; }
.enhance-extras-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 72, 254, 0.12);
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.2s;
}
.enhance-extras[open] .enhance-extras-icon {
    transform: rotate(45deg);
}
.enhance-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.enhance-extras-full {
    grid-column: 1 / -1;
}
.enhance-extras-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.enhance-extras-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5dcec;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: 'Open Sans', sans-serif;
}
.enhance-extras-input:focus {
    outline: none;
    border-color: var(--enhance-blue);
    box-shadow: 0 0 0 3px rgba(0, 72, 254, 0.12);
}

/* TAM / SAM / SOM grid */
.enhance-tam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}
.enhance-tam-card {
    background: #fff;
    border: 1px solid #c5d5ff;
    border-top: 4px solid var(--enhance-blue);
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: 0 6px 18px -8px rgba(0, 72, 254, 0.15);
    display: flex;
    flex-direction: column;
}
.enhance-tam-card.is-sam { border-top-color: #6366f1; }
.enhance-tam-card.is-som {
    border-top-color: #10b981;
    background: linear-gradient(180deg, #f0fdf7 0%, #ffffff 60%);
}
.enhance-tam-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.enhance-tam-value {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--enhance-blue-deep);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.enhance-tam-card.is-sam .enhance-tam-value { color: #4338ca; }
.enhance-tam-card.is-som .enhance-tam-value { color: #047857; }
.enhance-tam-label {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.enhance-tam-reasoning {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
    margin-top: auto;
}
@media (max-width: 767px) {
    .enhance-tam-grid { grid-template-columns: 1fr; }
    .enhance-tam-value { font-size: 32px; }
}

/* Generic sub-card used for customer, competitors, pricing, etc. */
.enhance-sub-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 12px -6px rgba(0, 72, 254, 0.08);
}
.enhance-sub-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.enhance-sub-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 72, 254, 0.1);
    color: var(--enhance-blue);
    flex-shrink: 0;
}
.enhance-sub-card-icon svg { width: 18px; height: 18px; }
.enhance-sub-card-icon.is-accent-green { background: rgba(16, 185, 129, 0.12); color: #047857; }
.enhance-sub-card-icon.is-accent-red { background: rgba(239, 68, 68, 0.12); color: #b91c1c; }
.enhance-sub-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a1026;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}
.enhance-sub-card-subheader {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

/* Target customer meta row */
.enhance-customer-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    font-size: 13px;
    color: #475569;
}
.enhance-customer-meta > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.enhance-customer-meta-full { grid-column: 1 / -1; }
.enhance-customer-meta-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Competitive landscape */
.enhance-competitors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enhance-competitor-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.enhance-competitor-strength {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    height: 22px;
}
.enhance-competitor-strength.str-high { background: #fee2e2; color: #991b1b; }
.enhance-competitor-strength.str-med  { background: #fef3c7; color: #92400e; }
.enhance-competitor-strength.str-low  { background: #dcfce7; color: #166534; }
.enhance-competitor-body {
    flex: 1;
    min-width: 0;
}
.enhance-competitor-name {
    font-weight: 700;
    color: #0a1026;
    font-size: 14px;
    margin-bottom: 2px;
}
.enhance-competitor-positioning {
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

/* Pricing */
.enhance-pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.enhance-pricing-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.enhance-pricing-value {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--enhance-blue-deep);
    line-height: 1.15;
}
.enhance-pricing-value-sm { font-size: 18px; color: #334155; }

/* Shared bulleted list for demand signals, risks, positioning angles */
.enhance-bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.enhance-bullet-list li {
    position: relative;
    padding: 8px 12px 8px 32px;
    background: #f8fafc;
    border-left: 3px solid var(--enhance-blue);
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.enhance-bullet-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--enhance-blue);
}
#risks-card .enhance-bullet-list li {
    border-left-color: #ef4444;
    background: #fef2f2;
}
#risks-card .enhance-bullet-list li::before { background: #ef4444; }
#demand-card .enhance-bullet-list li {
    border-left-color: #10b981;
    background: #f0fdf4;
}
#demand-card .enhance-bullet-list li::before { background: #10b981; }

/* GTM ordered list with big numbers */
.enhance-gtm-list {
    list-style: none;
    counter-reset: gtm;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enhance-gtm-list li {
    counter-increment: gtm;
    position: relative;
    padding: 14px 14px 14px 60px;
    background: linear-gradient(180deg, #eef3ff 0%, #ffffff 80%);
    border: 1px solid #c5d5ff;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.55;
}
.enhance-gtm-list li::before {
    content: counter(gtm);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--enhance-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 72, 254, 0.3);
}

/* ----------------------------------------------------------------------
   MARKET OVERVIEW ADDITIONS
   Trends + CAGR row, channel breakdown bars, customer segments,
   tiered pricing landscape, competitor price tag.
   ---------------------------------------------------------------------- */

/* Category Trends — CAGR row + recent shifts list */
.enhance-trend-cagr {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f0fdf7 0%, #ffffff 100%);
    border: 1px solid #bbf7d0;
    border-left: 4px solid #10b981;
    border-radius: 10px;
}
.enhance-trend-cagr > div {
    flex-shrink: 0;
}
.enhance-trend-cagr-label {
    font-size: 10px;
    font-weight: 800;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.enhance-trend-cagr-value {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #047857;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.enhance-trend-cagr-note {
    flex: 1;
    min-width: 200px;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Channel Breakdown — horizontal share bars */
.enhance-channels-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.enhance-channel-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.enhance-channel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.enhance-channel-name {
    font-weight: 700;
    color: #0a1026;
    font-size: 14px;
}
.enhance-channel-share {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--enhance-blue);
    letter-spacing: 0.02em;
}
.enhance-channel-bar {
    width: 100%;
    height: 8px;
    background: #eef2f7;
    border-radius: 999px;
    overflow: hidden;
}
.enhance-channel-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--enhance-blue) 0%, #3d7aff 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(.25,.8,.25,1);
}
.enhance-channel-note {
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

/* Customer Segments — name + size on top row, trigger below */
.enhance-segments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enhance-segment-row {
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid var(--enhance-blue);
    border-radius: 10px;
}
.enhance-segment-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.enhance-segment-name {
    font-weight: 700;
    color: #0a1026;
    font-size: 15px;
}
.enhance-segment-size {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--enhance-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.enhance-segment-trigger {
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

/* Pricing Landscape — three tier cards side by side */
.enhance-price-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.enhance-tier-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #94a3b8;
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
}
.enhance-tier-card.is-mass    { border-top-color: #64748b; }
.enhance-tier-card.is-mid     { border-top-color: var(--enhance-blue); }
.enhance-tier-card.is-premium { border-top-color: #6366f1; background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 70%); }
.enhance-tier-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}
.enhance-tier-range {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--enhance-blue-deep);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.enhance-tier-card.is-premium .enhance-tier-range { color: #4338ca; }
.enhance-tier-examples {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.enhance-tier-examples li {
    font-size: 12.5px;
    color: #334155;
    line-height: 1.45;
    padding-left: 14px;
    position: relative;
}
.enhance-tier-examples li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--enhance-blue);
}
.enhance-tier-empty {
    color: #94a3b8 !important;
    font-style: italic;
}
.enhance-tier-empty::before { display: none !important; }
@media (max-width: 767px) {
    .enhance-price-tiers { grid-template-columns: 1fr; }
}

/* Competitor price tag — small price under the positioning line */
.enhance-competitor-price {
    margin-top: 6px;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--enhance-blue);
    letter-spacing: 0.02em;
    background: rgba(0, 72, 254, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Print styles for PDF export */
@media print {
    header, footer, #analyze-btn, .example-chip, nav, .enhance-cta-card { display: none !important; }
    body { background: white; }
    .enhance-hero { background: white !important; color: black !important; padding: 20px 0; }
    .enhance-h1, .enhance-h1-accent, .enhance-subhead { color: black !important; }
    a { color: var(--enhance-blue) !important; text-decoration: underline; }
}
