.navbar-logo {
    max-height: 40px;
    height: auto !important;
}

/* Desktop only: invert logo to white for transparent (non-sticky) navbar over hero image */
@media (min-width: 1024px) {
    .navbar:not(.is-sticky) .navbar-logo {
        filter: brightness(0) invert(1);
    }
}

.pricing-section {
     background: #fff;
 }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

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

@media (max-width: 1023px) {
    .contact-form-col { order: 1; }
    .contact-info-col { order: 2; }
    .contact-heading-desktop { display: none; }
}
@media (min-width: 1024px) {
    .contact-heading-mobile { display: none; }
}

@media (max-width: 640px) {
    .pricing-card--model .pc-header { padding: 1.5rem 1rem 1.25rem; }
    .pc-fee-block  { padding: .75rem .625rem .625rem; min-width: 0; }
    .pc-fee-number { font-size: 2rem !important; }
    .pc-fee-plus   { font-size: 1rem; }
    .pc-fee-label  { font-size: .58rem !important;; letter-spacing: .03em; white-space: nowrap; }
}

.pricing-card {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card--model .pc-header {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid #f1f5f0;
}

.pc-eyebrow {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(var(--theme-primary));
    margin-bottom: 1.5rem;
}

.pc-fee-row {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pc-fee-block {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(var(--theme-primary) / .06);
    border-radius: 0.5rem;
    padding: 1.25rem 1rem 1rem;
    border: 1.5px solid rgb(var(--theme-primary) / .12);
}

/* GRÜN statt schwarz */
.pc-fee-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(var(--theme-primary));
    line-height: 1;
    letter-spacing: -.03em;
}

.pc-fee-label {
    font-size: .72rem;
    font-weight: 600;
    color: #9ca3af;
    margin-top: .4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* GRÖSSER */
.pc-fee-plus {
    font-size: 2.5rem;
    font-weight: 300;
    color: #d1d5db;
    flex-shrink: 0;
    line-height: 1;
}

.pc-desc {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 1.25rem;
    text-align: center;
}

.pricing-card--model .pc-body {
    padding: 1.75rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-includes-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.pc-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.pc-includes-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: #374151;
    font-weight: 500;
}

.pc-check {
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background: rgb(var(--theme-primary) / .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-check svg {
    width: .8rem;
    height: .8rem;
    stroke: rgb(var(--theme-primary));
    stroke-width: 2.5;
}

.pc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .25rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    margin-top: 2rem;
    border: none;
    font-family: inherit;
}

.pc-btn--outline {
    background: transparent;
    border: 2px solid rgb(var(--theme-primary));
    color: rgb(var(--theme-primary));
}

.pc-btn--outline:hover {
    background: rgb(var(--theme-primary));
    color: #fff;
}

.pc-btn--solid {
    background: rgb(var(--theme-primary));
    color: #fff;
    border: 2px solid rgb(var(--theme-primary));
}

.pc-btn--solid:hover {
    background: rgb(var(--theme-secondary));
    border-color: rgb(var(--theme-secondary));
}

.pricing-card--calc .pc-calc-header {
    padding: 2.5rem 2.5rem 1.75rem;
    border-bottom: 1px solid #f1f5f0;
}

.pricing-card--calc .pc-calc-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--theme-secondary));
    margin: .5rem 0 0;
}

.pricing-card--calc .pc-body {
    padding: 1.75rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.calc-field label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: .5rem;
}

.calc-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: border-color .2s;
    background: #fff;
}

.calc-input-wrap:focus-within {
    border-color: rgb(var(--theme-primary));
}

.calc-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: .75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(var(--theme-secondary));
    background: transparent;
    min-width: 0;
    width: 100%;
    font-family: inherit;
    /* Spinner ausblenden damit kein overflow */
    -moz-appearance: textfield;
}

.calc-input-wrap input::-webkit-outer-spin-button,
.calc-input-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-input-unit {
    padding: 0 .875rem;
    font-size: .8rem;
    font-weight: 700;
    color: #9ca3af;
    background: #f9fafb;
    border-left: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    letter-spacing: .04em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Stacked statt nebeneinander – kein Abschneiden mehr */
.calc-row-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-toggle-wrap {
    background: #f3f4f6;
    border-radius: 0.375rem;
    padding: .25rem;
    display: flex;
}

.calc-toggle-btn {
    flex: 1;
    padding: .6rem 1rem;
    border-radius: 0.25rem;
    font-size: .875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    background: transparent;
    color: #9ca3af;
    font-family: inherit;
}

.calc-toggle-btn.active {
    background: rgb(var(--theme-primary));
    color: #fff;
    box-shadow: 0 2px 8px rgb(var(--theme-primary) / .35);
}

.calc-mode-desc {
    font-size: .78rem;
    color: #9ca3af;
    margin-top: .4rem;
    line-height: 1.5;
}

.calc-results {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1.5px solid #f1f5f0;
    margin-top: auto;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .875rem 1.25rem;
}

.calc-result-row + .calc-result-row {
    border-top: 1px solid #f1f5f0;
}

.calc-result-row:last-child {
    background: rgb(var(--theme-primary) / .05);
    border-top: 2px solid rgb(var(--theme-primary) / .15);
    padding: 1.125rem 1.25rem;
}

.calc-result-label {
    font-size: .875rem;
    color: #6b7280;
    font-weight: 500;
}

.calc-result-row:last-child .calc-result-label {
    font-weight: 700;
    color: rgb(var(--theme-secondary));
    font-size: .95rem;
}

.calc-result-value {
    font-size: .95rem;
    font-weight: 600;
    color: rgb(var(--theme-secondary));
    font-variant-numeric: tabular-nums;
}

.calc-result-value--muted {
    color: #9ca3af;
    font-size: .875rem;
    font-weight: 500;
}

.calc-result-value--payout {
    font-size: 1.6rem;
    font-weight: 800;
    color: rgb(var(--theme-primary));
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}
