/* ============================================
   AiCO|Facility - Irodahaz Landing
   Stilus: vilagos, letisztult, B2B professzionalis
   Fo szin: #7BC53F (AiCO zold)
   ============================================ */

:root {
    --aico-green: #7BC53F;
    --aico-green-dark: #6BB02D;
    --aico-green-light: #E8F5DA;
    --accent-red: #E63946;
    --accent-red-soft: #FDECEE;
    --text-primary: #1A2332;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --bg-white: #FFFFFF;
    --bg-soft: #F7FAFC;
    --bg-blue-soft: #EFF6FB;
    --border-light: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.08);
    --shadow-lg: 0 20px 50px rgba(26, 35, 50, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============== NAVBAR ============== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    padding: 16px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo span { color: var(--aico-green); font-weight: 600; }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--aico-green); }

.nav-cta {
    background: var(--aico-green);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s;
}

.nav-cta:hover {
    background: var(--aico-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(123, 197, 63, 0.35);
}

/* ============== MOBIL HAMBURGER MENU ============== */
.mobile-menu-toggle {
    display: none; /* alapbol rejtve, csak mobilon jelenik meg */
    background: transparent;
    border: 1px solid #333;
    color: #000;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle i {
    display: inline-block;
    pointer-events: none;
}

.mobile-menu-toggle:hover {
    background: #f5f5f5;
    border-color: #000;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ============== HERO ============== */
.hero {
    background: linear-gradient(135deg, #EFF6FB 0%, #F7FCFA 60%, #FFFFFF 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 197, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
    align-items: start;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aico-green-light);
    color: var(--aico-green-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i { font-size: 11px; }

.hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--aico-green);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-item .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--aico-green);
    display: block;
    line-height: 1;
}

.stat-item .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

/* Hero gombok kompaktabbra - hogy mindenkep egymas mellett ferjenek */
.hero-cta-group .btn-primary {
    padding: 14px 22px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-cta-group .btn-secondary {
    padding: 14px 12px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .hero-cta-group {
        flex-wrap: wrap;
    }

    /* Mobil hamburger gomb megjelenitese */
    .mobile-menu-toggle {
        display: inline-flex;
    }

    /* Nav links elrejtese alapbol mobilon, drop-down ha aktiv */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-top: 1px solid #eee;
        z-index: 999;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 8px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* A "Bemutatot kerek" CTA gomb mobilon is megtartja a zold hattert */
    .nav-links .nav-cta {
        margin-top: 8px;
        text-align: center;
        padding: 12px;
        border: none;
    }

    /* Navbar belso poziciozas */
    .navbar .nav-inner {
        position: relative;
    }

    /* ============== DEMO SZEKCIO MOBIL VISELKEDES ============== */
    /* A webes felulet kartya elrejtese mobilon (csak a PWA latszik) */
    .demo-grid > .demo-card:not(.demo-mobile) {
        display: none !important;
    }

    /* A "Bejelento" QR kartya elrejtese mobilon, csak a Karbantarto marad */
    .pwa-qr-roles > .pwa-qr-card:first-child {
        display: none !important;
    }

    /* A maradek (Karbantarto) PWA kartya kozepen, teljes szelessegben */
    .pwa-qr-roles {
        grid-template-columns: 1fr !important;
        justify-content: center;
    }

    .pwa-qr-card {
        width: 100%;
    }

    /* Karbantarto QR kartya: kattinthatosag kiemelese mobilon */
    .pwa-qr-card.pwa-qr-clickable {
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .pwa-qr-card.pwa-qr-clickable * {
        pointer-events: none;
    }

    .pwa-qr-card.pwa-qr-clickable:hover,
    .pwa-qr-card.pwa-qr-clickable:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* "Erintsd meg a belepeshez" hint csak mobilon */
    .pwa-mobile-tap-hint {
        display: block !important;
    }
}

/* Asztali nezetben a tap hint NEM jelenik meg */
.pwa-mobile-tap-hint {
    display: none !important;
}

.btn-primary {
    background: var(--aico-green);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--aico-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 197, 63, 0.35);
}

.btn-secondary {
    color: var(--text-primary);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover { color: var(--aico-green); }

/* HERO VIZUAL - illusztracio kepke */
.hero-visual {
    position: relative;
}

/* Lebegő (overlay) kartya a kepen */
.hero-floating-card {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(26, 35, 50, 0.18);
    padding: 18px 20px;
    width: 280px;
    border-left: 4px solid var(--aico-green);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-floating-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hero-floating-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-floating-card .card-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.hero-floating-card .card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.hero-floating-card .card-meta i {
    margin-right: 4px;
    color: var(--aico-green-dark);
}

/* Regi kartyas vizulazacio - megtartjuk a kompatibilitas miatt */
.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 20px;
}

.hero-card-1 {
    top: 0;
    right: 0;
    width: 320px;
    border-left: 4px solid var(--aico-green);
}

.hero-card-2 {
    top: 180px;
    left: 0;
    width: 280px;
    border-left: 4px solid var(--accent-red);
}

.hero-card-3 {
    bottom: 0;
    right: 40px;
    width: 300px;
    border-left: 4px solid #4A90E2;
}

.hero-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-card .card-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}

.badge-success { background: var(--aico-green-light); color: var(--aico-green-dark); }
.badge-danger { background: var(--accent-red-soft); color: var(--accent-red); }
.badge-info { background: #E3F2FD; color: #1976D2; }

.hero-card .card-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-card .card-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-muted);
}

.hero-card .card-meta i { color: var(--aico-green); margin-right: 4px; }

/* ============== TRUST BAR ============== */
.trust-bar {
    background: var(--bg-soft);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-content strong { color: var(--text-primary); }

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i { color: var(--aico-green); }

/* ============== PAIN POINTS ============== */
.pain-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--aico-green-light);
    color: var(--aico-green-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.pain-card:hover {
    border-color: var(--aico-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pain-card:hover::before { transform: scaleX(1); }

.pain-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-red-soft);
    color: var(--accent-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pain-card .pain-text {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* MEGOLDAS DOBOZ - kicsit hangsulyosabb */
.solution-box {
    background: linear-gradient(135deg, var(--aico-green-light) 0%, #F0F9E5 100%);
    border-left: 3px solid var(--aico-green);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
}

.solution-box .solution-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.solution-box .solution-header i {
    color: var(--aico-green);
    font-size: 14px;
}

.solution-box .solution-header span {
    font-size: 11px;
    font-weight: 700;
    color: var(--aico-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.solution-box .solution-body {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

/* ============== HOW IT WORKS ============== */
.how-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.how-text > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .check {
    width: 28px;
    height: 28px;
    background: var(--aico-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list .feat-content strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-list .feat-content span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* HOW VIZUAL - dashboard mockup */
.dashboard-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.mockup-header {
    background: var(--bg-soft);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28C940; }

.mockup-header .mockup-title {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-muted);
}

.mockup-body {
    padding: 24px;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat {
    background: var(--bg-soft);
    padding: 14px;
    border-radius: var(--radius-sm);
}

.mockup-stat .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--aico-green);
    display: block;
}

.mockup-stat.danger .stat-num { color: var(--accent-red); }

.mockup-stat .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.mockup-list-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.mockup-row:last-child { border-bottom: none; }

.mockup-row .row-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.row-icon.green { background: var(--aico-green-light); color: var(--aico-green-dark); }
.row-icon.red { background: var(--accent-red-soft); color: var(--accent-red); }
.row-icon.blue { background: #E3F2FD; color: #1976D2; }

.mockup-row .row-text { flex: 1; color: var(--text-primary); font-weight: 500; }
.mockup-row .row-meta { font-size: 11px; color: var(--text-muted); }

/* ============== MODULES ============== */
.modules-section {
    padding: 100px 0;
    background: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.module-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
}

.module-card:hover {
    border-color: var(--aico-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.module-card .module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--aico-green);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s;
}

.module-card:hover .module-link { gap: 10px; }

.module-icon {
    width: 48px;
    height: 48px;
    background: var(--aico-green-light);
    color: var(--aico-green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.module-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============== MODAL ============== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.25s;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    background: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 1;
}

.modal-header .modal-icon {
    width: 52px;
    height: 52px;
    background: var(--aico-green-light);
    color: var(--aico-green-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 24px;
    flex: 1;
    margin: 0;
}

.modal-close {
    background: var(--bg-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--accent-red-soft);
    color: var(--accent-red);
}

.modal-body {
    padding: 24px 32px 32px;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-body h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 24px 0 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.modal-features li {
    padding: 10px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.modal-features li:last-child { border-bottom: none; }

.modal-features li i {
    color: var(--aico-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.modal-cta {
    background: var(--aico-green-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 24px;
    text-align: center;
}

.modal-cta p {
    margin: 0 0 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.modal-cta .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
}

/* ============== ONLINE DEMO SECTION ============== */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7FCFA 0%, #EFF6FB 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 197, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.demo-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 136, 197, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.demo-section .container { position: relative; }

.demo-section .section-tag {
    background: white;
    border: 1px solid var(--aico-green);
    color: var(--aico-green-dark);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.demo-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.demo-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.demo-card-title h3 {
    font-size: 22px;
    margin: 0;
}

.demo-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--aico-green-light);
    color: var(--aico-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.demo-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* DEMO ROLE BUTTONS */
.demo-roles {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-role-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    text-align: left;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.demo-role-btn:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.demo-role-btn.role-reporter:hover { border-color: #7BC53F; }
.demo-role-btn.role-operator:hover { border-color: #3F88C5; }
.demo-role-btn.role-qr:hover { border-color: #4A5568; }

.role-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.role-reporter .role-icon-wrap { background: #7BC53F; }
.role-operator .role-icon-wrap { background: #3F88C5; }
.role-qr .role-icon-wrap { background: #4A5568; }

.role-content {
    flex: 1;
    min-width: 0;
}

.role-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.role-name-en {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.role-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.role-arrow {
    color: var(--text-muted);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.demo-role-btn:hover .role-arrow {
    transform: translateX(4px);
}

.role-reporter:hover .role-arrow { color: #7BC53F; }
.role-operator:hover .role-arrow { color: #3F88C5; }
.role-qr:hover .role-arrow { color: #4A5568; }

/* MOBIL DEMO PANEL */
.demo-mobile {
    background: linear-gradient(180deg, #1A2332 0%, #2D3748 100%);
    color: white;
    text-align: center;
    border: none;
}

.demo-mobile .demo-card-title h3 { color: white; }

.demo-mobile .demo-card-icon {
    background: rgba(123, 197, 63, 0.2);
    color: var(--aico-green);
}

.demo-mobile > p {
    color: rgba(255, 255, 255, 0.75);
}

/* PWA QR ROLES - ket QR egymas mellett */
.pwa-qr-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.pwa-qr-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    transition: all 0.25s;
}

.pwa-qr-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(123, 197, 63, 0.4);
    transform: translateY(-2px);
}

.pwa-qr-role-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pwa-qr-role-label.role-1 {
    background: rgba(123, 197, 63, 0.2);
    color: #A3D86B;
}

.pwa-qr-role-label.role-2 {
    background: rgba(63, 136, 197, 0.25);
    color: #7AB5DD;
}

.pwa-qr-role-label i { font-size: 10px; }

.pwa-qr-img-wrap {
    background: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 12px;
}

.pwa-qr-img-wrap canvas {
    display: block;
    width: 130px;
    height: 130px;
}

.pwa-qr-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* DEMO TRUST BAR */
.demo-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding: 24px 32px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.demo-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.demo-trust-item i {
    color: var(--aico-green);
    font-size: 16px;
}

/* ============== VIDEO SECTION ============== */
.video-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.video-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2D3748 0%, #1A2332 100%);
    overflow: hidden;
}

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

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

.video-thumb::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aico-green);
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.25s;
    z-index: 2;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--aico-green);
    color: white;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.video-info {
    padding: 22px 24px;
}

.video-info h4 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============== FM ELEMZES SECTION ============== */
.fm-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.fm-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 197, 63, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.fm-text .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--aico-green) 0%, #5FA82E 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(123, 197, 63, 0.4);
}

.fm-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fm-text h2 .gradient {
    background: linear-gradient(135deg, var(--aico-green) 0%, #4A8E2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fm-text > p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.fm-features {
    list-style: none;
    margin-bottom: 32px;
}

.fm-features li {
    padding: 12px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-primary);
}

.fm-features li i {
    color: var(--aico-green);
    margin-top: 4px;
    font-size: 16px;
    flex-shrink: 0;
}

.fm-features li strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* FM vizual - elemzesi mockup */
.fm-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    position: relative;
}

.fm-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.fm-mockup-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--aico-green) 0%, #5FA82E 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fm-mockup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.fm-mockup-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.fm-score-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.fm-score-card {
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.fm-score-card.danger { background: var(--accent-red-soft); }
.fm-score-card.warning { background: #FFF7E0; }
.fm-score-card.success { background: var(--aico-green-light); }

.fm-score-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.fm-score-card.danger .fm-score-num { color: var(--accent-red); }
.fm-score-card.warning .fm-score-num { color: #D97706; }
.fm-score-card.success .fm-score-num { color: var(--aico-green-dark); }

.fm-score-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fm-finding {
    padding: 14px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
}

.fm-finding i {
    margin-top: 3px;
    flex-shrink: 0;
}

.fm-finding.danger i { color: var(--accent-red); }
.fm-finding.warning i { color: #D97706; }
.fm-finding strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
    font-size: 13px;
}

.fm-finding span {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
}

/* FM Demo Modal */
.fm-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fm-modal-overlay.active { display: flex; }

/* Iframe konteneres FM modal: nagy, kozeppe igazitott */
.fm-modal-iframe-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    height: 92vh;
    max-height: 920px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fm-modal-iframe-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
    flex: 1;
    border-radius: 20px;
    background: #f0f4fa;
}

.fm-modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s;
}

.fm-modal-close-btn:hover {
    background: var(--accent-red, #E63946);
    color: white;
    border-color: var(--accent-red, #E63946);
    transform: rotate(90deg);
}

/* Mobil reszponziv: a modal teljesen kitolti a kepernyot */
@media (max-width: 768px) {
    .fm-modal-overlay {
        padding: 0;
    }
    .fm-modal-iframe-content {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .fm-modal-iframe-content iframe {
        border-radius: 0;
    }
    .fm-modal-close-btn {
        top: 12px;
        right: 12px;
    }
}

/* ============== UJ ARAK / CSOMAGOK ============== */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 32px;
}

.tier-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--aico-green);
}

.tier-card.featured {
    border-color: var(--aico-green);
    background: linear-gradient(180deg, #FAFEF7 0%, white 100%);
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.tier-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--aico-green) 0%, #5FA82E 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(123, 197, 63, 0.4);
    white-space: nowrap;
}

.tier-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.tier-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 42px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.tier-price .from {
    font-size: 12px;
    color: var(--text-muted);
}

.tier-price .amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.tier-card.featured .tier-price .amount { color: var(--aico-green); }

.tier-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.tier-pricenote {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tier-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.tier-features li {
    padding: 8px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.tier-features li i {
    color: var(--aico-green);
    margin-top: 4px;
    font-size: 12px;
    flex-shrink: 0;
}

.tier-features li.muted { color: var(--text-muted); }
.tier-features li.muted i { color: var(--text-muted); opacity: 0.5; }

.tier-cta {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--aico-green);
    background: var(--aico-green);
    color: white;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: block;
}

.tier-cta:hover {
    background: var(--aico-green-dark);
    border-color: var(--aico-green-dark);
    color: white;
}

.tier-card.featured .tier-cta {
    background: var(--aico-green);
    color: white;
}

.tier-card.featured .tier-cta:hover {
    background: var(--aico-green-dark);
    border-color: var(--aico-green-dark);
}

.calculator-cta {
    background: linear-gradient(135deg, #EFF6FB 0%, var(--aico-green-light) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: center;
    margin-top: 24px;
}

.calculator-cta h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.calculator-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.calculator-cta .btn-primary {
    padding: 13px 28px;
    font-size: 15px;
}

/* ============== TESTIMONIAL ============== */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-blue-soft) 0%, var(--aico-green-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    margin: 48px auto 0;
    position: relative;
    max-width: 1280px;
}

.testimonial-track {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 30px 0;
}

.testimonial-cards {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.testimonial-slide {
    width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kozepso (elso lathato) kartya kiemelve */
.testimonial-slide.is-center {
    transform: scale(1.05);
    z-index: 2;
}

.testimonial-slide.is-side {
    transform: scale(0.95);
    opacity: 0.85;
}

.testimonial-slide .testimonial-card {
    margin: 0;
    padding: 36px 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
    transition: box-shadow 0.3s;
}

.testimonial-slide.is-center .testimonial-card {
    box-shadow: 0 25px 60px rgba(26, 35, 50, 0.18);
    border: 2px solid var(--aico-green);
    background: linear-gradient(180deg, #FAFEF7 0%, white 100%);
}

.testimonial-slide .quote-mark {
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    line-height: 1;
    color: var(--aico-green);
    opacity: 0.18;
}

.testimonial-slide.is-center .quote-mark {
    color: var(--aico-green);
    opacity: 0.25;
}

.testimonial-slide .testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    padding-top: 8px;
}

.testimonial-slide.is-center .testimonial-text {
    font-size: 16px;
}

.testimonial-slide .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-slide .author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--aico-green) 0%, #5FA82E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.testimonial-slide .author-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-slide .author-info .author-role {
    font-size: 13px;
    color: var(--aico-green-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.testimonial-slide .author-info .author-company {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slider-btn:hover {
    background: var(--aico-green);
    color: white;
    border-color: var(--aico-green);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--aico-green);
    width: 28px;
    border-radius: 5px;
}

/* ============== PRICING TEASER ============== */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FAFCFD 0%, white 100%);
    border: 2px solid var(--aico-green);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 197, 63, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.pricing-content { position: relative; }

.pricing-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

.pricing-card > .pricing-content > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-from {
    font-size: 14px;
    color: var(--text-muted);
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--aico-green);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

.price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 380px;
    margin: 0 auto 36px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--aico-green);
    font-size: 14px;
}

/* ============== CTA SECTION ============== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--aico-green) 0%, var(--aico-green-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container { position: relative; }

.cta-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 19px;
    opacity: 0.95;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    max-width: 520px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.cta-form h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cta-form > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.form-row textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--aico-green);
    box-shadow: 0 0 0 3px rgba(123, 197, 63, 0.15);
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    width: 100%;
    background: var(--aico-green);
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--aico-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* ============== FOOTER ============== */
.footer {
    background: #1A2332;
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; display: block; }
.footer-brand p { line-height: 1.6; max-width: 380px; }

.footer h5 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer ul { list-style: none; }
.footer li { padding: 6px 0; }
.footer a:hover { color: var(--aico-green); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 968px) {
    .hero-grid,
    .how-grid,
    .footer-grid,
    .fm-grid,
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero h1 { font-size: 38px; }
    .pain-grid,
    .modules-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    .tier-card.featured {
        transform: scale(1);
    }
    .tier-card.featured:hover {
        transform: translateY(-6px);
    }
    .section-header h2 { font-size: 32px; }
    .cta-section h2 { font-size: 32px; }
    .fm-text h2 { font-size: 32px; }
    /* Slider tableten - 2 kartya egyszerre, nincs kozepso kiemeles */
    .testimonial-slide {
        width: calc((100% - 24px) / 2);
    }
    .testimonial-slide.is-center,
    .testimonial-slide.is-side {
        transform: scale(1);
        opacity: 1;
    }
    .testimonial-slide .testimonial-card {
        padding: 32px 28px;
    }
}

@media (max-width: 700px) {
    /* Slider mobilon - 1 kartya egyszerre */
    .testimonial-slide {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero { padding: 48px 0 64px; }
    .hero h1 { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .pain-grid,
    .modules-grid,
    .video-grid { grid-template-columns: 1fr; }
    .form-row-grid { grid-template-columns: 1fr; }
    .pain-section,
    .how-section,
    .modules-section,
    .testimonial-section,
    .pricing-section,
    .video-section,
    .fm-section,
    .demo-section,
    .cta-section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .price-amount,
    .tier-price .amount { font-size: 36px; }
    .hero-card-1, .hero-card-2, .hero-card-3 {
        position: relative;
        width: 100%;
        margin-bottom: 16px;
        top: auto; left: auto; right: auto; bottom: auto;
    }
    .calculator-cta { padding: 24px; }
    .calculator-cta h4 { font-size: 18px; }
    .fm-mockup { padding: 20px; }
    .fm-score-row { gap: 8px; }
    .fm-score-card { padding: 12px 8px; }
    .fm-score-num { font-size: 22px; }
    .demo-card { padding: 28px 24px; }
    .demo-trust { gap: 20px; padding: 20px; }
    .demo-trust-item { font-size: 13px; }
    .demo-role-btn { padding: 16px; gap: 14px; }
    .role-icon-wrap { width: 44px; height: 44px; font-size: 18px; }
    .role-name { font-size: 15px; }
}

/* Animacio */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out backwards;
}

.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }
.fade-in.d4 { animation-delay: 0.4s; }

/* ============== FORM SUCCESS / ERROR MODAL ============== */
.form-success-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.form-success-overlay.active { display: flex; }

.form-success-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 48px 36px 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.form-success-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-close-btn:hover {
    background: var(--accent-red-soft);
    color: var(--accent-red);
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--aico-green) 0%, var(--aico-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(123, 197, 63, 0.4);
}

.form-success-overlay.error .form-success-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #B83342 100%);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.form-success-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.55;
}

/* Form loading state */
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-error-msg {
    background: var(--accent-red-soft);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 14px;
    text-align: left;
}

/* ============== SCROLL TO TOP BUTTON ============== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--aico-green);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(123, 197, 63, 0.4), 0 2px 6px rgba(26, 35, 50, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: var(--aico-green-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(123, 197, 63, 0.5), 0 4px 10px rgba(26, 35, 50, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1);
}

.scroll-to-top i {
    transition: transform 0.2s;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Mobil meretek */
@media (max-width: 700px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ============== HERO IMAGE (kep a hero jobb oldalan) ============== */
.hero-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(26, 35, 50, 0.25),
        0 10px 25px -5px rgba(26, 35, 50, 0.1);
    background: linear-gradient(135deg, var(--aico-green-light) 0%, #F0F9E8 100%);
    /* A kep tetejet a hero H1 fo szoveg vonalahoz igazitja (badge + alatta levo margo kompenzalasa) */
    margin-top: 70px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder allapot - ha meg nincs kep */
.hero-image-wrap.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--aico-green-dark);
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--aico-green);
}

.hero-image-wrap.placeholder i {
    font-size: 64px;
    opacity: 0.4;
}

.hero-image-wrap.placeholder span {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .hero-image-wrap {
        aspect-ratio: 3 / 2;
        max-width: 100%;
        margin-top: 0;
    }
}

/* ============== VIDEO COMING SOON ============== */
.video-coming-soon {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #F7FCFA 0%, #FFFFFF 100%);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--aico-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aico-green);
    font-size: 36px;
}

.video-coming-soon h4 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.video-coming-soon p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 32px;
}

.video-coming-soon .btn-primary {
    display: inline-flex;
    margin: 0 auto;
}

/* ============== VIDEO MODAL ============== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal {
    position: relative;
    background: #000;
    border-radius: var(--radius-lg, 16px);
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.video-modal-close:hover {
    background: rgba(230, 57, 70, 0.85);
    transform: rotate(90deg);
}

.video-modal-header {
    padding: 20px 60px 16px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.video-modal-header h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.video-modal-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-body iframe,
.video-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Coming soon allapot a video modalban */
.video-modal-body.video-coming-soon {
    position: relative;
    aspect-ratio: auto;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #F7FCFA 0%, #FFFFFF 100%);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .video-modal-overlay {
        padding: 12px;
    }
    .video-modal-header {
        padding: 16px 50px 12px 16px;
    }
    .video-modal-header h3 {
        font-size: 15px;
    }
}

/* ============================================================
   ORDER MODAL (MEGRENDELES) STILUSOK
   ============================================================ */

.order-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 20px;
    overflow-y: auto;
}

.order-modal-overlay.active { display: flex; }

.order-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
    overflow: hidden;
}

.order-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E2E8F0;
    cursor: pointer;
    color: #718096;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}
.order-modal-close:hover {
    background: var(--accent-red, #E63946);
    color: white;
    border-color: var(--accent-red, #E63946);
    transform: rotate(90deg);
}

/* Header */
.order-modal-header {
    background: linear-gradient(135deg, var(--aico-green) 0%, var(--aico-green-dark, #5FA82E) 100%);
    color: white;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.order-modal-header h3 {
    color: white;
    font-size: 22px;
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.order-modal-header p {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.order-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

/* Body */
.order-modal-body {
    padding: 28px 36px 36px;
}

/* Kivalasztott csomag info */
.order-package-card {
    background: linear-gradient(135deg, var(--aico-green-light, #E8F5DA) 0%, #F0F9E8 100%);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 28px;
    border: 1px solid rgba(123, 197, 63, 0.25);
}
.order-package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(123, 197, 63, 0.25);
}
.order-package-header h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #718096);
    margin: 0;
    font-weight: 700;
}
.order-package-badge {
    background: var(--aico-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.order-package-row {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
}
.order-package-label {
    color: var(--text-muted, #718096);
    min-width: 110px;
}
.order-package-value {
    color: var(--text-primary, #1A2332);
    font-weight: 600;
    flex: 1;
}
.order-package-price {
    color: var(--aico-green-dark, #5FA82E);
    font-size: 16px;
    font-weight: 700;
}
.order-package-features {
    margin-top: 12px;
}
.order-package-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
}
.order-package-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
    line-height: 1.45;
}
.order-package-features-list li i {
    color: var(--aico-green);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Form section title */
.order-form-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #718096);
    margin: 0 0 14px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E8F0;
}
.order-form-section-title:not(:first-of-type) {
    margin-top: 22px;
}

.order-form .form-row { margin-bottom: 14px; }
.order-form label .required { color: var(--accent-red, #E63946); }

/* CAPTCHA */
.order-captcha-box {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 20px 0;
}
.order-captcha-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary, #1A2332);
    font-size: 14px;
    margin-bottom: 14px;
}
.order-captcha-label i {
    color: var(--aico-green);
}
.order-captcha-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.order-captcha-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--aico-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(123, 197, 63, 0.3);
}
.order-captcha-op {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary, #1A2332);
}
.order-captcha-input {
    width: 80px !important;
    height: 52px;
    text-align: center;
    font-size: 22px !important;
    font-weight: 700;
    border-radius: 12px !important;
    border: 2px solid var(--aico-green) !important;
}

/* Adatkezelesi info */
.order-form-info {
    display: flex;
    gap: 10px;
    background: #EFF6FB;
    border-left: 3px solid var(--aico-green);
    padding: 12px 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
    line-height: 1.5;
}
.order-form-info i {
    color: var(--aico-green);
    flex-shrink: 0;
    margin-top: 2px;
}
.order-form-info a {
    color: var(--aico-green);
    font-weight: 600;
    text-decoration: none;
}
.order-form-info a:hover { text-decoration: underline; }

/* Hiba uzenet */
.order-form-error {
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid var(--accent-red, #E63946);
    color: var(--accent-red, #E63946);
    padding: 14px 18px;
    border-radius: 10px;
    margin: 16px 0;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.order-form-error i { margin-top: 2px; flex-shrink: 0; }

/* Submit gomb */
.order-form .form-submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}
.order-form .form-submit .btn-text,
.order-form .form-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Tier-cta gomb (button elemkent) */
button.tier-cta {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

/* Mobil reszponziv */
@media (max-width: 700px) {
    .order-modal-overlay {
        padding: 12px;
    }
    .order-modal-content {
        border-radius: 14px;
    }
    .order-modal-header {
        padding: 22px 24px;
        flex-direction: column;
        text-align: center;
    }
    .order-modal-header h3 { font-size: 19px; }
    .order-modal-body { padding: 22px 20px 24px; }
    .order-package-features-list { grid-template-columns: 1fr; }
    .order-captcha-num { width: 44px; height: 44px; font-size: 18px; }
    .order-captcha-input { width: 70px !important; height: 44px; font-size: 18px !important; }
    .order-package-card { padding: 16px; }
    .order-package-row { flex-direction: column; gap: 4px; }
    .order-package-label { min-width: 0; }
}

/* ============================================================
   EGYEDI CSOMAG KALKULATOR MODAL
   ============================================================ */
.calc-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 35, 50, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1100;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
}
.calc-modal-overlay.active { display: flex; }

.calc-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
    overflow: hidden;
}

.calc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E2E8F0;
    cursor: pointer;
    color: #718096;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}
.calc-modal-close:hover {
    background: var(--accent-red, #E63946);
    color: white;
    border-color: var(--accent-red, #E63946);
    transform: rotate(90deg);
}

/* Header */
.calc-modal-header {
    background: linear-gradient(135deg, var(--aico-green) 0%, var(--aico-green-dark, #5FA82E) 100%);
    color: white;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.calc-modal-header h3 { color: white; font-size: 22px; margin: 0 0 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.calc-modal-header p { color: rgba(255,255,255,0.92); font-size: 14px; margin: 0; }
.calc-modal-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

/* Body */
.calc-modal-body {
    padding: 28px 36px 36px;
}

/* Grid: bal beallitasok, jobb osszegzes */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: flex-start;
}

/* Sectionok */
.calc-section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #718096);
    margin: 24px 0 14px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calc-section-title:first-child { margin-top: 0; }
.calc-section-title i { color: var(--aico-green); }

/* Slider sor */
.calc-row { margin-bottom: 16px; }
.calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary, #1A2332);
    font-size: 14px;
}
.calc-cost {
    color: var(--aico-green-dark, #5FA82E);
    font-weight: 700;
    font-size: 14px;
    min-width: 100px;
    text-align: right;
}
.calc-control {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--aico-green);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(123, 197, 63, 0.4);
    transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--aico-green);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(123, 197, 63, 0.4);
}
.calc-input {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary, #1A2332);
    font-size: 14px;
    font-family: inherit;
}
.calc-input:focus {
    outline: none;
    border-color: var(--aico-green);
    box-shadow: 0 0 0 3px rgba(123, 197, 63, 0.15);
}

/* Infra megjegyzes */
.calc-infra-note {
    background: rgba(123, 197, 63, 0.08);
    border-left: 3px solid var(--aico-green);
    padding: 10px 14px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-infra-note i { color: var(--aico-green); }

/* Check sor */
.calc-check-row,
.calc-radio-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}
.calc-check-row:hover,
.calc-radio-row:hover {
    border-color: var(--aico-green);
    background: rgba(123, 197, 63, 0.03);
}
.calc-check-row input,
.calc-radio-row input { position: absolute; opacity: 0; cursor: pointer; }
.calc-check-mark,
.calc-radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E0;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: white;
}
.calc-radio-mark { border-radius: 50%; }
.calc-check-row input:checked ~ .calc-check-mark,
.calc-radio-row input:checked ~ .calc-radio-mark {
    background: var(--aico-green);
    border-color: var(--aico-green);
}
.calc-check-row input:checked ~ .calc-check-mark::after {
    content: '\2713';
    color: white;
    font-weight: 700;
    font-size: 13px;
}
.calc-radio-row input:checked ~ .calc-radio-mark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}
.calc-check-text,
.calc-radio-text { display: flex; flex-direction: column; }
.calc-check-text strong,
.calc-radio-text strong { color: var(--text-primary, #1A2332); font-size: 14px; font-weight: 600; }
.calc-radio-text { font-size: 14px; color: var(--text-primary, #1A2332); font-weight: 500; }
.calc-check-text small {
    color: var(--text-muted, #718096);
    font-size: 12px;
    margin-top: 2px;
}
.calc-check-row.calc-promo-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Modulok */
.calc-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.calc-module-card {
    cursor: pointer;
    position: relative;
}
.calc-module-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.calc-module-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: white;
    transition: all 0.15s;
}
.calc-module-card:hover .calc-module-content {
    border-color: var(--aico-green);
    background: rgba(123, 197, 63, 0.03);
}
.calc-module-card input:checked ~ .calc-module-content {
    border-color: var(--aico-green);
    background: rgba(123, 197, 63, 0.08);
}
.calc-module-icon { font-size: 22px; flex-shrink: 0; }
.calc-module-info { flex: 1; min-width: 0; }
.calc-module-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1A2332);
    margin-bottom: 2px;
    line-height: 1.3;
}
.calc-module-price { font-size: 12px; color: var(--text-muted, #718096); }
.calc-module-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--aico-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}
.calc-module-card input:checked ~ .calc-module-content .calc-module-check {
    opacity: 1;
    transform: scale(1);
}

/* Jobb oldal: osszegzes */
.calc-summary-sticky {
    position: sticky;
    top: 24px;
    background: #F7FAFC;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E2E8F0;
}
.calc-final-price-box {
    text-align: center;
    background: linear-gradient(135deg, var(--aico-green) 0%, var(--aico-green-dark, #5FA82E) 100%);
    color: white;
    border-radius: 14px;
    padding: 22px 18px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(123, 197, 63, 0.3);
}
.calc-final-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 8px;
}
.calc-final-price {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    margin-bottom: 6px;
}
.calc-price-range { font-size: 12px; opacity: 0.85; }
.calc-discount-info {
    margin-top: 10px;
    background: rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 18px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
}
.calc-discount-info i { margin-right: 4px; }

.calc-summary-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #718096);
    margin: 0 0 12px;
    font-weight: 700;
}

.calc-breakdown-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}
.calc-breakdown-table td {
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
}
.calc-breakdown-table td.calc-amount {
    text-align: right;
    font-weight: 600;
    color: var(--text-primary, #1A2332);
}
.calc-discount-line td { color: var(--aico-green-dark, #5FA82E); }
.calc-total-line td {
    padding-top: 12px;
    border-bottom: none;
    color: var(--text-primary, #1A2332);
    font-size: 14px;
}
.calc-total-amount {
    color: var(--aico-green-dark, #5FA82E) !important;
    font-size: 18px !important;
    font-weight: 700;
}

.calc-setup-fee-note {
    background: rgba(63, 142, 252, 0.08);
    border-left: 3px solid #3F8EFC;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--text-secondary, #4A5568);
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-setup-fee-note i { color: #3F8EFC; }

.calc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.calc-actions .btn-primary,
.calc-actions .btn-secondary {
    width: 100%;
    justify-content: center;
}
.calc-btn-quote {
    background: white;
    color: var(--aico-green-dark, #5FA82E);
    border: 2px solid var(--aico-green);
}
.calc-btn-quote:hover {
    background: var(--aico-green);
    color: white;
}

/* 2. lepes: vissza gomb */
.calc-back-btn {
    background: transparent;
    border: 1px solid #E2E8F0;
    color: var(--text-secondary, #4A5568);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 22px;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.calc-back-btn:hover {
    border-color: var(--aico-green);
    color: var(--aico-green-dark, #5FA82E);
}

/* 2. lepes: osszegzes */
.calc-order-summary {
    background: linear-gradient(135deg, var(--aico-green-light, #E8F5DA) 0%, #F0F9E8 100%);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 26px;
    border: 1px solid rgba(123, 197, 63, 0.25);
}
.calc-order-summary h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #718096);
    margin: 0 0 14px;
    font-weight: 700;
}
.calc-order-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 18px;
    margin-bottom: 12px;
}
.calc-os-row {
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
    display: flex;
    gap: 6px;
}
.calc-os-row strong { color: var(--text-primary, #1A2332); }
.calc-os-modules {
    padding: 10px 0;
    border-top: 1px solid rgba(123, 197, 63, 0.25);
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-secondary, #4A5568);
    line-height: 1.5;
}
.calc-os-modules strong { color: var(--text-primary, #1A2332); }
.calc-os-total {
    border-top: 1px solid rgba(123, 197, 63, 0.25);
    padding-top: 12px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calc-os-total > span { color: var(--text-secondary, #4A5568); font-size: 14px; }
.calc-os-total > strong {
    color: var(--aico-green-dark, #5FA82E);
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Reszponziv */
@media (max-width: 968px) {
    .calc-grid { grid-template-columns: 1fr; }
    .calc-summary-sticky { position: static; }
    .calc-modules { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .calc-modal-overlay { padding: 8px; }
    .calc-modal-content { border-radius: 14px; }
    .calc-modal-header { padding: 22px 22px; flex-direction: column; text-align: center; }
    .calc-modal-header h3 { font-size: 18px; }
    .calc-modal-body { padding: 20px 18px 22px; }
    .calc-final-price { font-size: 26px; }
    .calc-order-summary-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   HOW-SECTION ATRENDEZES
   A felso badge + cim + intro most kulon middel kozepre igazitva,
   alatta marad a ketoszlopos lista + mockup.
   ============================================================ */

/* A how-section felso resze: kozepre igazitott badge + cim + intro */
.how-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.how-header .section-tag {
    margin: 0 auto 18px;
}

.how-header h2 {
    margin-bottom: 18px;
}

.how-header p {
    color: var(--text-secondary, #4A5568);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

/* A how-grid mostantol csak a lista + mockup-ot tartalmazza,
   tehat nem kell a how-text-ben a h2 / p stilus */
.how-text h2,
.how-text > p {
    /* Ezek a szabalyok mar nem szuksegesek, mert nincs h2/p a how-text-ben.
       De biztositasul reset, ha valahogy mas helyrol ide kerulne. */
    text-align: left;
}

/* A ket oszlopot vertikalisan a tetejehez igazitjuk:
   a feature-list es a dashboard-mockup felso szele egy vonalban legyen */
.how-grid {
    align-items: start;
}

.how-text,
.how-visual {
    align-self: start;
}

/* Mobil reszponziv */
@media (max-width: 968px) {
    .how-header {
        margin-bottom: 40px;
    }
    .how-header h2 {
        font-size: 28px;
    }
    .how-header p {
        font-size: 15px;
    }
}

/* ============================================================
   HOW-SECTION KETOSZLOPOS RESZ - FELSO IGAZITAS
   A bal oldali funkcio lista es a jobb oldali dashboard mockup
   felso szele egy vonalban kezdodjon.
   ============================================================ */
.how-grid {
    align-items: start;
}

.how-text,
.how-visual {
    align-self: start;
}
