/* 
   ARCHITECT MARKETPLACE V7 - SAAS EXPERT EDITION
   Concept: "The Dashboard" 
   Style: Linear-grade, High Density, Technical, Zero Fluff.
*/

:root {
    /* --- PALETTE NEUTRE (Inherited from style.css) --- */
    --saas-bg: var(--bg-base);
    --saas-surface: var(--bg-elevated);
    --saas-border: var(--border);
    --saas-border-hover: var(--border-dark);

    /* --- TYPOGRAPHY (Inherited) --- */
    --saas-text-main: var(--text-primary);
    --saas-text-sec: var(--text-secondary);
    --saas-text-ter: var(--text-tertiary);

    /* --- ACCENT (Inherited) --- */
    --saas-primary: var(--primary);
    --saas-primary-hover: var(--primary-dark);
    --saas-primary-soft: var(--primary-soft);
    --saas-danger: var(--danger);
    --saas-success: var(--success);
    --saas-warning: var(--warning);

    /* --- UTILS --- */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);

    --header-height: 64px;
    --sidebar-width: 280px;
}

/* --- RESET & BASE --- */
body {
    background-color: var(--saas-bg);
    color: var(--saas-text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    /* SaaS Density */
    line-height: 1.5;
    overflow-x: hidden;
    margin: 0;
}

/* --- APP SHELL LAYOUT --- */
.saas-app-shell {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: calc(100vh - 80px);
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 20px;
}

.saas-app-shell.detail-view {
    grid-template-columns: 1fr;
    max-width: 1200px;
    padding-top: 100px;
    /* Fix Fixed Header Overlap */
}

/* --- SIDEBAR (Filters) --- */
.saas-sidebar {
    padding: 0 24px 24px;
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    overflow-y: auto;
    border-right: 1px solid transparent;
    /* Visual anchor if needed */
}

.filter-group {
    margin-bottom: 24px;
}

.filter-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--saas-text-ter);
    font-weight: 600;
    margin-bottom: 12px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    color: var(--saas-text-sec);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.filter-item:hover {
    background: #f3f4f6;
    color: var(--saas-text-main);
}

.filter-item.active {
    background: var(--saas-primary-soft);
    color: var(--saas-primary);
    font-weight: 600;
}

/* --- MAIN CONTENT --- */
.saas-content {
    padding: 0 32px 32px;
}

/* APP HEADER */
.saas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--saas-border);
}

.header-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.saas-badge-pro {
    font-size: 0.5em;
    background: var(--saas-primary);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 700;
}





.saas-search-bar {
    position: relative;
    width: 400px;
}

.saas-search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background: #ffffff;
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--saas-text-main);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.saas-search-input:focus {
    outline: none;
    border-color: var(--saas-primary);
    box-shadow: 0 0 0 3px var(--saas-primary-soft);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saas-text-ter);
    font-size: 1rem;
}

/* --- EMPTY STATE --- */
.saas-empty-state {
    text-align: center;
    padding: 80px 40px;
    color: var(--saas-text-ter);
}

.saas-empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* --- DATA GRID --- */
.saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* SAAS CARD V7 */
.saas-card {
    background: var(--saas-surface);
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.saas-card:hover {
    border-color: var(--saas-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.saas-card.panel-padded {
    padding: 24px;
}

.saas-card.no-hover:hover {
    transform: none;
    border-color: var(--saas-border);
    box-shadow: var(--shadow-sm);
}

.saas-card.sticky-panel {
    position: sticky;
    top: 20px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-domain {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-icon-v7 {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f3f4f6;
    color: var(--saas-text-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.domain-name-v7 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--saas-text-main);
}

.card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
    background: #f9fafb;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-metrics.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: transparent;
    border: none;
    padding: 0;
}

.metric-v7 {
    text-align: center;
}

.m-val-v7 {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--saas-text-main);
}

.m-val-v7.xl {
    font-size: 1.8rem;
}

.m-lbl-v7 {
    font-size: 0.65rem;
    color: var(--saas-text-ter);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.saas-desc-clamp {
    font-size: 0.85rem;
    color: var(--saas-text-sec);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    /* Standard */
    overflow: hidden;
    line-height: 1.5;
    height: 3em;
}

.card-actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--saas-border);
}

.price-v7 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--saas-text-main);
}

/* --- SUPER SELLER V7 EXTENSION --- */
.card-accent-tech {
    border-top: 3px solid #4f46e5;
}

.card-accent-finance {
    border-top: 3px solid #10b981;
}

.card-accent-health {
    border-top: 3px solid #ef4444;
}

.card-accent-default {
    border-top: 3px solid var(--saas-border);
}

.metric-high .m-val-v7 {
    color: #059669;
    /* Emerald 600 */
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.metric-high .m-lbl-v7 {
    color: #059669;
    opacity: 0.8;
}

.badge-sales {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-sales.fire {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fee2e2;
}

.badge-sales.rare {
    background: #f0f9ff;
    color: #0284c7;
    border: 1px solid #e0f2fe;
}

.badge-sales.trust {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.btn-cta-magnetic {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1), 0 2px 4px -1px rgba(79, 70, 229, 0.06);
    border: none;
    padding: 10px 20px;
    /* Bigger touch target */
}

.btn-cta-magnetic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2), 0 4px 6px -2px rgba(79, 70, 229, 0.1);
}

.btn-v7 {
    background: var(--saas-text-main);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-v7.full-width {
    width: 100%;
    display: flex;
}

.btn-v7:hover {
    background: var(--saas-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-v7.secondary {
    background: #fff;
    color: var(--saas-text-main);
    border: 1px solid var(--saas-border);
}

.btn-v7.secondary:hover {
    border-color: var(--saas-text-ter);
    color: #000;
    box-shadow: none;
}

/* SMART BACK BUTTON */
.btn-back-smart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-sm);
    color: var(--saas-text-sec);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.btn-back-smart:hover {
    background: var(--saas-surface);
    color: var(--saas-primary);
    transform: translateX(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--saas-primary-soft);
}

/* --- DETAIL PAGE SPECIFICS --- */
.saas-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.saas-breadcrumb {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: var(--saas-text-sec);
}

.saas-breadcrumb a {
    color: var(--saas-text-ter);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.saas-breadcrumb a:hover {
    color: var(--saas-primary);
}

.detail-header-h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--saas-text-main);
    letter-spacing: -0.02em;
}

.detail-subtitle-row {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--saas-text-sec);
}

/* --- INPUTS --- */
.form-group-v7 {
    margin-bottom: 16px;
}

.form-label-v7 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saas-text-sec);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input-v7 {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-input-v7:focus {
    outline: none;
    border-color: var(--saas-primary);
    box-shadow: 0 0 0 3px var(--saas-primary-soft);
}

/* --- MOBILE RESPONSIVE (Critical for V7) --- */
#mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-md);
    color: var(--saas-text-main);
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* TRUST SECTION (Presentation) */
.saas-trust-bar {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-lg);
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--saas-primary-soft);
    color: var(--saas-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-text h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--saas-text-main);
}

.trust-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--saas-text-sec);
}

/* --- DESKTOP POLISH (Phase 11) --- */
@media (min-width: 993px) {
    .saas-card.sticky-panel {
        position: sticky;
        top: 100px;
        /* Space from header */
        align-self: start;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    /* Wrap description in a card look for better balance if raw */
    .saas-detail-grid>div:first-child {
        background: #fff;
        border: 1px solid var(--saas-border);
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: var(--shadow-sm);
    }
}

@media (max-width: 992px) {
    .saas-app-shell {
        grid-template-columns: 1fr;
        padding-top: 1rem;
    }

    /* ... existing mobile rules ... */

    .saas-content {
        padding: 0 16px 32px;
    }

    #mobile-filter-toggle {
        display: flex;
    }

    /* Hide sidebar by default on mobile, show when active */
    .saas-sidebar {
        display: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--saas-border);
        margin-bottom: 24px;
        padding: 0;
    }

    .saas-sidebar.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .saas-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .responsive-header-flex {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start !important;
    }

    .saas-search-bar {
        width: 100%;
    }

    /* --- MOBILE LOGIC (Phase 9) --- */

    /* 1. Trust Bar Scrollable (Instagram-style) */
    .saas-trust-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 16px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .saas-trust-bar::-webkit-scrollbar {
        display: none;
    }

    /* Chrome/Safari */

    .trust-item {
        flex: 0 0 auto;
        /* Don't shrink */
        border: 1px solid var(--saas-border);
        padding: 8px 12px;
        border-radius: var(--radius-md);
        background: #fafafa;
    }

    /* 2. Touch Targets > 44px */
    .btn-v7,
    .form-input-v7,
    .saas-search-input,
    .filter-item {
        min-height: 44px;
        /* Finger-friendly minimum */
        display: flex;
        align-items: center;
    }

    /* 3. Readability Safety */
    body {
        -webkit-text-size-adjust: 100%;
        /* Prevent font scaling quirks */
    }

    .card-actions .price-v7 {
        font-size: 1.1rem;
        /* Adjust for tight spaces */
    }

    .domain-name-v7 {
        font-size: 1rem;
        /* Ensure readable title */
    }

    .saas-detail-grid {
        grid-template-columns: 1fr;
    }

    .saas-card.sticky-panel {
        position: relative;
        top: 0;
    }

    .card-metrics.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .card-metrics.grid-4 {
        grid-template-columns: 1fr;
        /* Stack vertically on very small screens */
    }

    .saas-search-input {
        font-size: 16px;
        /* Prevent IOS zoom */
    }
}

/* --- V7 ULTIMATE POLISH (Phase 12) --- */

/* 1. SaaS Aurora Background (Subtle) */
.saas-aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.03), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.03), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Sticky Filters (Desktop UX) */
@media (min-width: 993px) {
    .saas-sidebar {
        position: sticky;
        top: 20px;
        align-self: start;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding-right: 8px;
        /* Room for scrollbar */
    }

    /* Elegant Scrollbar */
    .saas-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .saas-sidebar::-webkit-scrollbar-thumb {
        background: #e5e7eb;
        border-radius: 4px;
    }
}

/* 3. Hyper-Cards (V7 Interaction) */
.saas-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smoother */
}

.saas-card:hover {
    transform: translateY(-4px);
    /* Lift */
    border-color: var(--saas-primary);
    box-shadow: 0 12px 24px -10px rgba(79, 70, 229, 0.15);
    /* Indigo Shadow Glow */
}

/* 4. Sparkline UI (Visual Data) */
.metric-track {
    width: 100%;
    height: 3px;
    background: #f3f4f6;
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.metric-bar {
    height: 100%;
    background: var(--saas-primary);
    border-radius: 2px;
}

.metric-bar.high {
    background: var(--saas-success);
}

.metric-bar.med {
    background: var(--saas-warning);
}

/* --- CATEGORIES V2 (Desktop Premium) --- */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--saas-text-sec);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 3px solid transparent;
    /* Prepare for active marker */
}

.filter-item:hover {
    background: #f9fafb;
    color: var(--saas-primary);
    transform: translateX(4px);
    /* Micro-Interaction: Slide */
}

.filter-item.active {
    background: var(--saas-primary-soft);
    color: var(--saas-primary);
    font-weight: 600;
    border-left-color: var(--saas-primary);
    /* Active Indicator */
}

.filter-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--saas-text-ter);
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 16px;
    /* Align with items */
}

@media (max-width: 992px) {

    /* Mobile Override: Reset Slide, Keep touch target */
    .filter-item:hover {
        transform: none;
    }
}

/* --- BRAND INTRO (Phase 14) --- */
.brand-intro {
    margin-bottom: 48px;
    padding-top: 16px;
    max-width: 700px;
    position: relative;
    z-index: 1;
    /* Above Aurora */
}

.brand-h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 20px;
    background: linear-gradient(135deg, var(--saas-text-main) 0%, var(--saas-primary-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 1.15rem;
    color: var(--saas-text-sec);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .brand-h1 {
        font-size: 2rem;
    }

    .brand-intro {
        margin-bottom: 32px;
    }
}

/* --- BOTTOM SECTIONS (Phase 15) --- */
.seo-block-v7 {
    background: var(--saas-surface);
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 48px;
    color: var(--saas-text-sec);
}

.seo-block-v7 h2 {
    font-size: 1.5rem;
    color: var(--saas-text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.faq-section-v7 {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.faq-card {
    background: var(--saas-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--saas-border);
}

.faq-q {
    font-weight: 700;
    color: var(--saas-text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.final-cta-v7 {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--saas-text-main) 0%, var(--saas-text-sec) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .faq-section-v7 {
        grid-template-columns: 1fr;
    }
}

/* --- DETAIL HEADER HERO (Phase 16) --- */
.detail-hero-card {
    background: var(--saas-surface);
    border: 1px solid var(--saas-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    /* Identity vs Price */
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-identity {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-icon-xl {
    width: 64px;
    height: 64px;
    background: var(--saas-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--saas-text-sec);
    flex-shrink: 0;
}

.hero-meta-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--saas-text-sec);
    flex-wrap: wrap;
    /* Fix responsive wrapping globally */
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--saas-bg);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--saas-border);
    white-space: nowrap;
}

.price-mega {
    text-align: right;
}

.price-mega-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--saas-text-main);
    letter-spacing: -0.05em;
    line-height: 1;
}

.price-mega-lbl {
    font-size: 0.8rem;
    color: var(--saas-text-ter);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .detail-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .hero-identity {
        flex-direction: column;
        gap: 16px;
    }

    .hero-meta-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .price-mega {
        text-align: center;
        border-top: 1px solid var(--saas-border);
        padding-top: 16px;
    }
}