/* ============================================ */
/* SCROLLSPY – TOPNAV AKTÍV ÁLLAPOT             */
/* ============================================ */
.dajc-chip-link {
    position: relative;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dajc-chip-link.dajc-nav-active {
    background: var(--dajc-accent-soft);
    color: var(--dajc-accent-dark);
    border-color: #cfe0b0;
    font-weight: 800;
}

.dajc-chip-link.dajc-nav-active::after {
    display: none;
	content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dajc-accent-dark);
}

/* ============================================ */
/* SCROLL PROGRESS BAR                         */
/* ============================================ */
.dajc-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(167, 207, 111, 0.15);
    z-index: 1000;
    pointer-events: none;
}

.dajc-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9fc96a 0%, #b8dc84 100%);
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
}

/* ============================================ */
/* SCROLL-TRIGGERED ANIMÁCIÓK                  */
/* ============================================ */
.dajc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dajc-reveal.dajc-visible {
    opacity: 1;
    transform: translateY(0);
}

.dajc-reveal-delay-1 { transition-delay: 0.07s; }
.dajc-reveal-delay-2 { transition-delay: 0.14s; }
.dajc-reveal-delay-3 { transition-delay: 0.21s; }
.dajc-reveal-delay-4 { transition-delay: 0.28s; }
.dajc-reveal-delay-5 { transition-delay: 0.35s; }

/* Form blokkok reveal */
.dajc-form-block {
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s ease,
                border-color 0.2s ease;
}

/* ============================================ */
/* "EZT VÁLASZTOM" GOMB – MODELL KÁRTYÁN       */
/* ============================================ */
.dajc-model-card {
    position: relative;
    cursor: default;
}

.dajc-model-card .dajc-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dajc-model-select-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    border: 1.5px solid var(--dajc-line);
    background: #fff;
    color: var(--dajc-text-soft);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    padding: 0 16px;
    margin-top: 4px;
}

.dajc-model-select-btn:hover {
    background: var(--dajc-accent-soft);
    border-color: #cfe0b0;
    color: var(--dajc-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(167, 207, 111, 0.18);
}

.dajc-model-select-btn.dajc-model-selected {
    background: linear-gradient(135deg, #b8dc84 0%, #9fc96a 100%);
    border-color: #9fc96a;
    color: #25301f;
    box-shadow: 0 8px 20px rgba(167, 207, 111, 0.28);
}

.dajc-model-select-btn.dajc-model-selected::before {
    content: "✓ ";
}

/* Toast értesítő */
.dajc-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 14px 22px;
    border-radius: 999px;
    background: #25301f;
    color: #d7efb1;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.dajc-toast.dajc-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================ */
/* VALÓS IDEJŰ ÖSSZEFOGLALÓ PANEL              */
/* ============================================ */
.dajc-summary-panel {
    position: sticky;
    bottom: 20px;
    z-index: 100;
    margin-top: 24px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.dajc-summary-panel.dajc-summary-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dajc-summary-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(37, 48, 31, 0.95);
    border: 1px solid rgba(184, 220, 132, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 900px;
    margin: 0 auto;
}

.dajc-summary-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(215, 239, 177, 0.70);
    white-space: nowrap;
}

.dajc-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.dajc-summary-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(184, 220, 132, 0.14);
    border: 1px solid rgba(184, 220, 132, 0.22);
    color: #d7efb1;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    animation: dajc-chip-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes dajc-chip-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dajc-summary-chip-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(184, 220, 132, 0.25);
    font-size: 11px;
    font-weight: 900;
    color: #b8dc84;
}

.dajc-summary-empty {
    color: rgba(215, 239, 177, 0.45);
    font-size: 14px;
    font-style: italic;
    flex: 1;
}

.dajc-summary-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8dc84 0%, #9fc96a 100%);
    color: #25301f;
    font-size: 14px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(159, 201, 106, 0.25);
}

.dajc-summary-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(159, 201, 106, 0.35);
}

.dajc-summary-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(37, 48, 31, 0.25);
    font-size: 12px;
    font-weight: 900;
    margin-left: 4px;
}

/* ============================================ */
/* SURFACE GROUP HEADER FEJLESZTÉS             */
/* ============================================ */
.dajc-surface-group {
    margin-bottom: 48px;
}

.dajc-surface-group-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dajc-line-soft);
}

.dajc-surface-group-title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--dajc-text);
    letter-spacing: -0.02em;
}

.dajc-surface-group-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dajc-text-soft);
    /*max-width: 70ch;*/
}

/* ============================================ */
/* TECH FSC KONTÉNER                           */
/* ============================================ */
.dajc-tech-fsc-container {
    display: grid;
    gap: 20px;
}
