/* =============================================
   CHIP-TUNING — Section Styles
   Accent: muted burgundy for performance identity
   Used by: /chip-tuning/ and all model sub-pages
   ============================================= */

/* --- Performance accent tokens --- */
:root {
    --chip: #8B2D3A;
    --chip-light: rgba(139, 45, 58, 0.08);
    --chip-border: rgba(139, 45, 58, 0.18);
    --chip-glow: rgba(139, 45, 58, 0.25);
    --chip-text: #D4828E;
}


/* ===========================================
   BREADCRUMB — model pages (<ol> variant)
   =========================================== */

.breadcrumb {
    padding: 100px 0 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb__list li + li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.breadcrumb__list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__list a:hover {
    color: var(--chip-text);
}


/* ===========================================
   HERO — main chip-tuning page
   =========================================== */

.hero--chip {
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.70) 55%,
            rgba(139, 45, 58, 0.22) 100%),
        url('/chip-tuning/img/hero-bg.jpg') center/cover no-repeat;
    min-height: auto;
    padding: 140px 0 80px;
}

.hero--chip .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero--chip .hero__content {
    padding-top: 0;
}

.hero--chip .hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero--chip .hero__features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.hero--chip .hero__feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero--chip .hero__feature-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--chip-text);
    flex-shrink: 0;
}


/* ===========================================
   HERO — model sub-pages
   =========================================== */

.hero--model {
    background:
        linear-gradient(180deg,
            transparent 0%,
            rgba(139, 45, 58, 0.14) 100%);
    min-height: auto;
    padding: 40px 0 40px;
}

.hero--model .hero__cta {
    justify-content: center;
}

.hero__inner--model {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

/* Badge — override shared style with chip-tuning accent */
.hero--model .hero__badge,
.hero--chip .hero__badge {
    background: var(--chip-light);
    border-color: var(--chip-border);
    color: var(--chip-text);
}

.hero--model .hero__badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--chip-text);
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero__feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--chip-text);
    flex-shrink: 0;
}


/* ===========================================
   CALCULATOR
   =========================================== */

.calculator {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
}

.calculator::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: radial-gradient(ellipse at center, var(--chip-text), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.calculator__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.calculator__title svg {
    width: 22px;
    height: 22px;
    stroke: var(--chip-text);
}

.calculator__selects {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.calculator__select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4828E' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color 0.2s ease;
}

.calculator__select:focus {
    outline: none;
    border-color: var(--chip);
    box-shadow: 0 0 0 2px var(--chip-light);
}

.calculator__select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calculator__select option {
    background: var(--color-bg);
    color: var(--color-text);
}

/* Calculator Demo Label */
.calculator__demo-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--chip-text);
    opacity: 0.6;
    margin: 0 0 0.25rem;
}

/* Calculator Results */
.calculator__results {
    display: none;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calculator__results.active {
    display: block;
    animation: calcFadeIn 0.35s ease;
}

@keyframes calcFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.calculator__car-name {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.calculator__power {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-md);
}

.power-block { text-align: center; }

.power-block__label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.power-block__value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.power-block__value span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.power-block--after .power-block__value {
    color: var(--chip-text);
}

.power-arrow {
    font-size: 1.25rem;
    color: var(--chip-text);
}

.calculator__gain {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.gain-item {
    text-align: center;
    padding: 0.75rem 1rem;
    background: var(--chip-light);
    border: 1px solid var(--chip-border);
    border-radius: var(--radius-md);
    flex: 1;
}

.gain-item__value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chip-text);
}

.gain-item__label {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}

/* Stage Tabs */
.calculator__stages {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.stage-tab {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stage-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.stage-tab.active {
    background: var(--chip);
    border-color: var(--chip);
    color: #fff;
}

.calculator__price {
    text-align: center;
    margin-bottom: var(--space-md);
}

.calculator__price-value {
    font-size: 1.6rem;
    font-weight: 700;
}

.calculator__price-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.calculator .btn { width: 100%; }


/* ===========================================
   STATS ROW
   =========================================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item { text-align: center; }

.stat-item__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--chip-text);
    letter-spacing: -0.02em;
}

.stat-item__label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}


/* ===========================================
   SPECS TABLE — model pages
   =========================================== */

.specs-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-table__row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.specs-table--5cols .specs-table__row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
}

.specs-table__row--header {
    background: rgba(255, 255, 255, 0.04);
}

.specs-table__row--header .specs-table__cell {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-secondary);
}

.specs-table__row:not(.specs-table__row--header) {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.specs-table__row:not(.specs-table__row--header):nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.specs-table__cell {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.specs-table__cell--label {
    color: var(--color-text);
    font-weight: 500;
}

.specs-table__cell--accent {
    color: var(--chip-text);
    font-weight: 600;
}

.specs-table__cell--accent small {
    color: var(--chip-text);
    font-weight: 400;
    font-size: 0.82em;
    opacity: 0.7;
}


/* ===========================================
   MODEL DESCRIPTION
   =========================================== */

.model-desc {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

.model-desc p + p {
    margin-top: 1em;
}


/* ===========================================
   STAGE CARDS — model pages pricing
   =========================================== */

.stages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: 0 auto;
}

.stages__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.stage-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stage-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.stage-card--popular {
    border-color: var(--chip-border);
    background:
        linear-gradient(180deg, rgba(139, 45, 58, 0.05) 0%, transparent 40%),
        var(--color-bg-card);
}

.stage-card--popular:hover {
    border-color: var(--chip);
    box-shadow: 0 8px 32px var(--chip-light);
}

.stage-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    background: var(--chip);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    white-space: nowrap;
}

.stage-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stage-card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.stage-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    text-align: left;
}

.stage-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stage-card__features li:last-child {
    border-bottom: none;
}

.stage-card__features svg {
    width: 18px;
    height: 18px;
    stroke: var(--chip-text);
    flex-shrink: 0;
}

.stage-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.stage-card .btn {
    width: 100%;
}


/* ===========================================
   MODELS CATALOG — main page
   =========================================== */

.models-catalog {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.models-brand__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.models-brand__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.models-brand__title a:hover {
    color: var(--chip-text);
}

.models-brand__all {
    font-size: 0.75rem;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.models-brand__all:hover {
    color: var(--chip-text);
}

.models-catalog__note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: -0.5rem;
}

.models-brand__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}

.model-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.model-link:hover {
    border-color: var(--chip-border);
    background: var(--color-bg-card-hover);
}

.model-link span {
    font-size: 0.78rem;
    color: var(--chip-text);
    white-space: nowrap;
    margin-left: 0.5rem;
}

.models-brand__chevron {
    display: none;
}

.models-missing {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.models-missing button {
    background: none;
    border: none;
    color: var(--chip-text);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    transition: color 0.2s;
}

.models-missing button:hover {
    color: var(--chip-light);
}


/* ===========================================
   BRAND MODELS — brand hub pages
   =========================================== */

.brand-models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}


/* ===========================================
   CROSS-LINKS — model pages
   =========================================== */

.crosslinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.crosslinks__item {
    display: block;
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.25s ease;
}

.crosslinks__item:hover {
    border-color: var(--chip-border);
    transform: translateY(-2px);
}

.crosslinks__item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.crosslinks__item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}


/* ===========================================
   RELATED MODELS — model pages
   =========================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
}

.related-grid__footer {
    text-align: center;
    margin-top: 2rem;
}

.related-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.related-card:hover {
    border-color: var(--chip-border);
    transform: translateY(-1px);
}

.related-card__name {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.related-card__power {
    font-size: 0.82rem;
    color: var(--chip-text);
    white-space: nowrap;
    margin-left: 0.75rem;
}


/* ===========================================
   CTA OFFER BADGE — model pages
   =========================================== */

.cta-section__inner {
    text-align: center;
}

.cta-section__offer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--chip-light);
    border: 1px solid var(--chip-border);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.cta-section__offer-badge {
    padding: 0.15rem 0.6rem;
    background: var(--chip);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.cta-section__offer-text {
    font-size: 0.85rem;
    color: var(--chip-text);
}



/* ===========================================
   STEALTH NOTE — main page
   =========================================== */

.stealth-note {
    margin-top: var(--space-2xl);
    padding: var(--space-md);
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-align: center;
}

.stealth-note p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.stealth-note a {
    color: var(--chip-text);
    font-weight: 500;
}


/* ===========================================
   CHIP-TUNING BUTTON OVERRIDES
   =========================================== */

/* Primary CTA in chip-tuning context: burgundy accent */
.hero--chip .btn--primary,
.hero--model .btn--primary,
.stage-card .btn--primary,
.calculator .btn--primary,
.cta-section .btn--primary {
    background: var(--chip);
    color: #fff;
    border-color: var(--chip);
}

.hero--chip .btn--primary:hover,
.hero--model .btn--primary:hover,
.stage-card .btn--primary:hover,
.calculator .btn--primary:hover,
.cta-section .btn--primary:hover {
    background: #A33545;
    border-color: #A33545;
}

/* Outline buttons: burgundy border on hover */
.stage-card .btn--outline:hover {
    border-color: var(--chip);
    color: var(--chip-text);
}

/* Benefit card icons: burgundy instead of bronze */
.benefit-card__icon {
    background: linear-gradient(135deg, var(--chip-light), rgba(139, 45, 58, 0.04));
    border-color: var(--chip-border);
}

.benefit-card__icon svg {
    stroke: var(--chip-text);
}

/* Process step numbers: burgundy instead of bronze */
.process-step__number {
    background: linear-gradient(135deg, rgba(139, 45, 58, 0.25), rgba(139, 45, 58, 0.08));
    border-color: rgba(139, 45, 58, 0.35);
    color: var(--chip-text);
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 968px) {
    .hero--chip .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero--chip .hero__features-list {
        align-items: center;
    }

    .hero--chip .hero__cta {
        justify-content: center;
    }

    .calculator {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .models-brand__all {
        display: none;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stages__grid--two {
        grid-template-columns: 1fr;
    }

    .hero__features {
        flex-direction: column;
        align-items: center;
    }

    .specs-table {
        overflow-x: visible;
        border: none;
        background: none;
        border-radius: 0;
    }

    .specs-table--5cols {
        min-width: auto;
    }

    .specs-table__row {
        display: block;
        padding: 1.25rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        min-width: auto;
    }

    .specs-table__row--header {
        display: none;
    }

    .specs-table__cell {
        padding: 0;
        font-size: 0.9rem;
        white-space: normal;
    }

    .specs-table__row .specs-table__cell:nth-child(3)::before,
    .specs-table__row .specs-table__cell:nth-child(4)::before,
    .specs-table__row .specs-table__cell:nth-child(5)::before {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-text-muted);
    }

    .specs-table__row .specs-table__cell:nth-child(3)::before {
        content: 'Stage 1: ';
    }

    .specs-table__row .specs-table__cell:nth-child(4)::before {
        content: 'Stage 2: ';
    }

    .specs-table__row .specs-table__cell:nth-child(5)::before {
        content: 'Stage 3: ';
    }

    .specs-table__cell--label {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text);
        padding-bottom: 0.25rem;
        white-space: normal;
    }

    .specs-table__row .specs-table__cell:nth-child(2) {
        display: none;
    }

    /* Brand accordion on mobile */
    .models-brand__title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: var(--space-sm) 0;
    }

    .models-brand__chevron {
        display: block;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .models-brand.is-open .models-brand__chevron {
        transform: rotate(180deg);
    }

    .models-brand__grid {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .model-link {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .model-link span {
        white-space: normal;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}


/* ===========================================
   EXTRAS BLOCK — additional firmware options
   =========================================== */

.extras-block {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--chip-light);
    border: 1px solid var(--chip-border);
    border-radius: 16px;
}

.extras-block__title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--chip-text);
}

.extras-block__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.12);
    color: var(--chip-text);
    vertical-align: middle;
    margin-left: 0.5rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.extras-card {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.extras-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.extras-card__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.extras-card__desc {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.extras-card__price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--chip-text);
}

.extras-block__note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 968px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================================
   STAGE 3+ BLOCK — individual project CTA
   =========================================== */

.stage3-block {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 12px;
    text-align: center;
}

.stage3-block__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.stage3-block__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.stage3-block__link {
    background: none;
    border: none;
    color: var(--chip-text);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: inherit;
    padding: 0;
}

.stage3-block__link:hover {
    color: #fff;
}
