.vz-section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-body);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.vz-section-subtitle {
    color: rgba(var(--text-body-rgb), 0.65);
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.penalty-page {
    padding-top: 0;
}

.vz-hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.vz-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vz-hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80') center/cover no-repeat;
}

.vz-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, 
        rgba(var(--surface-elevated-rgb), 0.95) 0%, 
        rgba(var(--surface-elevated-rgb), 0.85) 50%,
        rgba(var(--surface-deep-rgb), 0.95) 85%, 
        var(--surface-deep) 100%
    );
}

.vz-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--surface-deep) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.vz-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 140px 0 80px;
}

.vz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent-gold-rgb), 0.15);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.badge-icon {
    display: flex;
}

.vz-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-body);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.vz-hero-subtitle {
    font-size: 20px;
    color: rgba(var(--text-body-rgb), 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.vz-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    padding: 32px;
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: var(--radius);
}

.problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-radius: var(--radius-card);
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 16px;
}

.problem-desc {
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.65);
    line-height: 1.7;
}

.calculator-block {
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.06) 0%, rgba(var(--accent-gold-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: 24px;
    padding: 48px;
}

.calculator-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-body);
    text-align: center;
    margin-bottom: 32px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--text-body-rgb), 0.7);
}

.calc-field input,
.calc-field select {
    padding: 14px 18px;
    background: rgba(var(--text-body-rgb), 0.08);
    border: 1px solid rgba(var(--text-body-rgb), 0.1);
    border-radius: 10px;
    color: var(--text-body);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.calc-field input:focus,
.calc-field select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.calc-field input::placeholder {
    color: rgba(var(--text-body-rgb), 0.4);
}

.calc-field select {
    cursor: pointer;
}

.calc-field select option {
    background: var(--surface-elevated);
    color: var(--text-body);
}

.calc-btn {
    height: 50px;
    white-space: nowrap;
}

.calculator-result {
    display: none;
    margin-top: 32px;
    padding: 32px;
    background: rgba(var(--text-body-rgb), 0.06);
    border-radius: var(--radius-card);
}

.result-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.result-label {
    font-size: 18px;
    color: rgba(var(--text-body-rgb), 0.7);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
}

.result-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.6);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(var(--text-body-rgb), 0.12);
}

.result-fine {
    color: var(--text-body);
    font-weight: 600;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--text-body-rgb), 0.8);
    margin-bottom: 16px;
}

.result-total-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-success);
}

.result-note {
    font-size: 13px;
    color: rgba(var(--text-body-rgb), 0.5);
    text-align: center;
}

.formula-block {
    max-width: 800px;
    margin: 0 auto;
}

.formula-box {
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin-bottom: 32px;
}

.formula-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--text-body-rgb), 0.7);
    margin-bottom: 24px;
}

.formula {
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-radius: 12px;
    padding: 24px;
}

.formula-text {
    font-family: 'Manrope', monospace;
    font-size: 20px;
    color: var(--text-body);
    letter-spacing: 1px;
}

.formula-highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.example-block {
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 24px;
}

.example-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 24px;
}

.example-params {
    margin-bottom: 24px;
}

.param-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--text-body-rgb), 0.05);
}

.param-row:last-child {
    border-bottom: none;
}

.param-name {
    color: rgba(var(--text-body-rgb), 0.6);
}

.param-value {
    font-weight: 600;
    color: var(--text-body);
}

.example-calc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.calc-text {
    font-family: 'Manrope', monospace;
    font-size: 16px;
    color: rgba(var(--text-body-rgb), 0.7);
}

.calc-result {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
}

.example-note {
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.7);
    line-height: 1.6;
}

.example-note strong {
    color: var(--accent-gold);
}

.formula-conclusion {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(var(--color-success-rgb), 0.1);
    border: 1px solid rgba(var(--color-success-rgb), 0.2);
    border-radius: 12px;
}

.formula-conclusion svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.formula-conclusion p {
    font-size: 16px;
    color: var(--color-success);
    font-weight: 500;
}

.stages-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stage-item {
    padding: 24px;
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
}

.stage-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--accent-gold-rgb), 0.5), transparent);
}

.stage-item:last-child::after {
    display: none;
}

.stage-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    color: var(--text-on-gold);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.stage-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 10px;
}

.stage-desc {
    font-size: 13px;
    color: rgba(var(--text-body-rgb), 0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

.stage-yours {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    padding-top: 12px;
    border-top: 1px solid rgba(var(--text-body-rgb), 0.12);
    text-align: left;
}

.stage-yours span {
    color: var(--accent-gold);
    font-weight: 600;
}

#reality .stages-timeline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stages-note {
    text-align: center;
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.5);
    padding: 16px;
    background: rgba(var(--accent-gold-rgb), 0.05);
    border-radius: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    padding: 40px;
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: 24px;
    position: relative;
}

.pricing-card:first-child {
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    padding: 6px 16px;
    background: var(--accent-gold);
    color: var(--text-on-gold);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 24px;
}

.pricing-conditions {
    margin-bottom: 24px;
}

.pricing-conditions p {
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.75);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pricing-conditions strong {
    color: var(--accent-gold);
}

.pricing-highlight {
    color: var(--color-success);
    font-weight: 600;
}

.pricing-suitable {
    padding-top: 20px;
    border-top: 1px solid rgba(var(--text-body-rgb), 0.12);
}

.suitable-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(var(--text-body-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pricing-suitable p {
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(var(--accent-gold-rgb), 0.05);
    border-radius: 12px;
    text-align: center;
    justify-content: center;
}

.pricing-note svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.pricing-note p {
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.7);
}

.claims-grid {
    display: flex;
    justify-content: center;
}

.claims-table {
    background: rgba(var(--text-body-rgb), 0.06);
    border: 1px solid rgba(var(--text-body-rgb), 0.12);
    border-radius: var(--radius-card);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.claims-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    padding: 20px 32px;
    background: rgba(var(--accent-gold-rgb), 0.08);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claims-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(var(--text-body-rgb), 0.05);
    align-items: center;
}

.claims-row:last-child {
    border-bottom: none;
}

.claim-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(var(--text-body-rgb), 0.85);
}

.claim-name svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.claim-basis {
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.5);
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-text p {
    font-size: 17px;
    color: rgba(var(--text-body-rgb), 0.8);
    line-height: 1.7;
}

.case-solution h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 12px;
}

.case-solution p {
    font-size: 15px;
    color: rgba(var(--text-body-rgb), 0.7);
    line-height: 1.6;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.case-result-item {
    padding: 20px;
    background: rgba(var(--text-body-rgb), 0.06);
    border-radius: 12px;
    text-align: center;
}

.case-result-item.highlight {
    background: rgba(var(--accent-gold-rgb), 0.1);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.case-result-item.final {
    background: rgba(var(--color-success-rgb), 0.1);
    border: 1px solid rgba(var(--color-success-rgb), 0.2);
}

.case-result-label {
    display: block;
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.case-result-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-body);
}

.case-result-item.highlight .case-result-value {
    color: var(--accent-gold);
}

.case-result-item.final .case-result-value {
    color: var(--color-success);
}

/* CTA, Case, Related, FAQ styles moved to _app/css/hub-shared.css */





.modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-body);
}

.modal-desc {
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.7);
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form input,
.modal-form textarea {
    padding: 14px 18px;
    background: var(--surface-elevated);
    border: 1px solid rgba(var(--text-body-rgb), 0.1);
    border-radius: 8px;
    color: var(--text-body);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: rgba(var(--text-body-rgb), 0.5);
}

.modal-form textarea {
    resize: vertical;
    min-height: 60px;
}

.modal-note {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    text-align: center;
    margin-top: 16px;
}











@media (max-width: 1024px) {
    .vz-hero {
        min-height: 100dvh;
    }
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .calc-btn {
        grid-column: span 2;
    }
    
    .stages-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stage-item:nth-child(2)::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vz-hero h1 {
        font-size: 32px;
    }
    
    .vz-hero-subtitle {
        font-size: 16px;
    }
    
    .vz-hero-content {
        padding: 120px 0 60px;
    }
    
    .section {
        padding: var(--section-padding-md) 0;
    }
    
    .vz-section-title {
        font-size: 28px;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .calc-btn {
        grid-column: span 1;
    }
    
    .calculator-block {
        padding: 32px 24px;
    }
    
    .stages-timeline {
        grid-template-columns: 1fr;
    }
    
    .stage-item::after {
        display: none;
    }
    
    .claims-header,
    .claims-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .claims-header span:last-child {
        display: none;
    }
    
    .claim-basis {
        display: block;
        margin-top: 4px;
    }
    
    .case-block {
        padding: 32px 24px;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vz-hero h1 {
        font-size: 26px;
    }
    
    .vz-hero-actions {
        flex-direction: column;
    }
    
    .vz-hero-actions .btn {
        width: 100%;
    }
    
    .vz-section-title {
        font-size: 24px;
    }
    
    .formula-box,
    .example-block {
        padding: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}
