/*
Theme Name:  coaching-ferficoaching
Description: Ferficoaching.hu Alumni coaching platform
Author:      Hajdú Lajos
Author URI:  https://www.kreativoldal.hu
Version:     2.0.0
Text Domain: coaching-ferficoaching
*/

/* ============================================================
   CSS VÁLTOZÓK – Dark Luxury rendszer
   ============================================================ */

:root {
    /* Háttér rétegek */
    --fc-bg:           #07070E;
    --fc-bg-surface:   #0E0E1C;
    --fc-bg-elevated:  #141428;
    --fc-bg-card:      rgba(255, 255, 255, 0.03);

    /* Brand színek */
    --fc-navy:         #263C5D;
    --fc-navy-glow:    rgba(38, 60, 93, 0.4);
    --fc-red:          #CF0D0D;
    --fc-red-hover:    #E81212;
    --fc-red-glow:     rgba(207, 13, 13, 0.25);

    /* Arany rendszer */
    --fc-gold:         #C7A446;
    --fc-gold-light:   #E8C97A;
    --fc-gold-dim:     rgba(199, 164, 70, 0.12);
    --fc-gold-border:  rgba(199, 164, 70, 0.18);
    --fc-gold-hover:   rgba(199, 164, 70, 0.30);

    /* Szöveg */
    --fc-text:         #F0EDE6;
    --fc-text-warm:    #E8DFD0;
    --fc-text-muted:   #7A7A90;
    --fc-text-dim:     #44445A;

    /* Szegélyek */
    --fc-border:       rgba(199, 164, 70, 0.12);
    --fc-border-light: rgba(255, 255, 255, 0.06);

    /* Árnyékok */
    --fc-shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.4);
    --fc-shadow-md:    0 8px 32px rgba(0, 0, 0, 0.6);
    --fc-shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.8);
    --fc-shadow-gold:  0 0 40px rgba(199, 164, 70, 0.12);

    /* Betűtípusok */
    --fc-font-display: 'Cormorant Garamond', Georgia, serif;
    --fc-font-body:    'DM Sans', system-ui, sans-serif;

    /* Méretek */
    --fc-max-w:        1160px;
    --fc-header-h:     72px;
    --fc-radius:       6px;
    --fc-radius-lg:    12px;
    --fc-radius-xl:    20px;
}

/* ============================================================
   ALAP RESET + BODY
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.fc-dark-theme {
    background-color: var(--fc-bg);
    color: var(--fc-text);
    font-family: var(--fc-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

/* Egyéni scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--fc-bg); }
::-webkit-scrollbar-thumb { background: rgba(199,164,70,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fc-gold); }

/* Szöveg kijelölés */
::selection {
    background: rgba(199, 164, 70, 0.25);
    color: var(--fc-gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fc-font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--fc-text);
    letter-spacing: 0.01em;
}

a {
    color: var(--fc-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--fc-gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   FEJLÉC NAVIGÁCIÓ (dashboard oldalakhoz)
   ============================================================ */

.fc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--fc-header-h);
    background: rgba(7, 7, 14, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fc-border);
}

.fc-header-inner {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}

.fc-header-logo {
    font-family: var(--fc-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--fc-text) !important;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.fc-header-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.fc-header-logo .fc-logo-accent {
    color: var(--fc-gold);
}

.fc-header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.fc-header-nav a {
    position: relative;
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-text-muted) !important;
    padding: 8px 16px;
    border-radius: var(--fc-radius);
    transition: all 0.2s ease;
}

.fc-header-nav a:hover {
    color: var(--fc-text) !important;
    background: rgba(255,255,255,0.05);
}

.fc-header-nav a.aktiv {
    color: var(--fc-gold) !important;
}

.fc-header-nav a.aktiv::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--fc-gold);
}

.fc-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Kosárikon – auth oldalakon fix pozíció (nincs standard header) */
.fc-auth-wrap ~ .fc-cart-icon,
body > .fc-cart-icon {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 9999;
}

/* Kosárikon */
.fc-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--fc-radius);
    border: 1px solid var(--fc-border);
    color: var(--fc-text-muted) !important;
    transition: all 0.2s;
    text-decoration: none;
}

.fc-cart-icon:hover {
    border-color: var(--fc-gold-border);
    color: var(--fc-gold) !important;
    background: var(--fc-gold-dim);
}

.fc-cart-icon--hidden {
    display: none;
}

.fc-cart-icon__count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--fc-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--fc-font-body);
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--fc-bg);
}

.fc-kilepés-btn {
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-text-muted) !important;
    padding: 8px 18px;
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
}

.fc-kilepés-btn:hover {
    color: var(--fc-text) !important;
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

/* ============================================================
   AUTH OLDALAK – bejelentkezés, jelszó visszaállítás
   ============================================================ */

.fc-auth-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 480px;
    background: var(--fc-bg);
    position: relative;
    overflow: hidden;
}

/* Bal oldal – brand panel */
.fc-auth-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 64px;
    background: var(--fc-bg-surface);
    overflow: hidden;
}

.fc-auth-brand--centered {
    justify-content: center;
    gap: 32px;
}

.fc-auth-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(38, 60, 93, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 10%, rgba(199, 164, 70, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.fc-auth-brand-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(199,164,70,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,164,70,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.fc-auth-brand-logo {
    position: relative;
    z-index: 1;
    font-family: var(--fc-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--fc-text);
    letter-spacing: 0.05em;
}

.fc-auth-brand-logo img {
    max-height: 48px;
    width: auto;
}

.fc-auth-brand-logo .accent { color: var(--fc-gold); }

.fc-auth-brand-content {
    position: relative;
    z-index: 1;
}

.fc-auth-brand-eyebrow {
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-auth-brand-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--fc-gold);
    flex-shrink: 0;
}

.fc-auth-brand-title {
    font-family: var(--fc-font-display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--fc-text);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.fc-auth-brand-title em {
    font-style: italic;
    color: var(--fc-gold-light);
}

.fc-auth-brand-sub {
    font-size: 15px;
    color: var(--fc-text-muted);
    max-width: 380px;
    line-height: 1.7;
}

.fc-auth-brand-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--fc-border);
}

.fc-auth-stat {
    text-align: center;
}

.fc-auth-stat-num {
    font-family: var(--fc-font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--fc-gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.fc-auth-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
}

/* Jobb oldal – form panel */
.fc-auth-form-panel {
    background: var(--fc-bg);
    border-left: 1px solid var(--fc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 48px;
    position: relative;
}

.fc-auth-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(199,164,70,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.fc-auth-box {
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.fc-auth-title {
    font-family: var(--fc-font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--fc-text);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.fc-auth-sub {
    font-size: 14px;
    color: var(--fc-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ============================================================
   FORM ELEMEK
   ============================================================ */

.fc-field {
    margin-bottom: 20px;
}

.fc-field label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
    margin-bottom: 8px;
}

.fc-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.fc-field-row label {
    margin-bottom: 0;
}

.fc-field-row a {
    font-size: 12px;
    color: var(--fc-gold);
    font-weight: 500;
    transition: color 0.2s;
}

.fc-field-row a:hover { color: var(--fc-gold-light); }

.fc-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--fc-border-light);
    border-radius: var(--fc-radius);
    font-family: var(--fc-font-body);
    font-size: 15px;
    color: var(--fc-text);
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.fc-input::placeholder { color: var(--fc-text-dim); }

.fc-input:focus {
    border-color: var(--fc-gold-border);
    background: rgba(199,164,70,0.04);
    box-shadow: 0 0 0 3px rgba(199,164,70,0.08);
}

.fc-input:hover:not(:focus) {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

/* Checkbox */
.fc-check-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.fc-check-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--fc-gold);
    cursor: pointer;
    flex-shrink: 0;
}

.fc-check-wrap label {
    font-size: 13px;
    color: var(--fc-text-muted);
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
}

/* ============================================================
   GOMBOK
   ============================================================ */

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: var(--fc-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.fc-btn-primary {
    background: var(--fc-red);
    color: #fff !important;
    box-shadow: 0 4px 20px var(--fc-red-glow);
}

.fc-btn-primary:hover {
    background: var(--fc-red-hover);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--fc-red-glow);
}

.fc-btn-gold {
    background: var(--fc-gold);
    color: #07070E !important;
    box-shadow: 0 4px 20px rgba(199,164,70,0.2);
}

.fc-btn-gold:hover {
    background: var(--fc-gold-light);
    color: #07070E !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(199,164,70,0.3);
}

.fc-btn-ghost {
    background: transparent;
    color: var(--fc-gold) !important;
    border: 1px solid var(--fc-gold-border);
}

.fc-btn-ghost:hover {
    background: var(--fc-gold-dim);
    border-color: var(--fc-gold);
    color: var(--fc-gold-light) !important;
}

.fc-btn-outline {
    background: transparent;
    color: var(--fc-text-muted) !important;
    border: 1px solid var(--fc-border-light);
}

.fc-btn-outline:hover {
    color: var(--fc-text) !important;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
}

.fc-btn-full { width: 100%; }

.fc-btn-lg {
    padding: 18px 40px;
    font-size: 14px;
}

/* ============================================================
   ÜZENETEK / ÉRTESÍTŐK
   ============================================================ */

.fc-alert {
    padding: 14px 18px;
    border-radius: var(--fc-radius);
    font-size: 13px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.fc-alert-siker {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.fc-alert-hiba {
    background: rgba(207, 13, 13, 0.08);
    border: 1px solid rgba(207, 13, 13, 0.2);
    color: #f87171;
}

.fc-alert-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.fc-alert-figyelem {
    background: rgba(199, 164, 70, 0.08);
    border: 1px solid var(--fc-gold-border);
    color: var(--fc-gold-light);
}

/* ============================================================
   AUTH LINKS / LÁBLÉC
   ============================================================ */

.fc-auth-links {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--fc-text-muted);
}

.fc-auth-links a {
    color: var(--fc-gold);
    font-weight: 500;
}

.fc-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
}

.fc-auth-divider::before,
.fc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--fc-border);
}

.fc-auth-divider span {
    font-size: 11px;
    color: var(--fc-text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   DASHBOARD – FŐ LAYOUT
   ============================================================ */

.fc-dashboard-wrap {
    padding-top: var(--fc-header-h);
    min-height: 100vh;
    background: var(--fc-bg);
    position: relative;
}

.fc-dashboard-wrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(38,60,93,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(199,164,70,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.fc-dashboard-inner {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    padding: 48px 32px 80px;
    position: relative;
    z-index: 1;
}

/* Oldal fejléc */
.fc-page-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fc-border);
}

.fc-page-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-page-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--fc-gold);
}

.fc-page-title {
    font-family: var(--fc-font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: var(--fc-text);
    letter-spacing: -0.01em;
}

.fc-page-title em {
    font-style: italic;
    color: var(--fc-gold-light);
}

/* ============================================================
   KÁRTYÁK
   ============================================================ */

.fc-card {
    background: var(--fc-bg-card);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc-card:hover {
    border-color: var(--fc-gold-border);
    box-shadow: var(--fc-shadow-gold);
}

.fc-card-dark {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
}

.fc-card-navy {
    background: linear-gradient(135deg, rgba(38,60,93,0.6) 0%, rgba(20,36,60,0.8) 100%);
    border: 1px solid rgba(38,60,93,0.8);
}

.fc-card-gold {
    background: linear-gradient(135deg, rgba(199,164,70,0.12) 0%, rgba(199,164,70,0.04) 100%);
    border: 1px solid var(--fc-gold-border);
}

/* ============================================================
   ELŐFIZETÉS STÁTUSZ SÁV
   ============================================================ */

.fc-sub-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(38,60,93,0.5) 0%, rgba(14,14,28,0.8) 100%);
    border: 1px solid rgba(38,60,93,0.6);
    border-radius: var(--fc-radius-lg);
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.fc-sub-status-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
    margin-bottom: 4px;
}

.fc-sub-status-name {
    font-family: var(--fc-font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--fc-text);
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fc-badge-aktiv   { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.fc-badge-onhold  { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.fc-badge-lejart  { background: rgba(207,13,13,0.15);  color: #f87171; border: 1px solid rgba(207,13,13,0.3); }
.fc-badge-lemondva { background: rgba(122,122,144,0.15); color: var(--fc-text-muted); border: 1px solid rgba(122,122,144,0.2); }

/* ============================================================
   KURZUS KÁRTYÁK
   ============================================================ */

.fc-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.fc-course-card {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.fc-course-card:hover {
    border-color: var(--fc-gold-border);
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-md), var(--fc-shadow-gold);
}

.fc-course-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--fc-navy) 0%, #0D1F3C 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.fc-course-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(7,7,14,0.35) 100%);
    pointer-events: none;
}

.fc-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fc-course-card:hover .fc-course-thumb img {
    transform: scale(1.05);
}

.fc-course-thumb-icon {
    font-size: 40px;
    z-index: 1;
    opacity: 0.6;
}

.fc-course-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fc-course-title {
    font-family: var(--fc-font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--fc-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.fc-course-progress-label {
    font-size: 12px;
    color: var(--fc-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-progress-bar {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.fc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fc-gold), var(--fc-gold-light));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.fc-course-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--fc-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   SECTION FEJLÉCEK
   ============================================================ */

.fc-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.fc-section-title {
    font-family: var(--fc-font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--fc-text);
    letter-spacing: 0.01em;
}

/* ============================================================
   PROFIL OLDAL
   ============================================================ */

.fc-profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.fc-profile-sidebar {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    padding: 32px 24px;
    position: sticky;
    top: calc(var(--fc-header-h) + 24px);
    text-align: center;
}

.fc-avatar-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-navy), #1a3050);
    border: 2px solid var(--fc-gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--fc-font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--fc-gold);
}

.fc-profile-name {
    font-family: var(--fc-font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--fc-text);
    margin-bottom: 4px;
}

.fc-profile-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 28px;
}

.fc-form-section {
    margin-bottom: 28px;
}

.fc-form-section-title {
    font-family: var(--fc-font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--fc-text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--fc-border);
}

.fc-field-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fc-field-grid-pc {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
}

/* ============================================================
   PÉNZTÁR / KOSÁR OLDALAK
   ============================================================ */

.fc-checkout-shell {
    min-height: 100vh;
    background: var(--fc-bg);
}

.fc-checkout-topbar {
    background: rgba(7,7,14,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fc-border);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.fc-checkout-topbar-logo {
    font-family: var(--fc-font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--fc-text) !important;
    letter-spacing: 0.04em;
}

.fc-checkout-topbar-logo img { max-height: 40px; width: auto; display: block; }

.fc-steps {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-text-dim);
}

.fc-step.aktiv { color: var(--fc-text); }
.fc-step.kész  { color: var(--fc-gold); }

.fc-step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.fc-step.aktiv .fc-step-dot {
    background: var(--fc-gold);
    border-color: var(--fc-gold);
    color: #07070E;
}

.fc-step.kész .fc-step-dot {
    background: rgba(199,164,70,0.15);
    border-color: var(--fc-gold-border);
    color: var(--fc-gold);
}

.fc-step-sep {
    color: var(--fc-text-dim);
    font-size: 16px;
    margin: 0 2px;
}

.fc-trust-bar {
    background: rgba(14,14,28,0.8);
    border-bottom: 1px solid var(--fc-border);
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.fc-trust-item {
    font-size: 12px;
    color: var(--fc-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.fc-trust-item-icon { color: var(--fc-gold); font-size: 14px; }

.fc-trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--fc-gold);
}

.fc-checkout-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 32px 80px;
}

/* Vélemények rács – pénztár oldal alja */
.fc-checkout-testimonials {
    background: var(--fc-bg-surface);
    border-top: 1px solid var(--fc-border);
    padding: 48px 32px 56px;
}

.fc-checkout-testimonials-inner {
    max-width: 960px;
    margin: 0 auto;
}

.fc-checkout-testimonials-label {
    font-family: var(--fc-font-display);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin: 0 0 24px;
    text-align: center;
}

.fc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fc-checkout-testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--fc-radius);
    padding: 32px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.fc-checkout-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -16px;
    left: 12px;
    font-family: var(--fc-font-display);
    font-size: 100px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    user-select: none;
}

.fc-checkout-testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--fc-text-warm);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .fc-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fc-testimonials-grid { grid-template-columns: 1fr; }
    .fc-checkout-testimonials { padding: 36px 16px 44px; }
}

/* CTA gomb a vélemények alatt – közvetlenül a rácson belül */
.fc-checkout-bottom-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.fc-checkout-bottom-btn {
    font-size: 17px;
    padding: 16px 56px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 24px rgba(199,164,70,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fc-checkout-bottom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(199,164,70,0.4);
}
@media (max-width: 600px) {
    .fc-checkout-bottom-cta { margin-top: 48px; }
    .fc-checkout-bottom-btn { font-size: 16px; padding: 15px 32px; }
}

/* Fiók létrehozás kiemelt sáv – checkout */
.fc-fiok-letrehozas-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid var(--fc-gold, #d4af37);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}
.fc-fiok-letrehozas-info-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}
.fc-fiok-letrehozas-info-text strong {
    display: block;
    font-size: 16px;
    color: var(--fc-gold, #d4af37);
    margin-bottom: 6px;
}
.fc-fiok-letrehozas-info-text p {
    margin: 0;
    font-size: 14px;
    color: var(--fc-text-muted, #aaa);
    line-height: 1.5;
}

/* Jelszó erősség indikátor */
.woocommerce-password-strength {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 6px;
    border-radius: 4px;
    text-align: center;
}
.woocommerce-password-strength.short { background: rgba(220,53,69,0.2); color: #ff6b6b; }
.woocommerce-password-strength.bad   { background: rgba(255,165,0,0.2); color: #ffa500; }
.woocommerce-password-strength.good  { background: rgba(40,167,69,0.2); color: #51cf66; }
.woocommerce-password-strength.strong{ background: rgba(40,167,69,0.3); color: #51cf66; }
.woocommerce-password-hint { display: none !important; }

/* WooCommerce "Fiók létrehozása" checkbox elrejtése (mindig kötelező) */
.woocommerce-form__label-for-checkbox.checkbox-createaccount {
    display: none !important;
}

/* ============================================================
   WOOCOMMERCE FELÜLÍRÁSOK – dark theme
   ============================================================ */

.woocommerce,
.woocommerce-page {
    color: var(--fc-text);
}

.woocommerce table.shop_table {
    border: 1px solid var(--fc-border);
    border-collapse: separate;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    background: var(--fc-bg-surface);
    color: var(--fc-text);
}

.woocommerce table.shop_table th {
    background: rgba(38,60,93,0.5);
    color: var(--fc-text-muted);
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 18px;
    border-bottom: 1px solid var(--fc-border);
}

.woocommerce table.shop_table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--fc-border);
    background: transparent;
    color: var(--fc-text);
    vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td { border-bottom: none; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid var(--fc-border-light) !important;
    border-radius: var(--fc-radius) !important;
    color: var(--fc-text) !important;
    padding: 14px 18px !important;
    font-family: var(--fc-font-body) !important;
    font-size: 15px !important;
    transition: all 0.2s !important;
    outline: none !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--fc-gold-border) !important;
    background: rgba(199,164,70,0.04) !important;
    box-shadow: 0 0 0 3px rgba(199,164,70,0.08) !important;
}

.woocommerce form .form-row label {
    font-family: var(--fc-font-body);
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-muted) !important;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
    background: var(--fc-navy) !important;
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: var(--fc-radius) !important;
    border: none !important;
    padding: 14px 28px !important;
    transition: all 0.2s !important;
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
#place_order,
.wc-proceed-to-checkout .checkout-button {
    background: var(--fc-red) !important;
    box-shadow: 0 4px 20px var(--fc-red-glow) !important;
}

.woocommerce .button.alt:hover,
#place_order:hover,
.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--fc-red-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--fc-red-glow) !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--fc-bg-surface) !important;
    border-top: 3px solid var(--fc-gold) !important;
    color: var(--fc-text) !important;
    border-radius: 0 0 var(--fc-radius) var(--fc-radius) !important;
    box-shadow: none !important;
}

.woocommerce-error {
    border-top-color: var(--fc-red) !important;
}

.woocommerce-checkout #payment {
    background: var(--fc-bg-surface) !important;
    border: 1px solid var(--fc-border) !important;
    border-radius: var(--fc-radius-lg) !important;
    color: var(--fc-text) !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--fc-border) !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    color: var(--fc-text) !important;
    font-size: 14px !important;
}

.woocommerce-checkout-review-order table.shop_table tfoot tr:last-child td,
.woocommerce-checkout-review-order table.shop_table tfoot tr:last-child th {
    font-family: var(--fc-font-display);
    font-size: 22px;
    color: var(--fc-gold);
}

.woocommerce-account-fields {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.06) 100%);
    border: 2px solid var(--fc-gold, #d4af37);
    border-radius: var(--fc-radius-lg);
    padding: 28px 28px 20px;
    margin-bottom: 24px;
}
.woocommerce-account-fields .create-account {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}
.woocommerce-account-fields .create-account > p.form-row {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}
.woocommerce-account-fields label {
    color: var(--fc-gold, #d4af37) !important;
    font-weight: 600 !important;
}
.woocommerce-account-fields input[type="text"],
.woocommerce-account-fields input[type="password"] {
    background: rgba(0,0,0,0.3) !important;
    border-color: var(--fc-gold, #d4af37) !important;
}

/* ============================================================
   ÜRES ÁLLAPOT
   ============================================================ */

.fc-empty-state {
    text-align: center;
    padding: 64px 32px;
    background: var(--fc-bg-card);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-xl);
}

.fc-empty-icon {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.4;
}

.fc-empty-title {
    font-family: var(--fc-font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--fc-text);
    margin-bottom: 10px;
}

.fc-empty-sub {
    font-size: 15px;
    color: var(--fc-text-muted);
    max-width: 380px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ============================================================
   ANIMÁCIÓK
   ============================================================ */

@keyframes fc-fade-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fc-animate-in {
    animation: fc-fade-in 0.5s ease forwards;
}

.fc-animate-in:nth-child(2) { animation-delay: 0.08s; }
.fc-animate-in:nth-child(3) { animation-delay: 0.16s; }
.fc-animate-in:nth-child(4) { animation-delay: 0.24s; }

/* ============================================================
   RESZPONZÍV
   ============================================================ */

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

    .fc-auth-brand {
        display: none;
    }

    .fc-auth-form-panel {
        border-left: none;
        min-height: 100vh;
    }

    .fc-profile-grid {
        grid-template-columns: 1fr;
    }

    .fc-profile-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .fc-header-inner {
        padding: 0 20px;
        gap: 24px;
    }

    .fc-header-nav {
        display: none;
    }

    .fc-dashboard-inner {
        padding: 32px 20px 60px;
    }

    .fc-checkout-topbar {
        padding: 0 20px;
    }

    .fc-steps {
        display: none;
    }

    .fc-trust-bar {
        gap: 20px;
        padding: 10px 20px;
    }

    .fc-field-grid-2 {
        grid-template-columns: 1fr;
    }

    .fc-field-grid-pc {
        grid-template-columns: 1fr;
    }

    .fc-auth-form-panel {
        padding: 40px 24px;
    }

    .fc-courses-grid {
        grid-template-columns: 1fr;
    }

    .fc-sub-status {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc-checkout-content {
        padding: 32px 20px 60px;
    }
}

/* Mobilon hamburger menü helyett egyszerűsített fejléc */
@media (max-width: 768px) {
    .fc-header-mobile-nav {
        display: flex;
    }
}

/* ============================================================
   ALUMNI TAGSÁG ÁRAZÁSI OLDAL
   ============================================================ */

.fc-at-page {
    background: var(--fc-bg);
    color: var(--fc-text);
    font-family: var(--fc-font-body);
}

/* Héró */
.fc-at-hero {
    padding: calc(var(--fc-header-h) + 80px) 32px 80px;
    text-align: center;
    background: var(--fc-bg-surface);
    border-bottom: 1px solid var(--fc-border);
    position: relative;
    overflow: hidden;
}
.fc-at-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(199,164,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.fc-at-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.fc-at-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 20px;
}
.fc-at-hero__title {
    font-family: var(--fc-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--fc-text);
    line-height: 1.1;
    margin-bottom: 20px;
}
.fc-at-hero__title em {
    font-style: italic;
    color: var(--fc-gold-light);
}
.fc-at-hero__sub {
    font-size: 17px;
    color: var(--fc-text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 32px;
}
.fc-at-delayed-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto 40px;
    padding: 14px 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    color: var(--fc-gold-light);
    text-align: left;
}
.fc-at-delayed-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Közös container */
.fc-at-container {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* Szekció fejlécek */
.fc-at-section-title {
    font-family: var(--fc-font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    color: var(--fc-text);
    text-align: center;
    margin-bottom: 12px;
}
.fc-at-section-sub {
    text-align: center;
    color: var(--fc-text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Mit kapsz */
.fc-at-features {
    padding: 72px 32px;
    background: var(--fc-bg);
}
.fc-at-features .fc-at-section-title {
    margin-bottom: 40px;
}
.fc-at-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.fc-at-feature {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border-light);
    border-radius: var(--fc-radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fc-at-feature:hover {
    border-color: var(--fc-gold-border);
}
.fc-at-feature--gold {
    border-color: var(--fc-gold-border);
    background: var(--fc-gold-dim);
}
.fc-at-feature__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-text-muted);
}
.fc-at-feature--gold .fc-at-feature__icon {
    color: var(--fc-gold);
}
.fc-at-feature:hover .fc-at-feature__icon {
    color: var(--fc-gold-light);
    transition: color 0.2s ease;
}
.fc-at-feature h3 {
    font-family: var(--fc-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-text);
    margin-bottom: 8px;
}
.fc-at-feature p {
    font-size: 13px;
    color: var(--fc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Árazás szekció */
.fc-at-pricing {
    padding: 72px 32px 80px;
    background: var(--fc-bg-surface);
    border-top: 1px solid var(--fc-border);
}

/* Ciklus váltó */
.fc-at-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--fc-bg-elevated);
    border: 1px solid var(--fc-border);
    border-radius: 40px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 48px;
}
.fc-at-toggle__btn {
    padding: 8px 24px;
    border-radius: 36px;
    border: none;
    background: transparent;
    color: var(--fc-text-muted);
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fc-at-toggle__btn.aktiv {
    background: var(--fc-gold);
    color: #07070E;
    font-weight: 600;
}
.fc-at-save-badge {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}
.fc-at-toggle__btn.aktiv .fc-at-save-badge {
    background: rgba(7,7,14,0.2);
    color: #07070E;
}

/* Árazási kártyák */
.fc-at-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
    align-items: start;
}
.fc-at-card {
    background: var(--fc-bg-elevated);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-xl);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fc-at-card:hover {
    border-color: var(--fc-gold-border);
    box-shadow: var(--fc-shadow-gold);
}
.fc-at-card--featured {
    border-color: var(--fc-gold-border);
    background: linear-gradient(160deg, var(--fc-bg-elevated) 0%, rgba(199,164,70,0.06) 100%);
    box-shadow: var(--fc-shadow-gold);
}
.fc-at-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fc-gold);
    color: #07070E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.fc-at-card__name {
    font-family: var(--fc-font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--fc-text);
}
.fc-at-card__desc {
    font-size: 13px;
    color: var(--fc-text-muted);
    margin: 0;
    line-height: 1.5;
}
.fc-at-card__price {
    font-family: var(--fc-font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--fc-text);
    line-height: 1;
}
.fc-at-card__price span {
    font-size: 20px;
    color: var(--fc-text-muted);
    font-weight: 400;
}
.fc-at-card__cycle {
    font-size: 13px;
    color: var(--fc-text-muted);
    margin-top: 4px;
}
.fc-at-card__saving {
    font-size: 12px;
    color: #4ade80;
    font-weight: 600;
    margin-top: 4px;
}
.fc-at-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.fc-at-card__list li {
    font-size: 14px;
    color: var(--fc-text-warm);
    padding-left: 20px;
    position: relative;
}
.fc-at-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fc-gold);
    font-weight: 700;
}
.fc-at-cta-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
    font-size: 12px !important;
    padding: 10px 12px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.fc-at-cta-duo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}
.fc-at-cta-duo .fc-at-cta-btn {
    margin-top: 0;
}

.fc-at-current-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--fc-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--fc-gold);
    border-radius: 8px;
    box-sizing: border-box;
}

.fc-at-iocsp-figyelmeztetes {
    background: rgba(199, 164, 70, 0.08);
    border: 1px solid rgba(199, 164, 70, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

/* ÁSZF sor */
.fc-at-legal {
    text-align: center;
    font-size: 12px;
    color: var(--fc-text-dim);
    max-width: 600px;
    margin: 36px auto 0;
    line-height: 1.7;
}
.fc-at-legal a {
    color: var(--fc-text-muted);
    text-decoration: underline;
}

/* GYIK */
.fc-at-faq {
    padding: 72px 32px 80px;
    background: var(--fc-bg);
    border-top: 1px solid var(--fc-border);
}
.fc-at-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
}
.fc-at-faq__item {
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border-light);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.fc-at-faq__item[open] {
    border-color: var(--fc-gold-border);
}
.fc-at-faq__item summary {
    font-family: var(--fc-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--fc-text);
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.fc-at-faq__item summary::after {
    content: '+';
    color: var(--fc-gold);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}
.fc-at-faq__item[open] summary::after {
    transform: rotate(45deg);
}
.fc-at-faq__item p {
    font-size: 14px;
    color: var(--fc-text-muted);
    line-height: 1.7;
    padding: 0 24px 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .fc-at-hero { padding: calc(var(--fc-header-h) + 48px) 20px 56px; }
    .fc-at-features,
    .fc-at-pricing,
    .fc-at-faq { padding-left: 20px; padding-right: 20px; }
    .fc-at-container { padding: 0 20px; }
    .fc-at-pricing__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEARNDASH KURZUS OLDAL (single-sfwd-courses)
   ============================================================ */

body.fc-course-page {
    background: var(--fc-bg);
    color: var(--fc-text);
}

/* Vissza link */
.fc-course-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fc-text-muted) !important;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.fc-course-back:hover {
    color: var(--fc-gold-light) !important;
}

/* Héro sáv */
.fc-course-hero {
    padding: calc(var(--fc-header-h) + 48px) 32px 48px;
    background: var(--fc-bg-surface);
    border-bottom: 1px solid var(--fc-border);
    position: relative;
    overflow: hidden;
}
.fc-course-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(199,164,70,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.fc-course-hero--has-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-thumb) center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}
.fc-course-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--fc-max-w);
    margin: 0 auto;
}
.fc-course-hero__title {
    font-family: var(--fc-font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--fc-text);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.fc-course-hero__desc {
    font-size: 16px;
    color: var(--fc-text-muted);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Haladás sáv a hérón */
.fc-course-hero__progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
}
.fc-course-hero__progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.fc-course-hero__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fc-gold), var(--fc-gold-light));
    border-radius: 2px;
    transition: width 0.4s ease;
}
.fc-course-hero__progress-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fc-course-hero__progress-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--fc-gold);
    letter-spacing: 0.05em;
}
.fc-course-hero__last-activity {
    font-size: 12px;
    color: var(--fc-text-muted);
    letter-spacing: 0.03em;
}

/* Kurzus tartalom wrapper */
.fc-course-content-wrap {
    padding: 48px 32px 80px;
}
.fc-course-content-inner {
    max-width: var(--fc-max-w);
    margin: 0 auto;
}

/* LearnDash curriculum lista stílus */
.fc-course-content-inner .learndash-wrapper {
    background: transparent !important;
}

/* LearnDash course-status blokk elrejtve – a héróban van helyette saját */
.fc-course-content-inner .ld-course-status {
    display: none !important;
}

/* Szekció fejléc (pl. "Program", "Bónuszok") */
.fc-course-content-inner .ld-item-list-section-heading,
.fc-course-content-inner .ld-section-heading {
    font-family: var(--fc-font-display) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--fc-gold) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--fc-gold-border) !important;
    padding: 0 0 10px !important;
    margin: 32px 0 4px !important;
}

/* Lecke lista konténer */
.fc-course-content-inner .ld-item-list {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

/* Egyedi lecke sor */
.fc-course-content-inner .ld-item-list-item {
    background: var(--fc-bg-surface) !important;
    border: 1px solid var(--fc-border-light) !important;
    border-radius: var(--fc-radius) !important;
    padding: 0 !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
    overflow: hidden !important;
}
.fc-course-content-inner .ld-item-list-item:hover {
    border-color: var(--fc-gold-border) !important;
    background: var(--fc-bg-elevated) !important;
}
.fc-course-content-inner .ld-item-list-item.ld-is-next {
    border-color: var(--fc-gold-border) !important;
    background: var(--fc-gold-dim) !important;
}

/* Lecke link és tartalom */
.fc-course-content-inner .ld-item-list-item .ld-item-name,
.fc-course-content-inner .ld-item-list-item a.ld-item-name {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 20px !important;
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    background: transparent !important;
}
.fc-course-content-inner .ld-item-list-item a.ld-item-name:hover {
    color: var(--fc-gold-light) !important;
}
.fc-course-content-inner .ld-item-list-item.ld-is-complete .ld-item-name {
    color: var(--fc-text-muted) !important;
}
.fc-course-content-inner .ld-item-list-item.ld-is-next .ld-item-name {
    color: var(--fc-gold-light) !important;
    font-weight: 500 !important;
}

/* Státusz ikon */
.fc-course-content-inner .ld-status-icon,
.fc-course-content-inner .ld-item-list-item .ld-item-list-item-preview {
    color: var(--fc-text-muted) !important;
    background: transparent !important;
    border: none !important;
}
.fc-course-content-inner .ld-item-list-item.ld-is-complete .ld-status-icon {
    color: var(--fc-gold) !important;
}
.fc-course-content-inner .ld-item-list-item.ld-is-next .ld-status-icon {
    color: var(--fc-gold-light) !important;
}

/* Topic lista (al-leckék) a kurzus oldalon */
.fc-course-content-inner .ld-topic-list {
    background: rgba(0,0,0,0.2) !important;
    border-top: 1px solid var(--fc-border-light) !important;
    margin: 0 !important;
    padding: 4px 0 !important;
}
.fc-course-content-inner .ld-topic-list .ld-item-list-item {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--fc-border-light) !important;
}
.fc-course-content-inner .ld-topic-list .ld-item-list-item:last-child {
    border-bottom: none !important;
}
.fc-course-content-inner .ld-topic-list .ld-item-name {
    padding: 10px 20px 10px 40px !important;
    font-size: 13px !important;
    color: var(--fc-text-muted) !important;
}
.fc-course-content-inner .ld-topic-list .ld-item-name:hover {
    color: var(--fc-gold-light) !important;
}

/* Expand gomb (topic-ok megjelenítéséhez) */
.fc-course-content-inner .ld-expand-button {
    font-size: 12px !important;
    padding: 4px 12px !important;
    margin-left: auto !important;
}

/* Mobil */
@media (max-width: 768px) {
    .fc-course-hero {
        padding: calc(var(--fc-header-h) + 32px) 20px 36px;
    }
    .fc-course-content-wrap {
        padding: 32px 20px 60px;
    }
}

/* ============================================================
   LEARNDASH FÓKUSZMÓD – Dark Luxury stílus
   ============================================================ */

/* BODY alap */
body.learndash-focus-mode,
body.ld-in-focus-mode {
    background-color: var(--fc-bg) !important;
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body) !important;
}

/* Fő konténer */
.ld-focus {
    background-color: var(--fc-bg) !important;
    color: var(--fc-text) !important;
}

/* ---- HEADER SÁV ---- */
.ld-focus-header,
.ld-focus .ld-focus-header,
.learndash-wrapper .ld-focus .ld-focus-header,
.learndash-wrapper .ld-focus .ld-focus-header .ld-brand-logo,
.ld-focus-header .ld-brand-logo,
.ld-brand-logo {
    background: rgba(7, 7, 14, 0.97) !important;
    background-color: rgba(7, 7, 14, 0.97) !important;
    border-bottom: 1px solid var(--fc-border) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

.ld-focus-header .ld-focus-header__content,
.ld-focus-header .ld-brand-logo img,
.ld-focus-header .ld-brand-logo a,
.ld-brand-logo a,
.ld-brand-logo img {
    background: transparent !important;
    background-color: transparent !important;
}

/* Kurzus cím / lépés cím a headerben */
.ld-focus-header .ld-course-step-title,
.ld-focus-header .ld-focus-header__course-title,
.ld-focus-header .ld-breadcrumbs a,
.ld-focus-header .ld-breadcrumbs span {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-display) !important;
}

/* Haladássáv */
.ld-focus-header .ld-progress-bar {
    background: rgba(255,255,255,0.08) !important;
    border-radius: 2px !important;
}
.ld-focus-header .ld-progress-bar .ld-progress-bar-percentage {
    background: linear-gradient(90deg, var(--fc-gold), var(--fc-gold-light)) !important;
    border-radius: 2px !important;
}

/* Haladás szöveg */
.ld-focus-header .ld-progress-heading,
.ld-focus-header .ld-progress-steps {
    color: var(--fc-text-muted) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 12px !important;
}

/* Header gombok (beállítások stb.) */
.ld-focus-header a,
.ld-focus-header button {
    color: var(--fc-text-muted) !important;
    transition: color 0.2s ease !important;
}
.ld-focus-header a:hover,
.ld-focus-header button:hover {
    color: var(--fc-gold-light) !important;
}

/* Sidebar toggle gomb a headerben */
.ld-focus-sidebar-trigger,
.ld-focus-sidebar__toggle,
.ld-focus-header .ld-focus-sidebar-trigger {
    background: transparent !important;
    color: var(--fc-text-muted) !important;
    border: 1px solid var(--fc-border) !important;
    border-radius: var(--fc-radius) !important;
    transition: all 0.2s ease !important;
}
.ld-focus-sidebar-trigger:hover,
.ld-focus-sidebar__toggle:hover {
    background: var(--fc-gold-dim) !important;
    color: var(--fc-gold-light) !important;
    border-color: var(--fc-gold-border) !important;
}

/* ---- SIDEBAR ---- */
.ld-focus-sidebar {
    background: var(--fc-bg-surface) !important;
    border-right: 1px solid var(--fc-border) !important;
}

.ld-focus-sidebar__header,
.ld-focus-sidebar .ld-focus-sidebar__header {
    background: var(--fc-bg-elevated) !important;
    border-bottom: 1px solid var(--fc-border) !important;
}

/* Sidebar header fehér háttér kill */
.ld-focus-sidebar__header,
.ld-focus-sidebar .ld-focus-sidebar__header,
.ld-focus-sidebar .ld-focus-sidebar__widget,
.ld-focus-sidebar .widget,
.ld-focus-sidebar .ld-table-of-contents,
.ld-focus-sidebar .ld-table-of-contents__header {
    background: var(--fc-bg-elevated) !important;
    background-color: var(--fc-bg-elevated) !important;
}

/* Kurzus cím a sidebarban */
.ld-focus-sidebar .ld-course-title,
.ld-focus-sidebar__header .ld-course-title {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-display) !important;
    font-size: 16px !important;
}

/* Szekciócímek (section headings) */
.ld-lesson-item-section-heading,
.ld-focus-sidebar .ld-lesson-item-section-heading span {
    color: var(--fc-gold) !important;
    font-family: var(--fc-font-display) !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border-bottom: 1px solid var(--fc-gold-border) !important;
    padding: 16px 20px 8px !important;
}

/* Lecke elemek a sidebarban */
.ld-lesson-item {
    background: transparent !important;
    border-bottom: 1px solid var(--fc-border-light) !important;
    transition: background 0.15s ease !important;
}
.ld-lesson-item:hover {
    background: var(--fc-bg-elevated) !important;
}
.ld-lesson-item.ld-is-current-lesson {
    background: var(--fc-gold-dim) !important;
    border-left: 2px solid var(--fc-gold) !important;
}

/* Lecke cím a sidebarban */
.ld-lesson-item .ld-item-name,
.ld-lesson-item__title,
.ld-focus-sidebar .ld-item-name {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 14px !important;
}
.ld-lesson-item.ld-is-current-lesson .ld-item-name {
    color: var(--fc-gold-light) !important;
}

/* Elvégzett lecke ikon/szín */
.ld-lesson-item.ld-is-complete .ld-item-name {
    color: var(--fc-text-muted) !important;
}

/* Topicok (al-leckék) a sidebarban */
.ld-topic-list {
    background: rgba(0,0,0,0.25) !important;
    border-left: 2px solid var(--fc-border-light) !important;
    margin-left: 16px !important;
}
.ld-topic-list-item {
    border-bottom: 1px solid var(--fc-border-light) !important;
}
.ld-topic-list-item a {
    color: var(--fc-text-muted) !important;
    font-size: 13px !important;
    transition: color 0.15s ease !important;
}
.ld-topic-list-item a:hover,
.ld-topic-list-item.ld-is-current-topic a {
    color: var(--fc-gold-light) !important;
}

/* ---- FŐ TARTALOMTERÜLET ---- */
.ld-focus-main,
.ld-focus-content,
.ld-focus-main .ld-focus-content,
.learndash-wrapper,
.learndash_content_wrap,
.ld-content-wrap,
.sfwd-lesson,
.sfwd-topic,
.sfwd-quiz,
.ld-lesson-content,
.ld-topic-content,
#learndash_content_wrap,
.post-type-sfwd-lessons,
.post-type-sfwd-topic,
body.learndash-focus-mode #page,
body.learndash-focus-mode #content,
body.learndash-focus-mode .site-content,
body.learndash-focus-mode main,
body.learndash-focus-mode article,
body.learndash-focus-mode .entry-content {
    background: var(--fc-bg) !important;
    background-color: var(--fc-bg) !important;
}

/* Lecke/topic cím */
.ld-focus-main h1,
.ld-focus-main h2,
.ld-focus-main h3,
.ld-focus-main h4,
.ld-focus-main h5,
.learndash-wrapper h1,
.learndash-wrapper h2,
.learndash-wrapper h3,
.learndash-wrapper h4,
.learndash_content_wrap h1,
.learndash_content_wrap h2,
.learndash_content_wrap h3 {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-display) !important;
}

/* Folyóöveg */
.ld-focus-main p,
.ld-focus-main li,
.learndash-wrapper p,
.learndash-wrapper li,
.learndash_content_wrap p,
.learndash_content_wrap li {
    color: var(--fc-text-warm) !important;
    font-family: var(--fc-font-body) !important;
}

/* Linkek a tartalomban */
.ld-focus-main a,
.learndash-wrapper .ld-content-text a {
    color: var(--fc-gold) !important;
}
.ld-focus-main a:hover,
.learndash-wrapper .ld-content-text a:hover {
    color: var(--fc-gold-light) !important;
}

/* iFrame videó (Bunny embed) */
.ld-focus-main iframe,
.learndash-wrapper iframe,
.learndash_content_wrap iframe {
    width: 100% !important;
    border-radius: var(--fc-radius-lg) !important;
    border: 1px solid var(--fc-border) !important;
    display: block !important;
}

/* ---- BREADCRUMB ---- */
.ld-breadcrumbs {
    background: transparent !important;
}
.ld-breadcrumbs a {
    color: var(--fc-text-muted) !important;
}
.ld-breadcrumbs a:hover {
    color: var(--fc-gold-light) !important;
}
.ld-breadcrumbs .ld-breadcrumb-sep,
.ld-breadcrumbs .ld-sep {
    color: var(--fc-text-dim) !important;
}
.ld-breadcrumbs .ld-active {
    color: var(--fc-text) !important;
}

/* ---- VIDEÓ ALATTI TARTALOM + NAVIGÁCIÓ (fehér területek) ---- */
.ld-focus-main .ld-content-actions,
.ld-content-actions,
.ld-focus-content .ld-content-actions,
.ld-focus-main .ld-content-action,
.ld-content-action,
.ld-focus-main .learndash-wrapper,
.ld-focus-main .learndash-wrapper > *,
.ld-focus-main .ld-focus-content > *,
.ld-focus-main .ld-content,
.ld-focus-main .ld-content-wrap,
.ld-focus-main .ld-tabs,
.ld-focus-main .ld-tabs-content,
.ld-focus-main .ld-tab-content,
.ld-tab,
.ld-tabs-navigation,
.ld-focus-main .ld-alert,
.ld-focus-main .ld-lesson-complete-prompt,
/* Navigáció shortcode wrapper (dinamikus ID-val) */
[class*="learndash-shortcode-wrap-ld_navigation"],
[class*="learndash-shortcode-wrap-ld_navigation"] .ld-content-actions,
[class*="learndash-shortcode-wrap-ld_navigation"] .ld-content-action {
    background: var(--fc-bg) !important;
    background-color: var(--fc-bg) !important;
    color: var(--fc-text) !important;
}

/* LearnDash secondary-background white override */
.learndash-wrapper .ld-secondary-background {
    background-color: var(--fc-bg-elevated) !important;
    color: var(--fc-text) !important;
}

/* ld-course-step-back link stílus */
.ld-course-step-back,
.ld-primary-color.ld-course-step-back {
    color: var(--fc-text-muted) !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
.ld-course-step-back:hover {
    color: var(--fc-gold-light) !important;
}

/* ---- PREV/NEXT NAVIGÁCIÓ ---- */
.ld-focus-main .ld-navigation,
.learndash-wrapper .ld-navigation,
.ld-lesson-navigation,
.ld-lesson-navigation .ld-nav-item,
.ld-lesson-navigation .ld-nav-item a,
.learndash-wrapper .ld-lesson-navigation,
.ld-lesson-navigation .ld-completed,
.learndash-complete-nav,
#learndash-nav-toolbar,
.learndash_mark_complete_button_wrap,
.learndash_mark_complete_button_wrap form,
.ld-focus-main > div:last-child {
    background: var(--fc-bg-surface) !important;
    background-color: var(--fc-bg-surface) !important;
    border-top: 1px solid var(--fc-border) !important;
}

.ld-nav-previous-link a,
.ld-nav-next-link a {
    color: var(--fc-text-muted) !important;
    border: 1px solid var(--fc-border) !important;
    background: transparent !important;
    border-radius: var(--fc-radius) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    padding: 10px 18px !important;
}
.ld-nav-previous-link a:hover,
.ld-nav-next-link a:hover {
    color: var(--fc-gold-light) !important;
    border-color: var(--fc-gold-border) !important;
    background: var(--fc-gold-dim) !important;
}

/* ---- LEARNDASH GOMBOK – teljes override (inline stílusok ellen) ---- */
.learndash-wrapper .ld-button:not([disabled]):not(.ld-button-reverse):not(.ld-button-transparent):not(.ld--ignore-inline-css),
.learndash-wrapper .ld-button:hover:not([disabled]):not(.ld-button-transparent):not(.ld--ignore-inline-css),
.learndash-wrapper .ld-expand-button:not([disabled]),
.learndash-wrapper .ld-expand-button.ld-button-alternate:not([disabled]) .ld-icon,
.learndash-wrapper .ld-primary-background,
.learndash-wrapper .btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper #btn-join:not(.ld--ignore-inline-css),
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
.learndash-wrapper .ld-focus-comments .form-submit #submit,
.learndash-wrapper .ld-login-modal input[type="submit"]:not([disabled]),
.learndash-wrapper .ld-login-modal .ld-login-modal-register:not([disabled]),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not([disabled]):not(.wpProQuiz_button_reShowQuestion):not(.wpProQuiz_button_restartQuiz),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button2:not([disabled]),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_certificate a.btn-blue:not([disabled]),
.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items a:not([disabled]),
#wpProQuiz_user_content table.wp-list-table thead th,
#wpProQuiz_overlay_close:not([disabled]),
#learndash-tooltips .ld-tooltip::after,
#learndash-tooltips .ld-tooltip,
.ld-tooltip:not(.ld-tooltip--modern) [role="tooltip"] {
    background-color: var(--fc-gold) !important;
    color: #fff !important;
    font-family: var(--fc-font-body) !important;
    font-weight: 600 !important;
    border-radius: var(--fc-radius) !important;
    transition: background 0.2s ease !important;
}
.learndash-wrapper .ld-button:hover:not([disabled]):not(.ld-button-transparent):not(.ld--ignore-inline-css),
.learndash-wrapper .ld-expand-button:hover:not([disabled]) {
    background-color: var(--fc-gold-light) !important;
    color: #07070E !important;
}

/* Ghost / transparent LD gombok */
.ld-button.ld-button-transparent,
.ld-button.ld-secondary-background {
    background: transparent !important;
    color: var(--fc-text-muted) !important;
    border: 1px solid var(--fc-border) !important;
}
.ld-button.ld-button-transparent:hover {
    background: var(--fc-gold-dim) !important;
    color: var(--fc-gold-light) !important;
    border-color: var(--fc-gold-border) !important;
}

/* ---- TELJESÍTÉS GOMB ---- */
.learndash_mark_complete_button,
#learndash_mark_complete_button,
input[name="learndash_mark_complete_button"],
.ld-btn.ld-btn-submit {
    background: var(--fc-gold) !important;
    color: #07070E !important;
    border: none !important;
    font-family: var(--fc-font-body) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-radius: var(--fc-radius) !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    padding: 12px 28px !important;
}
.learndash_mark_complete_button:hover,
#learndash_mark_complete_button:hover,
input[name="learndash_mark_complete_button"]:hover {
    background: var(--fc-gold-light) !important;
}

/* ---- KVÍZ, FELADAT (ha lesz) ---- */
.learndash-wrapper .wpProQuiz_content,
.ld-quiz-landing-page {
    background: var(--fc-bg-surface) !important;
    border: 1px solid var(--fc-border) !important;
    border-radius: var(--fc-radius-lg) !important;
    color: var(--fc-text) !important;
}

/* ---- MOBIL ---- */
@media (max-width: 768px) {
    .ld-focus-sidebar {
        background: var(--fc-bg-elevated) !important;
    }

    .ld-focus-main {
        padding: 24px 20px !important;
    }
}

/* ============================================================
   MASTERMIND TEASER – Lezárt nézet Alap tagoknak
   ============================================================ */

.fc-mastermind-teaser {
    padding: 32px 36px;
    opacity: 0.92;
}

.fc-mastermind-teaser-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.fc-badge-locked {
    background: rgba(122, 122, 144, 0.12);
    color: var(--fc-text-muted);
    border: 1px solid rgba(122, 122, 144, 0.25);
}

.fc-mastermind-lesson-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-mastermind-lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--fc-text-muted);
    font-size: 14px;
    opacity: 0.55;
    transition: opacity 0.2s;
}

.fc-mastermind-lesson-item:hover {
    opacity: 0.75;
}

.fc-mastermind-lock-icon {
    flex-shrink: 0;
    color: var(--fc-text-muted);
    opacity: 0.5;
}

.fc-mastermind-lesson-title {
    flex: 1;
    font-weight: 500;
}

.fc-mastermind-lesson-date {
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
}

.fc-mastermind-more {
    font-style: italic;
    opacity: 0.4 !important;
    justify-content: center;
    padding: 10px 0;
}

.fc-mastermind-teaser-cta {
    padding-top: 4px;
    text-align: center;
}

@media (max-width: 768px) {
    .fc-mastermind-teaser {
        padding: 24px 20px;
    }

    .fc-mastermind-teaser-header {
        flex-direction: column;
    }

    .fc-mastermind-lesson-date {
        display: none;
    }
}

/* ============================================================
   TERMÉK OLDAL (WooCommerce single-product override)
   ============================================================ */

.fc-termek-page {
    min-height: 100vh;
    background: var(--fc-bg);
}

.fc-termek-main {
    padding: 80px 24px 120px;
}

.fc-termek-inner {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

/* BAL OLDAL */
.fc-termek-kep {
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--fc-border);
}

.fc-termek-kep img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: none;
}

.fc-termek-eyebrow {
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 16px;
}

.fc-termek-cim {
    font-family: var(--fc-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--fc-text);
    margin: 0 0 24px;
}

.fc-termek-rovid {
    font-size: 17px;
    line-height: 1.7;
    color: var(--fc-text-warm);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fc-border);
}

.fc-termek-leiras {
    font-size: 15px;
    line-height: 1.8;
    color: var(--fc-text-muted);
}

.fc-termek-leiras h2,
.fc-termek-leiras h3 {
    font-family: var(--fc-font-display);
    color: var(--fc-text);
    margin: 32px 0 12px;
}

.fc-termek-leiras ul {
    padding-left: 20px;
}

.fc-termek-leiras li {
    margin-bottom: 8px;
}

/* JOBB OLDAL – vásárlás kártya */
.fc-termek-jobb {
    position: sticky;
    top: calc(var(--fc-header-h) + 32px);
}

.fc-termek-kartya {
    background: var(--fc-bg-elevated);
    border: 1px solid var(--fc-gold-border);
    border-radius: var(--fc-radius-xl);
    padding: 36px;
    box-shadow: var(--fc-shadow-gold);
}

.fc-termek-kartya__nev {
    font-family: var(--fc-font-display);
    font-size: 1.3rem;
    color: var(--fc-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.fc-termek-kartya__ar {
    font-family: var(--fc-font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--fc-gold-light);
    margin-bottom: 4px;
    line-height: 1;
}

.fc-termek-kartya__ar .woocommerce-Price-amount {
    color: var(--fc-gold-light);
    font-size: inherit;
}

.fc-termek-kartya__ar-megjegyzes {
    font-size: 12px;
    color: var(--fc-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.fc-termek-kartya__elvek {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--fc-bg-card);
    border-radius: var(--fc-radius);
    border: 1px solid var(--fc-border-light);
}

.fc-termek-kartya__elv {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--fc-text-muted);
}

.fc-termek-kartya__elv svg {
    flex-shrink: 0;
}

/* Mennyiség input elrejtése (egyszeri termék, 1 db) */
.fc-termek-form .quantity {
    display: none;
}

.fc-termek-gomb {
    margin-bottom: 16px;
}

.fc-termek-kartya__stripe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--fc-text-dim);
    letter-spacing: 0.05em;
}

/* WC notices */
.fc-wc-notices {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    padding: 0 24px 40px;
}

.fc-wc-notices .woocommerce-message,
.fc-wc-notices .woocommerce-error,
.fc-wc-notices .woocommerce-info {
    border-radius: var(--fc-radius);
    background: var(--fc-bg-surface);
    border: 1px solid var(--fc-border);
    color: var(--fc-text);
    padding: 16px 20px;
    list-style: none;
}

/* Reszponzív */
@media (max-width: 900px) {
    .fc-termek-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fc-termek-jobb {
        position: static;
    }
}

/* ================================================
   Kártya hozzáadása modal
   ================================================ */
.fc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 13, 24, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.fc-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    background: #101827;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}
.fc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.fc-modal-title {
    font-family: var(--fc-font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--fc-text);
    margin: 0;
}
.fc-modal-close {
    background: none;
    border: none;
    color: var(--fc-text-muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    display: flex;
    align-items: center;
}
.fc-modal-close:hover {
    color: var(--fc-text);
    background: rgba(255,255,255,0.07);
}
.fc-modal-iframe {
    width: 100%;
    flex: 1;
    min-height: 480px;
    max-height: calc(90vh - 70px);
    border: none;
    background: #101827;
}
@media (max-width: 520px) {
    .fc-modal-box { max-width: 100%; border-radius: 12px 12px 0 0; }
    .fc-modal { align-items: flex-end; padding: 0; }
    .fc-modal-iframe { min-height: 400px; }
}

/* ================================================
   Bankkártyáim – payment method sorok (page-elofizetes)
   ================================================ */
.fc-pm-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fc-pm-row:last-of-type {
    border-bottom: none;
}
.fc-pm-icon {
    flex-shrink: 0;
    width: 40px;
    height: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--fc-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-text-muted);
}
.fc-pm-info {
    flex: 1;
    min-width: 0;
}
.fc-pm-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}
.fc-pm-brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--fc-text);
}
.fc-pm-digits {
    font-size: 14px;
    color: var(--fc-text);
    font-family: monospace;
    letter-spacing: 0.08em;
}
.fc-pm-exp {
    font-size: 12px;
    color: var(--fc-text-muted);
}
.fc-pm-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.fc-pm-action-link {
    font-size: 12px;
    color: var(--fc-text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.15s;
}
.fc-pm-action-link:hover {
    color: var(--fc-gold-light);
}
.fc-pm-action-delete {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #f87171;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.15s;
    text-decoration: none;
}
.fc-pm-action-delete:hover {
    opacity: 1;
}
.fc-pm-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}
@media (max-width: 540px) {
    .fc-pm-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .fc-pm-actions {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
}

/* ================================================
   Fizetési előzmények táblázat (page-elofizetes)
   ================================================ */
.fc-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.fc-orders-table thead tr {
    border-bottom: 1px solid var(--fc-border);
}
.fc-orders-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
}
.fc-orders-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s;
}
.fc-orders-table tbody tr:last-child {
    border-bottom: none;
}
.fc-orders-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}
.fc-orders-table td {
    padding: 14px 20px;
    vertical-align: middle;
}
@media (max-width: 640px) {
    .fc-orders-table th:nth-child(2),
    .fc-orders-table td:nth-child(2) {
        display: none;
    }
}

/* ============================================================
   LEZÁRT KURZUS NÉZET (Mastermind gating)
   ============================================================ */
.fc-locked-lessons {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}
.fc-locked-lesson {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--fc-text-muted);
    font-size: 14px;
    opacity: 0.5;
    cursor: default;
}
.fc-locked-lesson:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fc-locked-lesson__icon {
    flex-shrink: 0;
    opacity: 0.6;
}
.fc-locked-lesson__title {
    flex: 1;
    font-weight: 500;
}
.fc-locked-lesson__date {
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
}
.fc-locked-cta {
    text-align: center;
    padding: 40px 20px 60px;
}
.fc-locked-cta__text {
    font-size: 16px;
    color: var(--fc-text-muted);
    margin: 0 0 24px;
    line-height: 1.6;
}
.fc-locked-cta__btn {
    font-size: 16px !important;
    padding: 16px 48px !important;
    letter-spacing: 0.03em;
}
@media (max-width: 640px) {
    .fc-locked-lesson {
        padding: 14px 12px;
        gap: 10px;
    }
    .fc-locked-lesson__date {
        display: none;
    }
    .fc-locked-cta__btn {
        width: 100%;
        padding: 16px 24px !important;
    }
}

/* ============================================================
   ÜZLET / SHOP ARCHIVE OLDAL
   ============================================================ */

.fc-shop-page {
    min-height: 100vh;
    background: var(--fc-bg);
}

.fc-shop-main {
    padding-top: calc(var(--fc-header-h) + 60px);
    padding-bottom: 100px;
}

.fc-shop-inner {
    max-width: var(--fc-max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* Fejléc szöveg */
.fc-shop-fejlec {
    text-align: center;
    margin-bottom: 56px;
}

.fc-shop-cim {
    font-family: var(--fc-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--fc-text);
    margin-bottom: 12px;
}

.fc-shop-alcim {
    font-size: 16px;
    color: var(--fc-text-muted);
    font-family: var(--fc-font-body);
}

/* Termék rács */
.fc-shop-racs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Termék kártya */
.fc-shop-kartya {
    background: var(--fc-bg-elevated);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fc-shop-kartya:hover {
    border-color: var(--fc-gold-border);
    transform: translateY(-3px);
    box-shadow: var(--fc-shadow-md);
}

/* Kép */
.fc-shop-kartya__kep-wrap {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--fc-bg-surface);
    border-bottom: 1px solid var(--fc-border);
}

.fc-shop-kartya__kep {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fc-shop-kartya:hover .fc-shop-kartya__kep {
    transform: scale(1.04);
}

.fc-shop-kartya__kep-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fc-bg-surface);
}

/* Törzs */
.fc-shop-kartya__test {
    padding: 20px 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-shop-kartya__nev {
    font-family: var(--fc-font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--fc-text);
    margin: 0;
}

.fc-shop-kartya__nev a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.fc-shop-kartya__nev a:hover {
    color: var(--fc-gold-light);
}

.fc-shop-kartya__rovid {
    font-size: 13px;
    color: var(--fc-text-muted);
    line-height: 1.6;
    font-family: var(--fc-font-body);
    margin: 0;
}

.fc-shop-kartya__ar {
    font-family: var(--fc-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--fc-gold-light);
    margin-top: auto;
    padding-top: 8px;
}

.fc-shop-kartya__ar .woocommerce-Price-amount {
    color: var(--fc-gold-light);
}

.fc-shop-kartya__ar .subscription-price,
.fc-shop-kartya__ar .woocommerce-Price-currencySymbol {
    color: inherit;
}

/* Lábléc (gomb) */
.fc-shop-kartya__lab {
    padding: 16px 20px 20px;
}

.fc-shop-kartya__lab .fc-btn-primary {
    display: block;
    text-align: center;
}

/* Lapozó */
.fc-shop-lapozo {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fc-shop-lapozo .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--fc-radius);
    border: 1px solid var(--fc-border);
    color: var(--fc-text-muted);
    font-family: var(--fc-font-body);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.fc-shop-lapozo .page-numbers:hover,
.fc-shop-lapozo .page-numbers.current {
    border-color: var(--fc-gold-border);
    color: var(--fc-gold);
    background: var(--fc-gold-dim);
}

/* Üres állapot */
.fc-shop-ures {
    text-align: center;
    padding: 80px 0;
    color: var(--fc-text-muted);
    font-family: var(--fc-font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Reszponzív */
@media (max-width: 900px) {
    .fc-shop-racs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fc-shop-inner {
        padding: 0 20px;
    }
    .fc-shop-main {
        padding-top: calc(var(--fc-header-h) + 40px);
        padding-bottom: 60px;
    }
    .fc-shop-racs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fc-shop-fejlec {
        margin-bottom: 36px;
    }
}

/* ═══════════════════════════════════════════════════════════
   STARTER KIT SALES OLDAL
═══════════════════════════════════════════════════════════ */

.fc-sk-page { background: var(--fc-bg); min-height: 100vh; }

.fc-sk-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Héró */
.fc-sk-hero {
    padding: 80px 0 72px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 65%);
}
.fc-sk-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-gold);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 24px;
}
.fc-sk-hero__title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--fc-text);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.fc-sk-hero__title em { color: var(--fc-gold); font-style: normal; }
.fc-sk-hero__sub {
    font-size: 18px;
    color: var(--fc-text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
}
.fc-sk-hero__cta { font-size: 17px; padding: 18px 40px; }

/* Szekció cím */
.fc-sk-section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--fc-text);
    text-align: center;
    margin: 0 0 48px;
}

/* 3 komponens */
.fc-sk-components {
    padding: 80px 0;
    border-top: 1px solid var(--fc-border);
}
.fc-sk-components__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fc-sk-component {
    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: border-color 0.2s;
}
.fc-sk-component:hover { border-color: rgba(212,175,55,0.3); }
.fc-sk-component--gold {
    border-color: rgba(212,175,55,0.4);
    background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, var(--fc-surface) 60%);
}
.fc-sk-component__icon {
    width: 48px;
    height: 48px;
    color: var(--fc-gold);
    margin-bottom: 16px;
}
.fc-sk-component__icon svg { width: 100%; height: 100%; }
.fc-sk-component__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--fc-gold);
    margin-bottom: 8px;
}
.fc-sk-component h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-text);
    margin: 0 0 6px;
}
.fc-sk-component__sub {
    font-size: 12px;
    color: var(--fc-gold);
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: 0.04em;
}
.fc-sk-component p:last-child {
    font-size: 14px;
    color: var(--fc-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Kérdések */
.fc-sk-questions {
    padding: 80px 0;
    border-top: 1px solid var(--fc-border);
}
.fc-sk-questions__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fc-sk-questions__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--fc-text-muted);
    line-height: 1.6;
}
.fc-sk-questions__list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.fc-sk-questions__more {
    text-align: center;
    font-size: 14px;
    color: var(--fc-gold);
    font-weight: 600;
    margin: 0;
}

/* Ár + CTA */
.fc-sk-pricing {
    padding: 80px 0 100px;
    border-top: 1px solid var(--fc-border);
}
.fc-sk-pricing__box {
    background: var(--fc-surface);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 20px;
    padding: 52px 40px;
}
.fc-sk-pricing__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
    margin-bottom: 12px;
}
.fc-sk-pricing__price {
    font-size: 56px;
    font-weight: 800;
    color: var(--fc-text);
    line-height: 1;
    margin-bottom: 8px;
}
.fc-sk-pricing__price span { font-size: 28px; font-weight: 600; color: var(--fc-text-muted); }
.fc-sk-pricing__sub {
    font-size: 13px;
    color: var(--fc-text-muted);
    margin-bottom: 32px;
}
.fc-sk-cta-btn {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 32px;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    text-align: center;
}
.fc-sk-pricing__trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.fc-sk-pricing__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--fc-text-muted);
}
.fc-sk-pricing__trust svg { color: var(--fc-gold); flex-shrink: 0; }

/* Reszponzív */
@media (max-width: 860px) {
    .fc-sk-components__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .fc-sk-pricing__box { padding: 36px 24px; }
    .fc-sk-pricing__price { font-size: 44px; }
    .fc-sk-pricing__trust { gap: 16px; }
    .fc-sk-hero__cta { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   ALUMNI SALES OLDAL (9. héttől elérhető)
═══════════════════════════════════════════════════════════ */
.fc-as-page {
    background: var(--fc-bg);
    min-height: 100vh;
    color: var(--fc-text);
}

.fc-as-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}
.fc-as-container--narrow {
    max-width: 760px;
}

/* Gate képernyő – nincs IÖCP vagy túl korai */
.fc-as-gate {
    min-height: calc(100vh - var(--fc-header-h, 80px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
}
.fc-as-gate__inner {
    max-width: 560px;
}
.fc-as-gate__icon {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1;
    opacity: 0.95;
}
.fc-as-gate h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 22px;
    color: var(--fc-text);
}
.fc-as-gate h1 em {
    color: var(--fc-gold);
    font-style: italic;
}
.fc-as-gate p {
    color: var(--fc-text-warm);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
}
.fc-as-gate .fc-btn {
    margin-top: 14px;
}

/* Héró */
.fc-as-hero {
    position: relative;
    padding: 96px 0 72px;
    text-align: center;
    background: var(--fc-bg-surface);
    overflow: hidden;
}
.fc-as-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(199,164,70,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,164,70,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 80%);
    pointer-events: none;
}
.fc-as-hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(199,164,70,0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(38,60,93,0.35) 0%, transparent 60%);
    pointer-events: none;
}
.fc-as-hero > .fc-as-container {
    position: relative;
    z-index: 1;
}
.fc-as-hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid rgba(199,164,70,0.18);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}
.fc-as-stat {
    text-align: center;
}
.fc-as-stat__num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--fc-gold);
    line-height: 1;
    margin-bottom: 6px;
}
.fc-as-stat__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
}
.fc-as-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-gold);
    border: 1px solid var(--fc-gold-border);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 22px;
}
.fc-as-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 22px;
    color: var(--fc-text);
}
.fc-as-hero__title em {
    color: var(--fc-gold);
    font-style: italic;
}
.fc-as-hero__sub {
    font-size: 20px;
    line-height: 1.55;
    color: var(--fc-text-warm);
    max-width: 640px;
    margin: 0 auto;
}

/* Szövegszekciók – alternáló háttér */
.fc-as-intro      { padding: 56px 0 32px; background: var(--fc-bg); }
.fc-as-results    { padding: 48px 0;      background: var(--fc-bg-surface); }
.fc-as-update     { padding: 56px 0;      background: linear-gradient(180deg, rgba(199,164,70,0.08) 0%, var(--fc-bg) 100%); }
.fc-as-packages   { padding: 56px 0;      background: var(--fc-bg-surface); }
.fc-as-dates      { padding: 64px 0;      background: var(--fc-bg); }
.fc-as-frame      { padding: 48px 0 64px; background: var(--fc-bg-surface); }
.fc-as-faq        { padding: 64px 0;      background: var(--fc-bg); }
.fc-as-intro p,
.fc-as-results p,
.fc-as-update p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--fc-text-warm);
    margin: 0 0 18px;
}
.fc-as-italic {
    font-style: italic;
    color: var(--fc-gold-light);
}

/* Lista (aranypont / pipa) */
.fc-as-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.fc-as-list li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--fc-text-warm);
}
.fc-as-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-gold);
}

/* Eredmények szekcióban: pipa ikon helyett dot + 2 oszlop */
.fc-as-results .fc-as-list li {
    padding-left: 34px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.fc-as-results .fc-as-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    top: 4px;
    border-radius: 6px;
    background: rgba(199,164,70,0.12);
    border: 1px solid var(--fc-gold-border);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C7A446' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
@media (min-width: 720px) {
    .fc-as-results .fc-as-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
        row-gap: 4px;
    }
}

/* Update doboz */
.fc-as-update__box {
    position: relative;
    background: linear-gradient(180deg, rgba(199,164,70,0.06), rgba(199,164,70,0.02));
    border: 1px solid var(--fc-gold-border);
    border-radius: 14px;
    padding: 36px 40px 32px;
    margin-bottom: 28px;
    box-shadow: 0 20px 50px -25px rgba(0,0,0,0.5);
}
.fc-as-update__quote {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--fc-gold);
    opacity: 0.35;
}
.fc-as-update__label {
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin: 0 0 14px !important;
}
.fc-as-quote {
    border-left: 3px solid var(--fc-gold);
    background: rgba(0,0,0,0.22);
    padding: 16px 20px;
    margin: 16px 0 0;
    font-style: italic;
    color: var(--fc-text);
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
}
.fc-as-emphasis {
    font-weight: 500;
    color: var(--fc-text) !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin: 0 0 20px !important;
}

/* Ciklus toggle (havi / 3 havi) */
.fc-as-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--fc-bg-elevated);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 36px;
}
.fc-as-toggle__btn {
    padding: 8px 24px;
    border-radius: 36px;
    border: none;
    background: transparent;
    color: var(--fc-text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fc-as-toggle__btn.aktiv {
    background: var(--fc-gold);
    color: #07070E;
    font-weight: 600;
}
.fc-as-save-badge {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}
.fc-as-toggle__btn.aktiv .fc-as-save-badge {
    background: rgba(7,7,14,0.2);
    color: #07070E;
}

/* Csomag kártyák */
.fc-as-packages {
    padding: 44px 0;
}
.fc-as-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.fc-as-pkg {
    background: var(--fc-bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.fc-as-pkg:hover {
    border-color: var(--fc-gold-border);
    transform: translateY(-2px);
}
.fc-as-pkg--featured {
    border-color: var(--fc-gold);
    background: linear-gradient(180deg, rgba(199,164,70,0.06), rgba(199,164,70,0.02));
}
.fc-as-pkg__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fc-gold);
    color: var(--fc-bg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 12px;
    white-space: nowrap;
}
.fc-as-pkg__version {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 10px;
}
.fc-as-pkg__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--fc-text);
    margin: 0 0 14px;
}
.fc-as-pkg--featured .fc-as-pkg__name {
    color: var(--fc-gold);
}
.fc-as-pkg__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fc-text-muted);
    margin: 0 0 20px;
}
.fc-as-pkg .fc-as-list {
    margin-bottom: 22px;
}
.fc-as-pkg .fc-as-list li {
    font-size: 14.5px;
}
.fc-as-pkg__price {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-bottom: 16px;
    text-align: center;
}
.fc-as-pkg__price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--fc-gold);
    line-height: 1;
}
.fc-as-pkg__price-note {
    font-size: 13px;
    color: var(--fc-text-muted);
    margin-top: 6px;
}
.fc-as-pkg__beta {
    font-size: 13px;
    line-height: 1.65;
    color: var(--fc-text-muted);
    margin: 0 0 20px;
    font-style: italic;
}
.fc-as-pkg__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

/* Fontos keret doboz */
.fc-as-frame__box {
    position: relative;
    background: linear-gradient(180deg, rgba(199,164,70,0.08), rgba(199,164,70,0.02));
    border: 1px solid var(--fc-gold-border);
    border-radius: 14px;
    padding: 36px 40px 32px 92px;
    box-shadow: 0 20px 50px -25px rgba(0,0,0,0.5);
}
.fc-as-frame__icon {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(199,164,70,0.14);
    color: var(--fc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fc-gold-border);
}
.fc-as-frame__box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--fc-gold);
    margin: 0 0 12px;
}
.fc-as-frame__box p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--fc-text-warm);
    margin: 0;
}

/* Fontos dátumok – kártyák */
.fc-as-dates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}
.fc-as-date-card {
    background: var(--fc-bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.fc-as-date-card:hover {
    transform: translateY(-2px);
    border-color: var(--fc-gold-border);
    background: rgba(199,164,70,0.04);
}
.fc-as-date-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(199,164,70,0.10);
    color: var(--fc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fc-gold-border);
}
.fc-as-date-card__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
    margin-bottom: 8px;
}
.fc-as-date-card__value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--fc-gold-light);
    line-height: 1.3;
}

/* Szekció cím */
.fc-as-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--fc-text);
    text-align: center;
    margin: 0 0 28px;
}

/* GYIK */
.fc-as-faq {
    padding: 40px 0;
}
.fc-as-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fc-as-faq__item {
    background: var(--fc-bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 22px;
    transition: border-color 0.25s;
}
.fc-as-faq__item[open] {
    border-color: var(--fc-gold-border);
}
.fc-as-faq__item summary {
    font-size: 15px;
    font-weight: 500;
    color: var(--fc-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
    line-height: 1.5;
}
.fc-as-faq__item summary::-webkit-details-marker { display: none; }
.fc-as-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fc-gold);
    font-size: 22px;
    font-weight: 300;
}
.fc-as-faq__item[open] summary::after {
    content: "−";
}
.fc-as-faq__item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fc-text-warm);
    margin: 14px 0 0;
}
.fc-as-faq__item p + p {
    margin-top: 10px;
}
.fc-as-faq-more {
    text-align: center;
    margin: 26px 0 0;
    font-size: 14px;
    color: var(--fc-text-muted);
}

/* Záró szekció */
.fc-as-closing {
    position: relative;
    padding: 72px 0 100px;
    text-align: center;
    background: var(--fc-bg-surface);
    overflow: hidden;
}
.fc-as-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(199,164,70,0.14) 0%, transparent 60%);
    pointer-events: none;
}
.fc-as-closing > .fc-as-container { position: relative; z-index: 1; }
.fc-as-closing__date {
    font-size: 17px;
    color: var(--fc-gold);
    margin: 0 0 28px;
}
.fc-as-closing__welcome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-style: italic;
    color: var(--fc-text);
    margin: 0 0 8px;
}
.fc-as-closing__signature {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--fc-gold);
    margin: 0;
    padding: 0 32px 4px;
    border-bottom: 1px solid var(--fc-gold-border);
    position: relative;
}
.fc-as-closing__signature::before,
.fc-as-closing__signature::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fc-gold-border));
}
.fc-as-closing__signature::before { right: 100%; }
.fc-as-closing__signature::after  { left: 100%; background: linear-gradient(90deg, var(--fc-gold-border), transparent); }

/* Reszponzív */
@media (max-width: 900px) {
    .fc-as-packages__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px auto 0;
    }
    .fc-as-hero { padding: calc(var(--fc-header-h) + 24px) 0 48px; }
    .fc-as-hero__title { font-size: 40px; }
    .fc-as-hero__sub { font-size: 18px; }
    .fc-as-hero__stats { gap: 24px; margin-top: 32px; padding-top: 24px; }
    .fc-as-stat__num { font-size: 28px; }
    .fc-as-gate h1 { font-size: 30px; }
    .fc-as-container { padding: 0 20px; }
    .fc-as-section-title { font-size: 28px; }
    .fc-as-dates__grid { grid-template-columns: 1fr; max-width: 380px; }
    .fc-as-frame__box { padding: 28px 24px 24px; }
    .fc-as-frame__icon { position: static; margin: 0 0 16px; }
    .fc-as-update__box { padding: 28px 24px 24px; }
    .fc-as-update__quote { width: 30px; height: 30px; top: 16px; right: 16px; }
    .fc-as-closing__welcome { font-size: 28px; }
    .fc-as-closing__signature { font-size: 24px; }
    .fc-as-pkg { padding: 28px 22px; }
    .fc-as-pkg__name { font-size: 22px; }
    .fc-as-emphasis { font-size: 16px !important; }
    .fc-as-intro { padding: 40px 0 24px; }
    .fc-as-results { padding: 36px 0; }
    .fc-as-update { padding: 40px 0; }
    .fc-as-packages { padding: 40px 0; }
    .fc-as-dates { padding: 48px 0; }
    .fc-as-frame { padding: 36px 0 48px; }
    .fc-as-faq { padding: 48px 0; }
}

/* Szekció alcím (csomagok szekció) */
.fc-as-section-sub {
    text-align: center;
    color: var(--fc-text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Megtakarítás értesítő – 3 havi toggle választásakor csúszik be */
.fc-as-savings-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(199,164,70,0.15), rgba(199,164,70,0.06));
    border: 1px solid rgba(199,164,70,0.45);
    border-radius: 10px;
    color: var(--fc-gold-light);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    margin-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease, margin-bottom 0.35s ease;
}
.fc-as-savings-notif svg { flex-shrink: 0; color: var(--fc-gold); }
.fc-as-savings-notif--visible {
    max-height: 80px;
    opacity: 1;
    padding: 13px 20px;
    margin-bottom: 24px;
}

/* Ár villantó animáció toggle váltáskor */
@keyframes fc-price-pop {
    0%   { transform: scale(1);    color: var(--fc-gold); }
    35%  { transform: scale(1.08); color: var(--fc-gold-light); }
    100% { transform: scale(1);    color: var(--fc-gold); }
}
.fc-as-price-pop {
    animation: fc-price-pop 0.45s ease;
}

/* ── Átfogó mobilos optimalizálás ── */
@media (max-width: 768px) {
    /* Szekciók aranyszínű elválasztóval */
    .fc-as-results,
    .fc-as-update,
    .fc-as-packages,
    .fc-as-dates,
    .fc-as-frame,
    .fc-as-faq,
    .fc-as-closing {
        border-top: 1px solid rgba(199,164,70,0.25);
    }

    /* Szekció háttér kontrasztok mobilon – arany tónus */
    .fc-as-results  { background: rgba(199,164,70,0.05); }
    .fc-as-update   { background: linear-gradient(180deg, rgba(199,164,70,0.12) 0%, rgba(199,164,70,0.03) 100%); }
    .fc-as-packages { background: rgba(199,164,70,0.04); }
    .fc-as-frame    { background: linear-gradient(180deg, rgba(199,164,70,0.08) 0%, rgba(199,164,70,0.02) 100%); }

    /* Toggle: teljes szélesség, nagy érintőfelület */
    .fc-as-toggle {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 28px;
    }
    .fc-as-toggle__btn {
        flex: 1;
        min-height: 48px;
        justify-content: center;
        font-size: 14px;
        padding: 10px 16px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        user-select: none;
    }
    .fc-as-toggle__btn.aktiv {
        box-shadow: 0 2px 12px rgba(199,164,70,0.3);
    }

    /* Csomag kártyák – erősebb vizuális jelenlét */
    .fc-as-pkg {
        border-color: rgba(199,164,70,0.25);
        box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }
    .fc-as-pkg--featured {
        background: linear-gradient(180deg, rgba(199,164,70,0.13), rgba(199,164,70,0.05));
        border-color: rgba(199,164,70,0.55);
    }

    /* Eredmény lista: vizuális szünet a két lista között */
    .fc-as-results .fc-as-list + .fc-as-italic {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--fc-gold-border);
        display: block;
    }

    /* Lista elemek */
    .fc-as-list li {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 10px;
    }

    /* Idézet doboz */
    .fc-as-quote {
        font-size: 14px;
        line-height: 1.65;
        padding: 14px 16px;
    }

    /* Kiemelő mondat: bal szegéllyel kiemelt */
    .fc-as-emphasis {
        font-size: 17px !important;
        border-left: 3px solid var(--fc-gold);
        padding-left: 16px;
        margin-left: 0 !important;
    }

    /* Dátum kártyák: ikon bal, szöveg jobb (vízszintes) */
    .fc-as-date-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 18px 20px;
    }
    .fc-as-date-card__icon {
        flex-shrink: 0;
        margin: 0;
    }
    .fc-as-dates__grid { max-width: 100%; }

    /* Section sub mobilon */
    .fc-as-section-sub { font-size: 14px; margin-bottom: 20px; }

    /* Záró szekció */
    .fc-as-closing { padding: 48px 0; }

    /* GYIK elemek – kicsit nagyobb érintőfelület */
    .fc-as-faq__item summary { padding: 14px 0; }
}

@media (max-width: 480px) {
    .fc-as-hero { padding: calc(var(--fc-header-h) + 16px) 0 36px; }
    .fc-as-hero__title { font-size: 28px; }
    .fc-as-hero__sub { font-size: 16px; }
    .fc-as-hero__stats { flex-direction: column; align-items: center; gap: 20px; }
    .fc-as-stat__num { font-size: 24px; }
    .fc-as-pkg { padding: 22px 16px; }
    .fc-as-pkg__name { font-size: 19px; }
    .fc-as-pkg__price-amount { font-size: 32px; }
    .fc-as-section-title { font-size: 24px; }
    .fc-as-closing__welcome { font-size: 24px; }
    .fc-as-closing__signature { font-size: 20px; }
    .fc-as-emphasis { font-size: 15px !important; }
    .fc-as-gate h1 { font-size: 26px; }
    .fc-as-container--narrow { padding: 0 16px; }
    .fc-as-update__box { padding: 22px 16px 18px; }
    .fc-as-frame__box { padding: 22px 16px 18px; }
    .fc-as-list li { font-size: 14px; }
    .fc-as-pkg .fc-as-list li { font-size: 13.5px; }
}
