/* 27103 SGK Teşvik Hesaplama */

.tesvik27103-page {
    font-family: inherit;
    background: #f5f8fc;
    color: #0f172a;
}

.tesvik27103-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.tesvik27103-hero {
    padding: 70px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(255, 128, 0, .16), transparent 32%),
        linear-gradient(135deg, #071b3a 0%, #0b2f63 58%, #123f82 100%);
    color: #fff;
    overflow: hidden;
}

.tesvik27103-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
}

.tesvik27103-badge,
.tesvik27103-section-head span,
.tesvik27103-content-text span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 128, 0, .14);
    color: #ff9f2f;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
}

.tesvik27103-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -1.4px;
}

.tesvik27103-hero p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    max-width: 680px;
    margin: 0 0 26px;
}

.tesvik27103-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tesvik27103-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.tesvik27103-btn.primary {
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255,122,0,.28);
}

.tesvik27103-btn.secondary {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
}

.tesvik27103-btn:hover {
    transform: translateY(-2px);
}

.tesvik27103-hero-image img,
.tesvik27103-content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.tesvik27103-calculator-section {
    padding: 64px 0;
}

.tesvik27103-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.tesvik27103-section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
    color: #071b3a;
    letter-spacing: -1px;
}

.tesvik27103-section-head p {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.tesvik27103-calculator-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    background: #fff;
    border: 1px solid #e5edf7;
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
}

.tesvik27103-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tesvik27103-form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
}

.tesvik27103-form-group input,
.tesvik27103-form-group select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8e2ef;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 15px;
    color: #0f172a;
    background: #f8fbff;
    outline: none;
    transition: .2s ease;
}

.tesvik27103-form-group input:focus,
.tesvik27103-form-group select:focus {
    border-color: #ff7a00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,122,0,.12);
}

.tesvik27103-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff7a00, #ff9f2f);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(255,122,0,.24);
}

.tesvik27103-result {
    background: linear-gradient(180deg, #071b3a, #0b2f63);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    min-height: 100%;
}

.tesvik27103-result-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255,255,255,.76);
    line-height: 1.7;
    border: 1px dashed rgba(255,255,255,.24);
    border-radius: 18px;
    padding: 22px;
}

.tesvik27103-result h3 {
    margin: 0 0 18px;
    font-size: 24px;
}

.tesvik27103-result-list {
    display: grid;
    gap: 12px;
}

.tesvik27103-result-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tesvik27103-result-row span {
    color: rgba(255,255,255,.78);
}

.tesvik27103-result-row strong {
    color: #fff;
    text-align: right;
}

.tesvik27103-result-total {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,122,0,.18);
    border: 1px solid rgba(255,122,0,.32);
}

.tesvik27103-result-total span {
    display: block;
    color: rgba(255,255,255,.82);
    margin-bottom: 6px;
}

.tesvik27103-result-total strong {
    display: block;
    font-size: 30px;
    color: #ffb35c;
}

.tesvik27103-warning {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(239,68,68,.16);
    border: 1px solid rgba(239,68,68,.35);
    color: #fecaca;
    line-height: 1.6;
}

.tesvik27103-success {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(34,197,94,.16);
    border: 1px solid rgba(34,197,94,.35);
    color: #bbf7d0;
    line-height: 1.6;
}

.tesvik27103-content-section {
    padding: 66px 0 80px;
    background: #fff;
}

.tesvik27103-content-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 44px;
    align-items: center;
}

.tesvik27103-content-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #071b3a;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.tesvik27103-content-text p {
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.tesvik27103-note {
    padding: 16px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412 !important;
    font-weight: 700;
}

@media (max-width: 980px) {
    .tesvik27103-hero-grid,
    .tesvik27103-calculator-card,
    .tesvik27103-content-grid {
        grid-template-columns: 1fr;
    }

    .tesvik27103-hero {
        padding: 46px 0 38px;
    }
}

@media (max-width: 640px) {
    .tesvik27103-container {
        width: min(100% - 22px, 1180px);
    }

    .tesvik27103-hero h1 {
        font-size: 34px;
    }

    .tesvik27103-hero p {
        font-size: 16px;
    }

    .tesvik27103-hero-actions {
        flex-direction: column;
    }

    .tesvik27103-btn {
        width: 100%;
    }

    .tesvik27103-calculator-section {
        padding: 42px 0;
    }

    .tesvik27103-calculator-card {
        padding: 18px;
        border-radius: 22px;
    }

    .tesvik27103-form-grid {
        grid-template-columns: 1fr;
    }

    .tesvik27103-result {
        padding: 18px;
    }

    .tesvik27103-result-row {
        flex-direction: column;
        gap: 4px;
    }

    .tesvik27103-result-row strong {
        text-align: left;
    }

    .tesvik27103-content-section {
        padding: 44px 0 58px;
    }
}