:root {
    --tf-primary: #49754a;
    --tf-primary-dark: #284a30;
    --tf-primary-deep: #17351f;
    --tf-primary-light: #edf4e9;

    --tf-accent: #d7a63d;
    --tf-accent-light: #f5e8c4;

    --tf-dark: #203329;
    --tf-text: #536158;
    --tf-muted: #77827b;

    --tf-light: #f5f8f3;
    --tf-white: #ffffff;
    --tf-border: #dce5dc;

    --tf-danger: #b42318;

    --tf-radius: 24px;
    --tf-radius-small: 15px;

    --tf-shadow:
        0 18px 48px rgba(32, 64, 38, .10);

    --tf-shadow-soft:
        0 10px 30px rgba(32, 64, 38, .06);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--tf-text);
    background: var(--tf-white);
    font-family: "Open Sans", sans-serif;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--tf-dark);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

a {
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.required {
    color: var(--tf-danger);
}

/* ÁLTALÁNOS */

.tf-section {
    padding: 100px 0;
}

.tf-section-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.tf-section-heading.text-center {
    margin-right: auto;
    margin-left: auto;
}

.tf-section-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.12;
}

.tf-section-heading p {
    margin-bottom: 0;
    font-size: 18px;
}

.tf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--tf-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.tf-section-label::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--tf-accent);
}

/* GOMBOK */

.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 13px 27px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-weight: 800;
    text-decoration: none;

    cursor: pointer;
}

.tf-btn:hover {
    transform: translateY(-2px);
}

.tf-btn-primary {
    color: var(--tf-white);
    background: var(--tf-primary);
    box-shadow:
        0 12px 25px rgba(73, 117, 74, .25);
}

.tf-btn-primary:hover {
    color: var(--tf-white);
    background: var(--tf-primary-dark);
}

.tf-btn-secondary {
    color: var(--tf-white);
    background: var(--tf-accent);
}

.tf-btn-secondary:hover {
    color: var(--tf-white);
    background: #bd8828;
}

.tf-btn-light {
    color: var(--tf-primary-dark);
    border-color: var(--tf-border);
    background: var(--tf-white);
}

.tf-btn-light:hover {
    color: var(--tf-primary-dark);
    border-color: var(--tf-primary);
    background: var(--tf-primary-light);
}

.tf-btn-outline-light {
    color: var(--tf-white);
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.tf-btn-outline-light:hover {
    color: var(--tf-primary-dark);
    background: var(--tf-white);
}

.tf-btn-payment {
    color: var(--tf-white);
    background:
        linear-gradient(
            135deg,
            #c52570,
            #8c1751
        );
    box-shadow:
        0 12px 28px rgba(160, 28, 91, .24);
}

.tf-btn-payment:hover {
    color: var(--tf-white);
    background:
        linear-gradient(
            135deg,
            #a81f60,
            #70103f
        );
}

/* HEADER */

.tf-site-header {
    position: sticky;
    z-index: 1000;
    top: 0;

    border-bottom: 1px solid rgba(220, 229, 220, .75);
    background: rgba(255, 255, 255, .95);

    box-shadow:
        0 7px 25px rgba(32, 64, 38, .04);

    backdrop-filter: blur(14px);
}

.tf-site-header .navbar {
    min-height: 91px;
}

.tf-brand,
.tf-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--tf-primary-dark);
    text-decoration: none;
}

.tf-brand > i,
.tf-footer-brand > i {
    color: var(--tf-primary);
    font-size: 38px;
}

.tf-brand span,
.tf-footer-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.tf-brand strong,
.tf-footer-brand strong {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.tf-brand small,
.tf-footer-brand small {
    margin-top: 5px;
    color: var(--tf-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tf-site-header .nav-link {
    position: relative;
    margin: 0 4px;
    padding: 12px 10px !important;
    color: var(--tf-dark);
    font-weight: 700;
}

.tf-site-header .nav-link:hover {
    color: var(--tf-primary);
}

.tf-header-button {
    min-height: 45px;
    padding: 10px 21px;
}

/* HERO */

.tf-hero {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 760px;
    overflow: hidden;

    color: var(--tf-white);

    background:
        url("../images/hero.jpg")
        center center / cover no-repeat;
}

.tf-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(21, 52, 31, .94) 0%,
            rgba(31, 76, 43, .82) 48%,
            rgba(31, 76, 43, .38) 100%
        );
}

.tf-hero-container {
    position: relative;
    z-index: 2;
}

.tf-hero h1 {
    max-width: 800px;
    margin-bottom: 27px;

    color: var(--tf-white);
    font-size: clamp(49px, 6vw, 76px);
    line-height: 1.04;
}

.tf-hero h1 span {
    color: #edca6b;
}

.tf-hero-lead {
    max-width: 680px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, .89);
    font-size: 19px;
}

.tf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 23px;
    padding: 8px 16px;

    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 999px;

    color: var(--tf-white);
    background: rgba(255, 255, 255, .10);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}

.tf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tf-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;

    margin-top: 37px;

    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.tf-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tf-hero-trust i {
    color: #edca6b;
}

.tf-hero-card {
    padding: 38px;

    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 27px;

    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .10);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .18);

    backdrop-filter: blur(18px);
}

.tf-hero-card h2 {
    margin-bottom: 23px;
    color: var(--tf-white);
    font-size: 28px;
}

.tf-hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;
    margin-bottom: 22px;

    border-radius: 19px;

    color: var(--tf-primary-dark);
    background: #edca6b;

    font-size: 28px;
}

.tf-hero-card ul {
    display: grid;
    gap: 14px;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}

.tf-hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.tf-hero-card li i {
    margin-top: 5px;
    color: #edca6b;
}

.tf-price-box {
    padding: 22px;

    border-radius: 18px;

    color: var(--tf-dark);
    background: rgba(255, 255, 255, .92);
}

.tf-price-box span,
.tf-price-box strong,
.tf-price-box small {
    display: block;
}

.tf-price-box strong {
    margin: 4px 0;
    color: var(--tf-primary-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
}

/* HOGYAN MŰKÖDIK */

.tf-how-it-works {
    background: var(--tf-light);
}

.tf-process-card {
    position: relative;

    height: 100%;
    padding: 34px 28px;

    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius);

    background: var(--tf-white);
    box-shadow: var(--tf-shadow-soft);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tf-process-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--tf-shadow);
}

.tf-process-number {
    position: absolute;
    top: 23px;
    right: 25px;

    color: var(--tf-primary-light);
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
}

.tf-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;
    margin-bottom: 23px;

    border-radius: 20px;

    color: var(--tf-primary-dark);
    background: var(--tf-primary-light);

    font-size: 28px;
}

.tf-process-card h3 {
    margin-bottom: 13px;
    font-size: 22px;
}

/* ÉRTÉKBECSLŐ ŰRLAP */

.tf-valuation {
    background: var(--tf-white);
}

.tf-form-shell {
    overflow: hidden;

    border: 1px solid var(--tf-border);
    border-radius: 30px;

    background: var(--tf-white);
    box-shadow: var(--tf-shadow);
}

.tf-valuation-form {
    padding: 0;
}

.tf-stepper {
    display: flex;
    align-items: center;

    padding: 30px 40px;

    border-bottom: 1px solid var(--tf-border);
    background: var(--tf-light);
}

.tf-stepper-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0;

    border: 0;
    color: var(--tf-muted);
    background: transparent;

    text-align: left;
}

.tf-stepper-number {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 2px solid var(--tf-border);
    border-radius: 50%;

    background: var(--tf-white);

    font-weight: 800;
}

.tf-stepper-text {
    display: flex;
    flex-direction: column;
}

.tf-stepper-text strong {
    color: inherit;
}

.tf-stepper-text small {
    margin-top: 2px;
    font-size: 11px;
}

.tf-stepper-line {
    flex: 1;

    height: 2px;
    margin: 0 17px;

    background: var(--tf-border);
}

.tf-stepper-item.is-active {
    color: var(--tf-primary-dark);
}

.tf-stepper-item.is-active .tf-stepper-number {
    border-color: var(--tf-primary);
    color: var(--tf-white);
    background: var(--tf-primary);

    box-shadow:
        0 0 0 5px rgba(73, 117, 74, .12);
}

.tf-stepper-item.is-complete {
    color: var(--tf-primary);
}

.tf-stepper-item.is-complete .tf-stepper-number {
    border-color: var(--tf-primary);
    color: var(--tf-primary);
    background: var(--tf-primary-light);
}

.tf-form-steps {
    padding: 48px;
}

.tf-form-step {
    display: none;
}

.tf-form-step.is-active {
    display: block;
    animation: tfStepFade .3s ease;
}

@keyframes tfStepFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tf-form-step-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.tf-form-step-heading > span {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--tf-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tf-form-step-heading h3 {
    margin-bottom: 12px;
    font-size: 32px;
}

.tf-form-block {
    margin-bottom: 28px;
    padding: 31px;

    border: 1px solid var(--tf-border);
    border-radius: 20px;

    background: #fbfcfa;
}

.tf-form-block h4 {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 25px;
    font-size: 21px;
}

.tf-form-block h4 i {
    color: var(--tf-primary);
}

.tf-form-block .form-label {
    color: var(--tf-dark);
    font-size: 14px;
    font-weight: 700;
}

.tf-form-block .form-control,
.tf-form-block .form-select,
.tf-land-detail-item .form-control {
    min-height: 53px;

    border-color: var(--tf-border);
    border-radius: 12px;

    background: var(--tf-white);
}

.tf-form-block .form-control:focus,
.tf-form-block .form-select:focus,
.tf-land-detail-item .form-control:focus {
    border-color: var(--tf-primary);
    box-shadow:
        0 0 0 4px rgba(73, 117, 74, .12);
}

.tf-map {
    width: 100%;
    min-height: 480px;

    border: 1px solid var(--tf-border);
    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #edf3ea,
            #dde9d7
        );
}

.tf-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 18px;
}

.tf-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 35px;
    padding-top: 28px;

    border-top: 1px solid var(--tf-border);
}

.tf-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 28px;
    padding: 18px 20px;

    border: 1px solid #d6e4cf;
    border-radius: 14px;

    color: var(--tf-primary-dark);
    background: var(--tf-primary-light);
}

.tf-form-notice i {
    margin-top: 4px;
    font-size: 20px;
}

.tf-form-notice p {
    margin: 3px 0 0;
}

.tf-add-land-detail-wrapper {
    margin-top: 25px;
    text-align: center;
}

/* ÖSSZEGZÉS */

.tf-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;

    margin-bottom: 22px;
}

.tf-summary-card {
    padding: 27px;

    border: 1px solid var(--tf-border);
    border-radius: 18px;

    background: var(--tf-light);
}

.tf-summary-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;
    font-size: 20px;
}

.tf-summary-card h4 i {
    color: var(--tf-primary);
}

.tf-summary-card dl {
    margin: 0;
}

.tf-summary-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    padding: 10px 0;

    border-bottom: 1px solid var(--tf-border);
}

.tf-summary-card dl > div:last-child {
    border-bottom: 0;
}

.tf-summary-card dt {
    color: var(--tf-muted);
    font-weight: 600;
}

.tf-summary-card dd {
    margin: 0;
    color: var(--tf-dark);
    font-weight: 700;
    text-align: right;
}

.tf-summary-placeholder {
    padding: 55px 25px;
    text-align: center;
}

.tf-summary-placeholder i {
    margin-bottom: 18px;
    color: var(--tf-primary);
    font-size: 48px;
}

.tf-payment-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 28px;
    padding: 28px;

    border-radius: 20px;

    color: var(--tf-white);
    background:
        linear-gradient(
            135deg,
            var(--tf-primary-dark),
            var(--tf-primary-deep)
        );
}

.tf-payment-card span,
.tf-payment-card strong,
.tf-payment-card small {
    display: block;
}

.tf-payment-card strong {
    margin: 4px 0;
    color: var(--tf-white);
    font-family: "Montserrat", sans-serif;
    font-size: 31px;
}

.tf-payment-card img {
    max-width: 170px;
    max-height: 70px;
    object-fit: contain;
}

.tf-terms-check {
    margin-top: 25px;
   
    padding: 20px;
     padding-left: 30px;


    border: 1px solid var(--tf-border);
    border-radius: 14px;

    background: var(--tf-light);
}

/* GYIK */

.tf-faq {
    background: var(--tf-light);
}

.tf-faq-help {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 26px;

    border-radius: 20px;

    background: var(--tf-primary-dark);
    box-shadow: var(--tf-shadow);

    color: rgba(255, 255, 255, .82);
}

.tf-faq-help-icon {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 17px;

    color: var(--tf-primary-dark);
    background: #edca6b;

    font-size: 24px;
}

.tf-faq-help strong {
    display: block;
    margin-bottom: 5px;
    color: var(--tf-white);
    font-family: "Montserrat", sans-serif;
}

.tf-faq-help p {
    margin-bottom: 9px;
}

.tf-faq-help a {
    color: #edca6b;
    font-weight: 700;
    text-decoration: none;
}

.tf-faq-accordion {
    display: grid;
    gap: 14px;
}

.tf-faq-accordion .accordion-item {
    overflow: hidden;

    border: 1px solid var(--tf-border);
    border-radius: 16px;

    background: var(--tf-white);
    box-shadow: var(--tf-shadow-soft);
}

.tf-faq-accordion .accordion-button {
    padding: 22px 24px;

    color: var(--tf-dark);
    background: var(--tf-white);

    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.tf-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--tf-primary-dark);
    background: var(--tf-primary-light);
    box-shadow: none;
}

.tf-faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.tf-faq-accordion .accordion-body {
    padding: 22px 24px;
}

/* FOOTER */

.tf-site-footer {
    padding: 75px 0 25px;

    color: rgba(255, 255, 255, .76);

    background:
        linear-gradient(
            135deg,
            var(--tf-primary-deep),
            #0d2916
        );
}

.tf-footer-brand {
    margin-bottom: 22px;
    color: var(--tf-white);
}

.tf-footer-brand > i {
    color: #edca6b;
}

.tf-footer-brand small {
    color: rgba(255, 255, 255, .52);
}

.tf-footer-about {
    max-width: 430px;
}

.tf-site-footer h5 {
    margin-bottom: 21px;
    color: var(--tf-white);
}

.tf-footer-menu {
    display: grid;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tf-footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.tf-footer-menu a:hover {
    color: #edca6b;
    transform: translateX(4px);
}

.tf-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;

    margin-top: 55px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, .15);

    color: rgba(255, 255, 255, .53);
    font-size: 13px;
}

/* BETÖLTÉSI RÉTEG */

.tf-loading-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(14, 34, 19, .72);
    backdrop-filter: blur(5px);
}

.tf-loading-overlay[hidden] {
    display: none !important;
}

.tf-loading-content {
    color: var(--tf-white);
    text-align: center;
}

.tf-loading-content .spinner-border {
    width: 3rem;
    height: 3rem;
}

.tf-loading-content p {
    margin: 18px 0 0;
}

/* MOBIL */

@media (max-width: 991px) {

    .tf-section {
        padding: 78px 0;
    }

    .tf-hero {
        min-height: 690px;
    }

    .tf-hero-overlay {
        background: rgba(21, 52, 31, .86);
    }

    .tf-hero-card {
        margin-bottom: 50px;
    }

    .tf-stepper {
        overflow-x: auto;
        padding: 24px;
    }

    .tf-stepper-text {
        display: none;
    }

    .tf-stepper-line {
        min-width: 35px;
    }

    .tf-summary-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .tf-section {
        padding: 64px 0;
    }

    .tf-hero {
        min-height: auto;
    }

    .tf-hero-container {
        padding-top: 85px;
        padding-bottom: 75px;
    }

    .tf-hero h1 {
        font-size: 44px;
    }

    .tf-hero-actions {
        flex-direction: column;
    }

    .tf-hero-actions .tf-btn {
        width: 100%;
    }

    .tf-hero-trust {
        flex-direction: column;
        gap: 11px;
    }

    .tf-form-steps {
        padding: 29px 20px;
    }

    .tf-form-block {
        padding: 23px 18px;
    }

    .tf-step-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .tf-step-actions .tf-btn {
        width: 100%;
    }

    .tf-payment-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .tf-footer-bottom {
        flex-direction: column;
    }

}

.tf-map {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--tf-border);
    border-radius: 18px;
    background: #e8eee5;
}

.tf-map-message {
    margin-top: 15px;
    padding: 13px 17px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.tf-map-message-success {
    border: 1px solid #a9d5b4;
    color: #0f5132;
    background: #d1e7dd;
}

.tf-map-message-error {
    border: 1px solid #f0b6bc;
    color: #842029;
    background: #f8d7da;
}

/* ============================================================
   ÉRTÉKMÓDOSÍTÓ KÖRÜLMÉNYEK
   ============================================================ */

.tf-property-conditions {
    margin-bottom: 55px;
}

.tf-condition-list {
    display: grid;
    gap: 18px;
}

.tf-condition-card {
    margin: 0;
    padding: 27px;

    border: 1px solid var(--tf-border);
    border-radius: 20px;

    background: #fbfcfa;

    box-shadow:
        0 8px 25px rgba(32, 64, 38, .045);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.tf-condition-card:hover {
    border-color:
        rgba(73, 117, 74, .32);
}

.tf-condition-heading {
    display: flex;
    align-items: center;
    gap: 17px;

    margin-bottom: 21px;
}

.tf-condition-icon {
    display: flex;

    flex: 0 0 55px;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 16px;

    color: var(--tf-primary-dark);

    background:
        var(--tf-primary-light);

    font-size: 22px;
}

.tf-condition-heading-text {
    flex: 1;
}

.tf-condition-heading h4 {
    margin: 0 0 4px;

    font-size: 19px;
}

.tf-condition-heading p {
    margin: 0;

    color: var(--tf-muted);

    font-size: 14px;
}


/* RADIO KÁRTYÁK */

.tf-condition-options {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;
}

.tf-radio-card {
    position: relative;

    flex: 1 1 180px;

    margin: 0;

    cursor: pointer;
}

.tf-radio-card input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.tf-radio-card-content {
    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 55px;

    padding: 13px 17px;

    border: 2px solid
        var(--tf-border);

    border-radius: 14px;

    color: var(--tf-dark);

    background: var(--tf-white);

    transition:
        border-color .18s ease,
        background-color .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.tf-radio-card:hover
.tf-radio-card-content {
    border-color:
        rgba(73, 117, 74, .55);

    transform:
        translateY(-1px);
}


/* SAJÁT RADIO */

.tf-radio-indicator {
    display: flex;

    flex: 0 0 23px;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border: 2px solid #acb8ad;
    border-radius: 50%;

    color: transparent;

    background: var(--tf-white);

    font-size: 10px;

    transition: .18s ease;
}


/* KIJELÖLT */

.tf-radio-card input:checked
+ .tf-radio-card-content {

    border-color:
        var(--tf-primary);

    color:
        var(--tf-primary-dark);

    background:
        var(--tf-primary-light);

    box-shadow:
        0 0 0 4px
        rgba(73, 117, 74, .10);
}

.tf-radio-card input:checked
+ .tf-radio-card-content
.tf-radio-indicator {

    border-color:
        var(--tf-primary);

    color:
        var(--tf-white);

    background:
        var(--tf-primary);
}


/* BILLENTYŰZET */

.tf-radio-card input:focus-visible
+ .tf-radio-card-content {

    outline:
        3px solid
        rgba(73, 117, 74, .25);

    outline-offset: 2px;
}


/* HIBA */

.tf-condition-error {
    display: none;

    align-items: center;

    gap: 7px;

    margin-top: 13px;

    color:
        var(--tf-danger);

    font-size: 13px;

    font-weight: 700;
}

.tf-condition-card.has-error {

    border-color:
        #dc3545;

    background:
        #fffafa;

    box-shadow:
        0 0 0 4px
        rgba(220, 53, 69, .07);
}

.tf-condition-card.has-error
.tf-condition-error {

    display: flex;
}


/* ============================================================
   ALRÉSZLETEK FEJLÉCE
   ============================================================ */

.tf-land-details-heading {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    margin-bottom: 28px;

    padding-top: 45px;

    border-top:
        1px solid
        var(--tf-border);
}

.tf-land-details-heading h4 {

    margin-bottom: 7px;

    font-size: 28px;
}

.tf-land-details-heading p {
    margin-bottom: 0;
}

.tf-land-details-stats {

    display: flex;

    gap: 12px;
}

.tf-land-details-stats > div {

    min-width: 140px;

    padding: 14px 18px;

    border:
        1px solid
        var(--tf-border);

    border-radius: 14px;

    background:
        var(--tf-light);

    text-align: center;
}

.tf-land-details-stats strong,
.tf-land-details-stats span {

    display: block;
}

.tf-land-details-stats strong {

    color:
        var(--tf-primary-dark);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 20px;
}

.tf-land-details-stats span {

    margin-top: 3px;

    color:
        var(--tf-muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* MOBIL */

@media (max-width: 767px) {

    .tf-condition-card {
        padding: 21px 17px;
    }

    .tf-condition-heading {
        align-items: flex-start;
    }

    .tf-condition-options {
        flex-direction: column;
    }

    .tf-radio-card {
        flex-basis: auto;
        width: 100%;
    }

    .tf-land-details-heading {

        align-items: stretch;

        flex-direction: column;
    }

    .tf-land-details-stats {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .tf-land-details-stats > div {
        min-width: 0;
    }
}



/* ============================================================
   ALRÉSZLET KÁRTYA
   ============================================================ */

.tf-land-details {
    display: grid;
    gap: 28px;
}

.tf-land-detail-item {
    position: relative;

    padding: 34px;

    border: 1px solid var(--tf-border);
    border-radius: 24px;

    background: var(--tf-white);

    box-shadow:
        0 16px 38px rgba(32, 64, 38, .08);
}

.tf-land-detail-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 5px;

    border-radius: 24px 0 0 24px;

    background:
        linear-gradient(
            180deg,
            var(--tf-primary),
            var(--tf-accent)
        );
}


/* ============================================================
   ALRÉSZLET FEJLÉC
   ============================================================ */

.tf-land-detail-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
    padding-bottom: 23px;

    border-bottom:
        1px solid
        var(--tf-border);
}

.tf-land-detail-number {
    display: inline-flex;

    align-items: center;

    margin-bottom: 7px;

    padding: 6px 12px;

    border-radius: 999px;

    color: var(--tf-primary-dark);

    background: var(--tf-primary-light);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.tf-land-detail-header h4 {
    margin: 0;

    color: var(--tf-dark);

    font-size: 24px;
}

.tf-land-detail-remove {
    display: flex;

    flex: 0 0 44px;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #f0c3c0;
    border-radius: 50%;

    color: #b42318;

    background: #fff2f1;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.tf-land-detail-remove:hover {
    color: #fff;
    background: #b42318;

    transform: scale(1.05);
}


/* ============================================================
   TERÜLET / AK MEZŐK
   ============================================================ */

.tf-land-detail-item .form-label {
    margin-bottom: 8px;

    color: var(--tf-dark);

    font-size: 14px;
    font-weight: 800;
}

.tf-land-detail-item .form-control {
    min-height: 54px;

    border-color: var(--tf-border);

    background: #fff;
}

.tf-land-detail-item .form-control:focus {
    border-color: var(--tf-primary);

    box-shadow:
        0 0 0 4px
        rgba(73, 117, 74, .11);
}

.tf-land-detail-item .input-group-text {
    min-width: 60px;

    justify-content: center;

    border-color: var(--tf-border);

    color: var(--tf-primary-dark);

    background: var(--tf-primary-light);

    font-weight: 900;
}

.tf-land-detail-item .form-text {
    display: block;

    margin-top: 7px;

    color: var(--tf-muted);

    font-size: 12px;
}


/* ============================================================
   BELSŐ FIELDSET BLOKKOK
   ============================================================ */

.tf-form-fieldset {
    margin-top: 32px;
    padding: 28px;

    border: 1px solid #e3ebe0;
    border-radius: 19px;

    background:
        linear-gradient(
            180deg,
            #fafcf8,
            #f5f8f3
        );
}

.tf-fieldset-heading {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 23px;
}

.tf-fieldset-heading h5 {
    margin: 0 0 5px;

    color: var(--tf-dark);

    font-size: 20px;
}

.tf-fieldset-heading p {
    margin: 0;

    color: var(--tf-muted);

    font-size: 13px;
}

.tf-fieldset-heading > i {
    color: var(--tf-primary);

    font-size: 27px;
}


/* ============================================================
   MŰVELÉSI ÁG RADIO KÁRTYÁK
   ============================================================ */

.tf-option-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.tf-option-card {
    position: relative;

    margin: 0;

    cursor: pointer;
}

.tf-option-input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.tf-option-content {
    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 9px;

    min-height: 108px;

    padding: 16px 12px;

    border: 2px solid
        var(--tf-border);

    border-radius: 15px;

    color: var(--tf-dark);

    background: var(--tf-white);

    text-align: center;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease,
        color .2s ease;
}

.tf-option-content i {
    color: var(--tf-primary);

    font-size: 25px;

    transition:
        transform .2s ease;
}

.tf-option-content strong {
    line-height: 1.25;

    font-size: 14px;
}

.tf-option-content small {
    color: var(--tf-muted);

    font-size: 11px;
    line-height: 1.35;
}

.tf-option-card:hover
.tf-option-content {
    border-color:
        rgba(73, 117, 74, .50);

    transform:
        translateY(-2px);
}

.tf-option-card:hover
.tf-option-content i {
    transform: scale(1.08);
}


/* kiválasztott művelési ág */

.tf-option-input:checked
+ .tf-option-content {

    border-color:
        var(--tf-primary);

    color:
        var(--tf-primary-dark);

    background:
        var(--tf-primary-light);

    box-shadow:
        0 0 0 4px
        rgba(73, 117, 74, .10);
}

.tf-option-input:checked
+ .tf-option-content i {

    color:
        var(--tf-primary-dark);
}


/* Kivett terület nagyobb kártya */

.tf-option-card-wide {
    grid-column: span 2;
}

.tf-option-card-wide
.tf-option-content {

    min-height: 108px;

    background:
        linear-gradient(
            135deg,
            #fff8eb,
            #fdf2db
        );

    border-color:
        #ecd8a7;
}

.tf-option-card-wide
.tf-option-content i {

    color:
        #b67a16;
}

.tf-option-card-wide
.tf-option-input:checked
+ .tf-option-content {

    border-color:
        #d7a63d;

    color:
        #6f4b0b;

    background:
        #f7e8c4;

    box-shadow:
        0 0 0 4px
        rgba(215, 166, 61, .13);
}


/* ============================================================
   KIVETT TERÜLET ALTÍPUS
   ============================================================ */

.tf-removed-options {
    margin-top: 26px;
    padding-top: 24px;

    border-top:
        1px solid
        var(--tf-border);
}

.tf-removed-options h6 {
    margin-bottom: 16px;

    color: var(--tf-dark);

    font-size: 16px;
    font-weight: 800;
}

.tf-option-grid-small {
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
}

.tf-option-grid-small
.tf-option-content {

    min-height: 70px;

    padding: 12px 10px;
}


/* ============================================================
   MINŐSÉGI OSZTÁLY
   ============================================================ */

.tf-quality-grid {
    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 10px;
}

.tf-quality-option {
    position: relative;

    margin: 0;

    cursor: pointer;
}

.tf-quality-option
.tf-option-input {

    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.tf-quality-option span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;

    border: 2px solid
        var(--tf-border);

    border-radius: 14px;

    color: var(--tf-dark);

    background: var(--tf-white);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 18px;
    font-weight: 800;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.tf-quality-option:hover span {
    border-color:
        rgba(73, 117, 74, .55);

    transform:
        translateY(-2px);
}

.tf-quality-option
input:checked + span {

    border-color:
        var(--tf-primary);

    color:
        var(--tf-white);

    background:
        var(--tf-primary);

    box-shadow:
        0 0 0 4px
        rgba(73, 117, 74, .12);
}


/* ============================================================
   HIBÁS ÁLLAPOT
   ============================================================ */

.tf-form-fieldset.has-error {
    border-color: #dc3545;

    background: #fffafa;

    box-shadow:
        0 0 0 4px
        rgba(220, 53, 69, .07);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {

    .tf-option-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .tf-option-grid-small {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .tf-quality-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .tf-land-detail-item {
        padding: 24px 18px;
    }

    .tf-form-fieldset {
        padding: 22px 16px;
    }

    .tf-land-detail-header h4 {
        font-size: 21px;
    }

    .tf-option-grid,
    .tf-option-grid-small {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .tf-option-card-wide {
        grid-column: span 2;
    }

    .tf-quality-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 480px) {

    .tf-option-grid,
    .tf-option-grid-small {
        grid-template-columns: 1fr;
    }

    .tf-option-card-wide {
        grid-column: auto;
    }

    .tf-quality-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}
.tf-consent-box {
    margin: 30px 0 20px;
    padding: 20px 22px;

    border: 1px solid var(--tf-border);
    border-radius: 16px;

    background: #f8faf7;
}

.tf-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin: 0;

    cursor: pointer;

    color: var(--tf-dark);
    line-height: 1.5;
}

.tf-consent-label input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.tf-consent-check {
    display: flex;

    flex: 0 0 25px;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    margin-top: 1px;

    border: 2px solid #a9b6aa;
    border-radius: 7px;

    color: transparent;

    background: #fff;

    transition: .2s ease;
}

.tf-consent-label
input:checked
+ .tf-consent-check {

    border-color:
        var(--tf-primary);

    color: #fff;

    background:
        var(--tf-primary);
}

.tf-consent-label a {
    color: var(--tf-primary-dark);
    font-weight: 800;
}

#saveAndPayButton:disabled,
#saveAndPayButton.is-disabled {

    opacity: .45;

    cursor: not-allowed;

    filter: grayscale(.65);

    transform: none;
}

/*
|--------------------------------------------------------------------------
| Értékbecslés feldolgozás overlay
|--------------------------------------------------------------------------
*/

.tf-processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(20, 30, 20, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.tf-processing-overlay[hidden] {
    display: none;
}


.tf-processing-card {
    width: 100%;
    max-width: 480px;

    padding: 42px 38px;

    background: #fff;
    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.20);
}


.tf-processing-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(84, 128, 51, 0.12);
    color: #548033;

    font-size: 30px;
}


.tf-processing-card h3 {
    margin: 0 0 12px;

    color: #354b27;
    font-size: 24px;
    font-weight: 700;
}


.tf-processing-card p {
    margin: 0 0 25px;

    color: #6b7466;
    font-size: 15px;
}


/*
|--------------------------------------------------------------------------
| Progress bar
|--------------------------------------------------------------------------
*/

.tf-processing-progress {
    position: relative;

    width: 100%;
    height: 8px;

    margin-bottom: 18px;

    overflow: hidden;

    background: #e8ede5;
    border-radius: 20px;
}


.tf-processing-progress-bar {
    position: absolute;

    top: 0;
    left: -40%;

    width: 40%;
    height: 100%;

    background: #548033;
    border-radius: 20px;

    animation:
        tfProcessingProgress
        1.3s
        ease-in-out
        infinite;
}


@keyframes tfProcessingProgress {

    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}


.tf-processing-card small {
    color: #8a9186;
    font-size: 13px;
}

body.tf-processing-active {
    overflow: hidden;
}


.tf-condition-auto {
    position: relative;
}

.tf-auto-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 10px;
    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(84, 128, 51, 0.10);
    color: #548033;

    font-size: 12px;
    font-weight: 700;
}

.tf-condition-auto .form-control {
    background: #fbfdf9;
}