/* Kintila Portals Sub-Pages Styles (Brutalist) */

/* Layout & Base */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.portal-body {
    background-color: var(--bg-secondary);
    /* #F5F5F7 */
    color: var(--text-main);
}

.portal-header {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid var(--text-main);
    background: var(--bg-primary);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kintila-logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 2px;
}

.header-link {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s;
}

.header-link:hover {
    color: var(--accent-red);
}

/* Hero Portals */
.portal-hero {
    padding: 8rem 0 4rem 0;
    text-align: left;
}

.portal-title {
    font-size: clamp(2.8rem, 10vw, 6rem);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.portal-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--text-muted);
}

/* Filters */
.filters-section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bg-primary);
}

.avatar-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--text-gray);
    color: var(--bg-primary);
}

.filter-btn.active {
    background: var(--text-main);
    color: var(--bg-primary);
}

/* Catalog Grid */
.catalog-section {
    padding: 6rem 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Project Cards */
.project-card {
    display: block;
    background: var(--bg-primary);
    border: 1px solid var(--text-main);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px var(--text-main);
}

.card-image-box {
    width: 100%;
    height: 250px;
    position: relative;
    border-bottom: 1px solid var(--text-main);
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease;
}

.project-card:hover .card-image-box img {
    filter: grayscale(0%);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-main);
    color: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.card-location {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 700;
}

.card-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.stat-line span {
    color: var(--text-gray);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 900;
}

.card-action {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-red);
}

/* Footer Portals */
.portal-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--text-main);
    background: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ---------------------------------
   DARK MODE OVERRIDES (Developer)
   --------------------------------- */
.dark-mode {
    background-color: var(--text-main);
    /* #000 */
    color: var(--bg-primary);
    /* #FFF */
}

.dark-header {
    background: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-footer {
    background: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modificación: Tarjetas de Proyecto en entono Dark Mode */
.dark-mode .project-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--bg-primary);
}

.dark-mode .project-card:hover {
    box-shadow: 8px 8px 0px rgba(255, 255, 255, 0.1);
}

.dark-mode .card-badge {
    background: var(--bg-primary);
    color: var(--text-main);
}

.dark-mode .card-location {
    color: #999;
}

.dark-mode .card-stats {
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .stat-line span {
    color: #999;
}

/* ---------------------------------
   QUIZ TERMINAL (Developer Test)
   --------------------------------- */
.quiz-section {
    padding: 4rem 0 8rem 0;
}

.quiz-terminal {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: monospace, var(--font-body);
}

.terminal-header {
    background: #1C1C1E;
    color: #00FF41;
    /* CRT Green vibe */
    padding: 1rem;
    font-family: monospace;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.terminal-body {
    padding: 2.5rem;
}

.terminal-question {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--bg-primary);
    font-family: inherit;
    font-weight: 400;
}

.terminal-desc {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Quiz Steps Logic */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInStep 0.5s ease forwards;
}

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

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

/* Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quiz-option {
    cursor: pointer;
    display: block;
}

.option-box {
    display: block;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    font-size: 1rem;
}

.quiz-option:hover .option-box {
    border-color: var(--bg-primary);
    color: var(--bg-primary);
}

.quiz-option input:checked+.option-box {
    background: var(--bg-primary);
    color: var(--text-main);
    border-color: var(--bg-primary);
}

/* Form Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF !important;
    /* FIX: Evitar input invisible en Dark Mode */
    padding: 0.8rem 0;
    font-family: monospace;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    color: #FFFFFF !important;
}

/* Controls */
.quiz-controls {
    display: flex;
    justify-content: flex-end;
}

.split-controls {
    justify-content: space-between;
}

.btn-terminal {
    background: var(--bg-primary);
    color: var(--text-main);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-terminal:hover {
    background: var(--text-gray);
    color: var(--bg-primary);
}

.btn-terminal-text {
    background: transparent;
    color: var(--text-gray);
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.btn-terminal-text:hover {
    color: var(--bg-primary);
}

.btn-terminal-red {
    background: var(--accent-red);
    color: var(--bg-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}

.btn-terminal-red:hover {
    background: #C02C39;
}

/* Status Result Blocks */
.hidden {
    display: none !important;
}

.terminal-success,
.terminal-error {
    padding: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.terminal-status-green {
    color: #00FF41;
    margin-bottom: 1rem;
    font-family: monospace;
}

.terminal-status-red {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-family: monospace;
}

/* ==========================================================================
   PROJECT TEMPLATE STYLES (Plazas del Urubó & Future Projects)
   ========================================================================== */

/* Hero Section */
.project-hero {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.project-badge {
    background: var(--text-main);
    color: var(--bg-primary);
    padding: 5px 15px;
    font-weight: bold;
    border: 1px solid var(--bg-primary);
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.project-title {
    color: var(--bg-primary);
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.project-subtitle {
    color: var(--bg-primary);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

/* Hard Data Grid */
.hard-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .hard-data-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.data-card {
    border: 1px solid var(--text-gray);
    padding: 1.5rem;
    background: var(--text-muted);
}

.data-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.data-value {
    color: var(--accent-red);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
}

.data-value.white {
    color: var(--bg-primary);
}

/* Benefits Grid */
.manifesto-section {
    margin-bottom: 4rem;
}

.manifesto-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    line-height: 1.1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    border-left: 2px solid var(--accent-red);
    padding-left: 1rem;
}

.benefit-title {
    color: var(--bg-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: monospace;
    text-transform: uppercase;
}

.benefit-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Cost Comparison */
.cost-comparison-section {
    margin-bottom: 4rem;
    border: 1px solid var(--text-gray);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.cost-comparison-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 10px;
    color: var(--accent-red);
    text-transform: uppercase;
}

.cost-comparison-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cost-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 768px) {
    .cost-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cost-card {
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cost-card.past {
    opacity: 0.6;
}

.cost-card.present {
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.05);
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media(min-width: 768px) {
    .cost-card.present {
        transform: scale(1.05);
        z-index: 2;
    }
}

.cost-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.cost-card.present .cost-label {
    color: var(--accent-red);
}

.cost-price {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #aaa;
    display: block;
    margin-bottom: auto;
    padding-bottom: 1rem;
}

.cost-card.past .cost-price {
    color: #666;
    text-decoration: line-through;
}

.cost-card.present .cost-price {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--bg-primary);
    text-decoration: none;
}

.cost-m2 {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 4px 8px;
    align-self: flex-start;
}

.cost-card.present .cost-m2 {
    background: var(--accent-red);
    color: var(--bg-primary);
    font-weight: bold;
}

/* Horizontal Slider (Realidad vs Renders) */
.slider-section {
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.slider-header {
    padding-bottom: 1.5rem;
}

.slider-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--bg-primary);
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.slider-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media(min-width: 1200px) {
    .slider-wrapper {
        margin: 0 auto;
        max-width: 1200px;
        padding-left: 0;
        padding-right: 0;
    }
}

.slide-card {
    min-width: 85vw;
    height: 50vh;
    max-height: 400px;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
    border: 1px solid var(--text-gray);
    background: var(--text-muted);
    overflow: hidden;
}

@media(min-width: 768px) {
    .slide-card {
        min-width: 400px;
    }
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.slide-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
}

/* Features Block */
.features-section {
    margin-bottom: 4rem;
}

.features-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--bg-primary);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-box {
    border: 1px solid var(--text-gray);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: monospace;
}

.feature-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Split Map Section */
.split-map-section {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--text-gray);
    background: rgba(255, 255, 255, 0.02);
}

@media(min-width: 900px) {
    .split-map-section {
        grid-template-columns: 1fr 1fr;
    }
}

.map-content {
    padding: clamp(1.5rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--bg-primary);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ccc;
    font-family: monospace;
    font-size: 0.95rem;
}

.map-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.map-image-wrapper {
    min-height: 300px;
    background: #000;
    position: relative;
}

.map-image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.map-image-wrapper:hover img {
    opacity: 0.8;
}

/* Badges List (Due Diligence) */
.badges-section {
    margin-bottom: 4rem;
    text-align: center;
}

.badges-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: white;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.badges-wrap {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge-item {
    border: 1px solid var(--text-gray);
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #aaa;
    background: rgba(255, 255, 255, 0.02);
    font-family: monospace;
}

/* FAQ Details */
.faq-section {
    margin-bottom: 4rem;
}

.faq-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--bg-primary);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid var(--text-gray);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item summary {
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--accent-red);
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    color: #999;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border: 1px solid var(--text-gray);
    margin-bottom: 4rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Calculator Block */
.calc-section {
    border: 1px solid var(--text-gray);
    padding: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 4rem;
    background: var(--text-muted);
}

.calc-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--bg-primary);
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 800px) {
    .calc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.calc-label {
    display: block;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.calc-select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--text-gray);
    margin-bottom: 25px;
    background: var(--text-main);
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    font-size: 1rem;
}

.calc-select:focus {
    border-color: var(--accent-red);
}

.calc-result-box {
    background: var(--text-main);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--text-gray);
}

.calc-result-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1.1;
}

.calc-result-sec {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.calc-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
}

.calc-row-label {
    color: #aaa;
    font-size: 0.95rem;
}

.calc-row-value {
    text-align: right;
}

.calc-row-value strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.calc-row-value.red strong {
    color: var(--accent-red);
}

.calc-row-value small {
    display: block;
    color: #888;
    font-weight: 400;
}

.calc-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

/* Capture Form Container */
.capture-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.capture-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.capture-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--bg-primary);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.capture-subtitle {
    color: #999;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.capture-form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-gray);
    color: white;
    padding: 0.8rem 0;
    font-family: monospace;
    outline: none;
    font-size: 1rem;
    border-radius: 0;
}

.capture-form-select {
    width: 100%;
    background: var(--text-main);
    border: 1px solid var(--text-gray);
    color: white;
    padding: 0.8rem;
    font-family: monospace;
    outline: none;
    font-size: 1rem;
    border-radius: 0;
    appearance: none;
}

.capture-form-input:focus,
.capture-form-select:focus {
    border-color: var(--accent-red);
}