:root {
    /* Brand Purple — primary accent */
    --purple: #6143e4;
    --purple-mid: #7a5cf0;
    --purple-hover: #8065f7;
    --purple-light: #f5f3ff;
    --purple-border: #c2b8f1;
    --purple-glow: rgba(97, 67, 228, 0.10);

    /* Backgrounds */
    --bg: #f7f5ff;
    /* was --color-bg: #0a0f1a */
    --surface: #faf9ff;
    --white: #ffffff;

    /* Text */
    --dark: #1e1e28;
    /* was --color-white: #ffffff */
    --dark-2: #2c2c3a;
    --muted: #8a8a96;
    --muted-2: #b0b0ba;

    /* Borders */
    --border: #e4e2f0;
    --border-light: #eeecfa;

    /* Semantic */
    --green: #258241;
    --green-light: #c7f7cb;
    --gold: #ff9500;
    --gold-light: #ffb340;
    --blue: #007aff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    background: var(--white);
    color: var(--dark);
        /* padding-top: 58px; offset for fixed nav */

}

h1,
h2,
h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    /* NOT bold */
}

/* ── NAV ── */
.site-nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 58px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    margin-right: 44px;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 26px;
    height: 26px;
    background: var(--dark);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
}

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

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.14s, background 0.14s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-nav-ghost {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.14s;
}

.btn-nav-ghost:hover {
    color: var(--dark);
}

.btn-nav-primary {
    font-size: 13px;
    font-weight: 600;
    background: var(--dark);
    color: var(--white);
    padding: 7px 17px;
    border-radius: 7px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.16s;
}

.btn-nav-primary:hover {
    background: var(--purple);
}

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

.dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(30, 30, 40, 0.09), 0 1px 3px rgba(30, 30, 40, 0.05);
    padding: 8px;
    min-width: 200px;
    z-index: 300;
}

.dropdown:hover .dropdown-panel {
    display: block;
}

.dp-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted-2);
    padding: 8px 10px 4px;
}

.dp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dropdown-panel a {
    display: block;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-2);
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.12s;
}

.dropdown-panel a:hover {
    background: var(--bg);
    color: var(--purple);
}

/* ── HERO ── */
.hero-wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.hero {
    padding: 140px 48px 96px;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--purple-border);
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--purple);
}

.hero-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    max-width: 400px;
    margin-bottom: 34px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.17s;
}

.btn-primary:hover {
    background: var(--purple);
}

.btn-ghost {
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.14s;
}

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

.arrow {
    display: inline-block;
    transition: transform 0.16s;
}

.btn-ghost:hover .arrow {
    transform: translateX(3px);
}

/* Hero panel */
.hero-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 30, 40, 0.07);
}

.hp-header {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.hp-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
}

.hp-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hp-body {
    padding: 6px 8px;
}

.auction-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 8px;
    transition: background 0.13s;
    cursor: default;
}

.auction-row:hover {
    background: var(--bg);
}

.ar-state {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.ar-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    flex: 1;
}

.ar-day {
    font-size: 11.5px;
    color: var(--muted-2);
    flex-shrink: 0;
}

.ar-bar {
    width: 52px;
    height: 2px;
    border-radius: 99px;
    background: var(--border);
    overflow: hidden;
    flex-shrink: 0;
}

.ar-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--purple-mid);
    opacity: 0.7;
}

.ar-count {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    min-width: 26px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.hp-footer {
    margin: 4px 8px 8px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 9px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
}

.hp-stat .s-val {
    font-family: 'Instrument Serif', serif;
    font-size: 21px;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.hp-stat .s-lbl {
    font-size: 11px;
    color: var(--muted-2);
    margin-top: 3px;
}

/* ── UTILITIES ── */
.divider {
    height: 1px;
    background: var(--border);
    max-width: 1180px;
    margin: 0 auto;
}

.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title em {
    font-style: italic;
    color: var(--purple);
}

.section-desc {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.72;
    max-width: 460px;
}

/* ── STATES BAR ── */
.states-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.states-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.states-bar-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-2);
    flex-shrink: 0;
}

.states-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.state-pill {
    padding: 5px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-2);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.14s;
}

.state-pill:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ── FEATURES ── */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 48px;
}

.section-header {
    margin-bottom: 44px;
}

.section-header.split-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    gap: 0;
    background: var(--border);
}

.feature-cell {
    background: var(--white);
    padding: 30px 26px;
    transition: background 0.16s;
}

.feature-cell:hover {
    background: var(--surface);
}

.fc-num {
    font-family: 'Instrument Serif', serif;
    font-size: 12px;
    color: var(--muted-2);
    display: block;
    margin-bottom: 18px;
}

.fc-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: -0.01em;
}

.fc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.fc-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.01em;
    transition: gap 0.14s;
}

.fc-link:hover {
    gap: 7px;
}

/* ── SPLIT ── */
.split-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 48px;
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split-inner.flip> :first-child {
    order: 2;
}

.split-inner.flip> :last-child {
    order: 1;
}

/* Bid card */
.bid-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30, 30, 40, 0.06);
}

.bc-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-border);
}

.bc-head-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.bc-body {
    padding: 18px 18px 18px;
}

.bc-vehicle {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.bc-sub {
    font-size: 12px;
    color: var(--muted-2);
    margin-bottom: 18px;
}

.bc-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 7px;
    background: var(--bg);
}

.bc-row-lbl {
    font-size: 12.5px;
    color: var(--muted);
}

.bc-row-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    font-variant-numeric: tabular-nums;
}

.bc-row-val.green {
    color: var(--green);
}

.bc-row-val.gold {
    color: var(--gold);
}

.bc-action {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 11px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: background 0.16s;
}

.bc-action:hover {
    background: var(--purple);
}

/* ── DARK BAND ── */
.band {
    background: var(--dark);
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
}

.band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 184, 241, 0.25), transparent);
}

.band-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.band-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-border);
    margin-bottom: 12px;
    display: block;
}

.band-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.band-title em {
    font-style: italic;
    color: var(--purple-border);
}

.band-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 440px;
}

.btn-band {
    flex-shrink: 0;
    background: var(--purple);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: background 0.16s;
}

.btn-band:hover {
    background: var(--purple-hover);
}

/* ── COMMUNITY ── */
.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 22px 22px 20px;
    transition: border-color 0.16s, box-shadow 0.16s;
}

.cc-card:hover {
    border-color: var(--purple-border);
    box-shadow: 0 4px 18px var(--purple-glow);
}

.cc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid;
}

.t-purple {
    color: var(--purple);
    border-color: var(--purple-border);
    background: var(--purple-light);
}

.t-gold {
    color: var(--gold);
    border-color: rgba(255, 149, 0, .28);
    background: rgba(255, 149, 0, .06);
}

.t-green {
    color: var(--green);
    border-color: rgba(37, 130, 65, .28);
    background: var(--green-light);
}

.t-blue {
    color: var(--blue);
    border-color: rgba(0, 122, 255, .22);
    background: rgba(0, 122, 255, .05);
}

.t-neutral {
    color: var(--muted);
    border-color: var(--border);
    background: var(--bg);
}

.cc-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.cc-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── ARTICLES ── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    gap: 0;
    background: var(--border);
}

.article-card {
    background: var(--white);
    padding: 26px 22px;
    text-decoration: none;
    display: block;
    transition: background 0.16s;
}

.article-card:hover {
    background: var(--surface);
}

.ac-eye {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--purple);
    display: block;
    margin-bottom: 10px;
}

.ac-title {
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.ac-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.62;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 48px 52px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
}

.fb-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.fb-mark {
    width: 24px;
    height: 24px;
    background: var(--purple);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.fb-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.72;
    margin-bottom: 20px;
}

.fb-contact {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 2.1;
}

.fb-contact a {
    color: rgba(194, 184, 241, 0.65);
    text-decoration: none;
    transition: color 0.14s;
}

.fb-contact a:hover {
    color: var(--purple-border);
}

.social-row {
    display: flex;
    gap: 5px;
    margin-top: 16px;
}

.soc {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.14s, color 0.14s;
}

.soc:hover {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

.footer-col h5 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.14s;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .split-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero {
        padding: 110px 20px 56px;
    }

    .split-inner.flip> :first-child,
    .split-inner.flip> :last-child {
        order: unset;
    }

    .split-wrap {
        padding: 56px 20px;
    }

    .features-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

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

    .band {
        padding: 52px 20px;
    }

    .band-inner {
        flex-direction: column;
        gap: 24px;
    }

    .section {
        padding: 56px 20px;
    }

    .states-bar-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 14px 20px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}





/* ── Layout ────────────────────────────────────── */

.page-wrapper {
    background: var(--white);
    color: var(--dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.spacer {
    height: 40px;
}

.section {
    padding: 60px 0;
}

.section--dark {
    background: var(--dark);
}

/* ── Typography ────────────────────────────────── */
.heading-primary {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.heading-secondary {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 600;
    margin: 32px 0 12px;
}

.heading-tertiary {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 28px 0 10px;
    color: var(--muted);
}

.body-text {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.body-text--white {
    color: var(--white);
}

.body-text a,
.section--content a {
    color: var(--purple);
    text-decoration: none;
}

.body-text a:hover {
    text-decoration: underline;
}

/* ── Auction Counter ───────────────────────────── */
.auction-counter {
    padding: 20px;
    background: var(--surface);

    text-align: center;
    border-radius: 12px;
    max-width: 400px;
    margin: 20px auto;
}

.auction-number {
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 700;
    color: var(--purple);
    margin: 0;
    line-height: 1;
}

/* ── Blog Filter ───────────────────────────────── */
.blog-filter {
    margin: 24px 0;
}

.blog-filter__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filter__btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
}

.blog-filter__btn:hover,
.blog-filter__btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

/* ── Blog Grid ─────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--gap);
    margin: 24px 0 48px;
}

.blog-card {
    /* background: var(--color-dark); */
    background: var(--white);

    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.blog-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
}

.blog-card__overlay-link {
    position: absolute;
    inset: 0;
}

.blog-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card__body--no-image {
    padding: 24px 16px;
}

.blog-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.blog-card__title a {
    color: var(--white);
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--purple);
}

.blog-card__excerpt {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}


/* ── AUCTION LISTING CARDS ── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    border-radius: 11px;
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-top-color 0.16s, box-shadow 0.16s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-top-color: var(--purple);
    box-shadow: 0 4px 18px var(--purple-glow);
}

.card-number {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--muted-2);
    text-transform: uppercase;
    font-weight: 600;
}

.card-number span {
    color: var(--purple);
    font-size: 16px;
    margin-right: 4px;
}

.card-title {
    font-family: 'Instrument Serif', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.card-source {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.16s, color 0.16s;
    width: fit-content;
}

.heading-card {
    text-align: center;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.card-link:hover {
    background: var(--purple);
    color: var(--white);
}

.footer-note {
    text-align: center;
    margin-top: 48px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-note strong {
    color: var(--purple);
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding-top: 58px;
}

.breadcrumb-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 48px;
}

.breadcrumb-nav {
    font-size: 12px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.14s;
}

.breadcrumb-nav a:hover {
    color: var(--purple);
}

.bc-sep {
    color: var(--border);
}

.bc-current {
    color: var(--dark);
    font-weight: 500;
}

/* ── WEEKLY INSIGHT HERO ── */
.wi-hero-wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.wi-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.wi-hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 20px;
}

.wi-hero h1 em {
    font-style: italic;
    color: var(--purple);
}

.wi-hero-desc {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.72;
}

.wi-hero-desc a {
    color: var(--purple);
    text-decoration: none;
}

.wi-hero-desc a:hover {
    text-decoration: underline;
}

/* ── SNAPSHOT CARD ── */
.snapshot-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 30, 40, 0.07);
}

.snapshot-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.snapshot-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.snapshot-date {
    font-size: 11px;
    color: var(--muted-2);
}

.snapshot-stats {
    display: flex;
    justify-content: space-between;
    padding: 24px 20px;
    gap: 12px;
}

.snap-stat {
    text-align: center;
    flex: 1;
}

.snap-val {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.snap-lbl {
    font-size: 11px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* ── DATA BARS ── */
.wi-chart-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}

.wi-bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wi-bar-label {
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
    min-width: 140px;
    flex-shrink: 0;
}

.wi-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}

.wi-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease;
}

.wi-bar-fill.purple {
    background: var(--purple-mid);
}

.wi-bar-fill.muted {
    background: var(--muted-2);
}

.wi-bar-pct {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    min-width: 38px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ── BID DISTRIBUTION ── */
.bid-dist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bid-dist-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 20px;
    transition: border-color 0.16s, box-shadow 0.16s;
}

.bid-dist-card:hover {
    border-color: var(--purple-border);
    box-shadow: 0 4px 18px var(--purple-glow);
}

.bid-dist-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.bid-dist-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.bid-dist-pct {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    color: var(--purple);
}

.bid-dist-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bid-dist-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--purple-mid);
}

.bid-dist-sub {
    font-size: 11.5px;
    color: var(--muted-2);
}

/* ── SALVAGE SPLIT ── */
.wi-split-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.salvage-bar-wrap {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.salvage-bar-fill {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    transition: width 0.6s ease;
}

.salvage-bar-fill.non-salvage {
    background: var(--purple-mid);
}

.salvage-bar-fill.salvage {
    background: var(--muted-2);
}

.salvage-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.non-salvage {
    background: var(--purple-mid);
}

.legend-dot.salvage {
    background: var(--muted-2);
}

/* ── ARTICLE DATE ── */
.ac-date {
    font-size: 11.5px;
    color: var(--muted-2);
    margin-top: 8px;
    display: block;
}

/* ── AUCTION REVIEW LIST ── */
.auction-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auction-review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 28px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    align-items: start;
    transition: border-color 0.16s, box-shadow 0.16s;
}

.auction-review-card:hover {
    border-color: var(--purple-border);
    box-shadow: 0 4px 18px var(--purple-glow);
}

.auction-review-card.top-rated {
    border-color: var(--purple-border);
    background: var(--purple-light);
}

/* Left — rank + rating */
.arc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.arc-rank {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.arc-rating-circle {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.arc-rating-num {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    color: var(--dark);
    line-height: 1;
}

.arc-rating-max {
    font-size: 12px;
    color: var(--muted-2);
}

.arc-stars {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Body */
.arc-body {
    flex: 1;
    min-width: 0;
}

.arc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.arc-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
    font-family: 'Figtree', sans-serif;
}

.arc-summary {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Score bars */
.arc-scores {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.arc-score-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arc-score-label {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
    min-width: 130px;
    flex-shrink: 0;
}

.arc-score-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}

.arc-score-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--purple-mid);
    transition: width 0.6s ease;
}

.arc-score-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    min-width: 28px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Action column */
.arc-action {
    flex-shrink: 0;
    padding-top: 4px;
}

/* ── TOP RATED SHOWCASE ── */
.top-rated-showcase {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 52px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--purple-border);
    border-radius: 13px;
    padding: 40px;
    box-shadow: 0 4px 24px var(--purple-glow);
}

.trs-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 24px;
    background: var(--purple-light);
    border-radius: 11px;
    border: 1px solid var(--purple-border);
}

.trs-score {
    font-family: 'Instrument Serif', serif;
    font-size: 52px;
    color: var(--purple);
    line-height: 1;
}

.trs-label {
    font-size: 11px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.trs-stars {
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: 4px;
}

.trs-name {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    max-width: 860px;
}

.faq-item {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    transition: background 0.14s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: var(--surface);
}

.faq-question {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.faq-answer {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.72;
}


.page-title-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}



.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-top: 40px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.page-content ul,
.page-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content img {
    margin: 25px 0;
    max-width: 100%;
    height: auto;
}


/* media pages banner  */
/* ───────────────── HERO BANNER ───────────────── */

.dynamic-page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* margin-top: 58px; */
}




.dynamic-page-banner-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 90px 0;
    color: #fff;
}

.dynamic-page-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.dynamic-page-banner-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 850px;
    color: rgba(255, 255, 255, 0.92);
}

/* ───────────────── SIMPLE HEADER ───────────────── */
.simple-page-header {
    /* margin-top: 58px; */
    padding: 50px 0 30px;
    padding-top: 20px;
    background: #fff;
}

.simple-page-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-page-text {
    font-size: 17px;
    line-height: 1.8;
    max-width: 850px;
    color: #555;
}

/* ───────────────── BREADCRUMB ───────────────── */

.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-nav a {
    text-decoration: none;
}

.dynamic-page-banner .breadcrumb-nav a,
.dynamic-page-banner .bc-sep,
.dynamic-page-banner .bc-current {
    color: rgba(255, 255, 255, 0.85);
}

.simple-breadcrumb a {
    color: #555;
}

.simple-breadcrumb .bc-sep,
.simple-breadcrumb .bc-current {
    color: #777;
}

/* ───────────────── CONTENT ───────────────── */

.page-content {
    padding: 40px 60px 60px;
}


/* ── RESPONSIVE — AUCTION REVIEWS ── */
@media (max-width: 960px) {
    .auction-review-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arc-left {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 14px;
    }

    .arc-action {
        padding-top: 0;
    }

    .top-rated-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    .trs-badge {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .arc-score-label {
        min-width: 100px;
    }

    .bid-dist-grid[style*="repeat(5"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── RESPONSIVE — WEEKLY INSIGHT ── */
@media (max-width: 960px) {
    .wi-hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 20px;
    }

    .breadcrumb-inner {
        padding: 12px 20px;
    }

    .wi-split-data {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bid-dist-grid {
        grid-template-columns: 1fr;
    }

    .wi-bar-label {
        min-width: 100px;
    }
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* home page */
/* ══════════════════════════════════════════
   HOMEPAGE MAIN CONTENT — ADDITIONAL CSS
   (complements existing wp-custom-css)
══════════════════════════════════════════ */

/* ── HERO SECTION ── */
.elementor-element-3085d1e {
    background: linear-gradient(160deg, #05060a 0%, #0b0e18 100%);
    padding: 80px 48px 60px;
    text-align: center;
}

.elementor-element-3085d1e .elementor-widget-text-editor p {
    font-size: 15px;
    color: rgba(230, 235, 246, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.elementor-element-3085d1e h1.elementor-heading-title {
    font-size: clamp(36px, 6vw, 72px) !important;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.elementor-element-4d084db p {
    font-size: clamp(18px, 2.5vw, 28px) !important;
    letter-spacing: -0.02em !important;
    color: rgba(230, 235, 246, 0.75);
    line-height: 1.3;
}

/* ── HOW WE HELP SECTION ── */
.elementor-element-026c93a {
    background: #080a10;
    padding: 60px 48px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.elementor-element-026c93a h2.elementor-heading-title {
    font-size: clamp(24px, 3vw, 36px) !important;
    color: #ffffff;
    margin-bottom: 18px;
}

.elementor-element-8d4208f p {
    font-size: 16px;
    color: rgba(230, 235, 246, 0.70);
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

/* ── FEATURES WRAPPER ── */
.elementor-element-7803a36 {
    background: #05060a;
    padding: 60px 0;
}

/* Label above features grid */
.elementor-element-46347d6 .elementor-heading-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #a78bfa !important;
    margin-bottom: 6px;
}

.elementor-element-210fd23 p {
    font-size: 15px;
    color: rgba(230, 235, 246, 0.55);
}

/* Feature card row containers */
.elementor-element-f96119c,
.elementor-element-f4aa20c {
    gap: 16px !important;
    padding: 0 24px;
}

/* Feature card headings */
.whc-feature-card h2.elementor-heading-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 8px;
}

/* Feature card icons */
.whc-feature-card .elementor-icon svg,
.whc-feature-card .elementor-icon i {
    width: 28px;
    height: 28px;
    color: #7c3aed;
    fill: #7c3aed;
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

/* Auction number inside feature card */
#auction-box {
    margin: 8px 0;
}

#auction-output p {
    font-size: clamp(36px, 6vw, 64px) !important;
    font-weight: 800 !important;
    color: #7c3aed !important;
    line-height: 1;
    margin: 0;
}

/* Feature buttons */
.whc-feature-card .elementor-button {
    background: transparent !important;
    border: 1px solid rgba(124, 58, 237, 0.45) !important;
    color: #c4b5fd !important;
    font-size: 12px !important;
    padding: 7px 16px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    margin-top: auto;
    align-self: flex-start;
}

.whc-feature-card .elementor-button:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    border-color: #7c3aed !important;
    color: #ffffff !important;
    transform: none !important;
}

/* ── COMMUNITY SECTION ── */
.elementor-element-199be91 {
    background: #080a10;
    padding: 60px 48px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.elementor-element-199be91 h2.elementor-heading-title {
    font-size: clamp(22px, 3vw, 34px) !important;
    color: #ffffff;
}

.elementor-element-74a1bc7 p {
    font-size: 15px;
    color: rgba(230, 235, 246, 0.65);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Community card rows */
.elementor-element-d271b09,
.elementor-element-f7c2ceb {
    padding: 0 24px 24px !important;
}

/* Community card headings */
.elementor-element-d271b09 .whc-feature-card h2.elementor-heading-title,
.elementor-element-f7c2ceb .whc-feature-card h2.elementor-heading-title {
    font-size: 16px !important;
    color: #ffffff !important;
}

/* ── CTA / WHOLESALE BUYER BUTTON ── */
.elementor-element-4509634 {
    background: #05060a;
    padding: 48px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.elementor-element-fcb80a8 .elementor-button {
    background: linear-gradient(90deg, #7c3aed, #5e17eb) !important;
    border-radius: 999px !important;
    padding: 13px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.35) !important;
}

.elementor-element-fcb80a8 .elementor-button:hover {
    box-shadow: 0 20px 48px rgba(124, 58, 237, 0.50) !important;
    transform: translateY(-2px) !important;
}

.elementor-element-99dd012 h2.elementor-heading-title {
    font-size: clamp(22px, 3vw, 34px) !important;
    color: #ffffff !important;
    line-height: 1.2;
    margin-top: 24px;
}

.elementor-element-5f45adf p {
    font-size: 15px;
    color: rgba(230, 235, 246, 0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── MORE FEATURES LOADING BLOCK ── */
.elementor-element-0bb7f80 h2.elementor-heading-title {
    font-size: clamp(20px, 2.6vw, 28px) !important;
    color: #ffffff;
    margin-bottom: 12px;
}

.elementor-element-82b93a4 p {
    font-size: 14.5px;
    color: rgba(230, 235, 246, 0.65);
    line-height: 1.7;
    max-width: 460px;
}

.elementor-element-f0bf7ce .elementor-button {
    background: transparent !important;
    border: 1px solid rgba(124, 58, 237, 0.5) !important;
    color: #c4b5fd !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-size: 13px !important;
    box-shadow: none !important;
}

.elementor-element-f0bf7ce .elementor-button:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    color: #ffffff !important;
    transform: none !important;
}

/* ── AI SUMMARY BLOCK ── */
#ai-summary {
    font-size: 13px !important;
    color: rgba(230, 235, 246, 0.55) !important;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

#ai-summary a {
    color: #a78bfa !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .elementor-element-3085d1e,
    .elementor-element-026c93a,
    .elementor-element-199be91,
    .elementor-element-4509634 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .elementor-element-f96119c,
    .elementor-element-f4aa20c,
    .elementor-element-d271b09,
    .elementor-element-f7c2ceb {
        padding: 0 16px 16px !important;
    }
}
