/* 
 * Pricing Page Styles - Figma inspired
 * Munkaengedély.hu
 */

:root {
   /* === Alapszínek - Munkaengedély.hu === */
   --primary-color: rgb(27, 100, 127);
   --primary-color-faded: rgba(188, 222, 212, 0.38);
   --primary-gray: rgba(77, 77, 77, 1);
   --primary-gray-faded: rgba(77, 77, 77, 0.57);
   --primary-gray-very-faded: rgba(77, 77, 77, 0.07);
   --background-gray: #ECF1EF;
   --primary-color-text: #ffffff;
   --secondary-color: #F4AD3D;
   --secondary-color-faded: rgba(244, 173, 61, 0.09);
   --input-background: rgba(253, 241, 219, 0.54);
   --custom-red: rgba(221, 57, 57, 1);
   
   /* === Táblázat színek === */
   --table-header-background-color: white;
   --table-header-color: var(--primary-gray);
   --table-hover-row-color: rgba(253, 241, 219, 0.8);
   --table-odd-row-color: rgba(253, 241, 219, 0.54);
   --table-even-row-color: rgba(253, 241, 219, 0.26);
   
   /* === Alias változók kompatibilitáshoz === */
   --color-primary: var(--primary-color);
   --color-secondary: var(--secondary-color);
   --color-accent: var(--primary-color);
   --color-success: #1ab775;
   --color-warning: var(--secondary-color);
   --color-error: var(--custom-red);
   
   --color-text-primary: var(--primary-gray);
   --color-text-secondary: var(--primary-gray-faded);
   --color-text-muted: var(--primary-gray-faded);
   
   --color-bg-primary: #ffffff;
   --color-bg-secondary: var(--background-gray);
   --color-bg-card: #ffffff;
   --color-bg-light: var(--background-gray);
   
   --color-border: rgba(27, 100, 127, 0.2);
   --color-border-hover: var(--primary-color);
   
   --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   
   --border-radius-sm: 6px;
   --border-radius-md: 10px;
   --border-radius-lg: 12px;
   
   --shadow-sm: 0 1px 3px rgba(27, 100, 127, 0.08);
   --shadow-md: 0 4px 12px rgba(27, 100, 127, 0.1);
   --shadow-lg: 0 8px 24px rgba(27, 100, 127, 0.12);
   
   --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-family);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-filled,
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--primary-color-text);
}

.btn-primary:hover {
    background: rgb(20, 80, 102);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    width: 100%;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-outline:hover {
    border-color: var(--color-text-primary);
    background: var(--color-bg-light);
}

.btn-filled {
    background: var(--primary-color);
    color: var(--primary-color-text);
    width: 100%;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-filled:hover {
    background: rgb(20, 80, 102);
    transform: translateY(-1px);
}

.btn-link {
    background: transparent;
    color: var(--color-text-secondary);
    padding: 8px 16px;
}

.btn-link:hover {
    color: var(--color-text-primary);
}

.plan-description {
    min-height: 220px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-color);
    color: var(--primary-color-text);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary-large:hover {
    background: rgb(20, 80, 102);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: 64px 0 48px;
    text-align: center;
    background: var(--color-bg-primary);
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--color-primary);
}

.hero-products {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.products-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin: 0;
}

.products-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 8px;
}

.product-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.product-icon:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-1px);
}

.icon-box {
    width: 32px;
    height: 32px;   
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.icon-box.purple {
    background: #e9d5ff;
    color: #9333ea;
}

.icon-box.orange {
    background: #fed7aa;
    color: #ea580c;
}

.icon-box.green {
    background: #d1fae5;
    color: #059669;
}

.icon-box.blue {
    background: var(--primary-color-faded);
    color: var(--primary-color);
}

.icon-box.pink {
    background: #fce7f3;
    color: #db2777;
}

.icon-box.gray {
    background: #f3f4f6;
    color: #6b7280;
}

.icon-box.yellow {
    background: #fef3c7;
    color: #d97706;
}

.icon-box.red {
    background: #fee2e2;
    color: #dc2626;
}

.icon-box.cyan {
    background: var(--primary-color-faded);
    color: var(--primary-color);
}

/* ====================================
   FEATURES LEGEND (Funkciók színkód)
==================================== */

.features-legend {
    padding: 40px 0;
    background: var(--background-gray);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.legend-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.legend-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legend-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.legend-item .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

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

@media (max-width: 500px) {
    .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .products-icons {
        grid-template-columns: 1fr;
    }
    
    .legend-item {
        padding: 10px 14px;
    }
}

.icon-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
    white-space: nowrap;
}


.currency-selector {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
}

.currency-selector label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.currency-selector select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    font-family: var(--font-family);
    outline: none;
}

/* Pricing Section */
/* Pricing Section Header */
.pricing-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, var(--secondary-color-faded) 0%, #fff 100%);
    border-radius: var(--border-radius-lg);
    margin: 0 auto 40px;
    max-width: 900px;
}

.pricing-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Features Legend Inline */
.features-legend-inline {
    background: var(--background-gray);
    border-radius: var(--border-radius-md);
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid var(--color-border);
}

.legend-title-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-legend-inline .legend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.features-legend-inline .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.features-legend-inline .legend-item:hover {
    border-color: var(--color-primary);
}

.features-legend-inline .legend-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
}

@media (max-width: 900px) {
    .features-legend-inline .legend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-main-title {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .features-legend-inline .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-main-title {
        font-size: 26px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
}

.pricing-section {
    padding: 48px 0 80px;
    background: var(--color-bg-primary);
    overflow: hidden; /* Fontos a fade effekthez */
}

/* ====================================
   PRICING SLIDER - TELJES ÚJRATERVEZÉS
   
   Struktúra:
   - pricing-slider-container: Pozicionálási kontextus (full-width)
   - pricing-slider-wrapper: Overflow + fade mask
   - pricing-grid: Flexbox slider
   - pricing-card: Kártya elemek
   - slider-nav: Nyilak (1280px-en KÍVÜL)
==================================== */

.pricing-slider-container {
    position: relative;
    /* Kilógás a .container-ből a nyilak számára */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

.pricing-slider-wrapper {
    position: relative;
    max-width: 1280px; /* Szélesebb, hogy az 5. kártya belógjon */
    margin: 0 auto;
    overflow: hidden;
}

/* Fade/Homály effekt a bal szélen - 1. kártya "homályba vész" */
.pricing-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 180px;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.85) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Fade/Homály effekt a jobb szélen - 5. kártya "homályba vész" */
.pricing-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 180px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.85) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Fade eltűnése a széleknél */
.pricing-slider-wrapper.no-fade-left::before {
    opacity: 0;
}

.pricing-slider-wrapper.no-fade-right::after {
    opacity: 0;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory; - KIKAPCSOLVA, mert blokkolja a középre igazítást */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 24px 20px 24px;
    margin: 0;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-grid::-webkit-scrollbar {
    display: none;
}

/* Spacer az utolsó kártya után - elég hely a fade-nek */
.pricing-grid::after {
    content: '';
    flex-shrink: 0;
    width: 24px;
}

/* ====================================
   PRICING CARD - Eredeti méret
==================================== */
.pricing-card {
    flex: 0 0 280px;
    min-width: 260px;
    max-width: 300px;
    /* scroll-snap-align: start; - KIKAPCSOLVA */
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition), transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

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

/* ====================================
   FADED CARDS - Ingyenes (bal) és Örökös (jobb)
==================================== */
#ingyenes,
#orokos {
    opacity: 0.5;
    filter: grayscale(30%);
}

#ingyenes:hover,
#orokos:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ====================================
   SLIDER NAVIGATION - 1280px-en KÍVÜL
==================================== */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-nav:hover svg {
    stroke: #ffffff;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-primary);
    stroke-width: 2;
    fill: none;
    transition: var(--transition);
}

/* Nyilak pozíciója: a wrapper szélétől 16px-re kívül */
.slider-nav.prev {
    left: max(calc(50% - 704px), 8px); /* 640 + 64 = 704 */
}

.slider-nav.next {
    right: max(calc(50% - 704px), 8px);
}

/* Disabled nyilak - halványabbak de kattinthatók */
.slider-nav.prev.disabled,
.slider-nav.next.disabled {
    opacity: 0.3;
    /* pointer-events: none; - ELTÁVOLÍTVA, hogy kattintható maradjon */
}

/* ====================================
   SCROLL HINT - "Görgess jobbra" jelző - ELREJTVE
==================================== */
.scroll-hint {
    display: none !important; /* Elrejtve */
    position: absolute;
    right: calc((100vw - 1280px) / 2 + 40px);
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(185, 130, 130, 0.9);
    color: #fff;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 1424px) {
    .scroll-hint {
        right: 140px;
    }
}

.scroll-hint.visible {
    opacity: 1;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

.scroll-hint svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ====================================
   PAGINATION DOTS - Mobil navigáció
==================================== */
.slider-pagination {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 24px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.pagination-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.pagination-dot:hover {
    background: var(--color-text-secondary);
}

/* ====================================
   SLIDE COUNTER (Mobile)
==================================== */
.slide-counter {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.slide-counter .current {
    font-weight: 600;
    color: var(--color-text-primary);
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    min-height: 480px;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.billing-toggle {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: var(--color-bg-secondary);
    padding: 3px;
    border-radius: var(--border-radius-sm);
    min-height: 34px;
}

.toggle-btn {
    flex: 1;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    color: var(--color-text-secondary);
}

.toggle-btn.active {
    background: var(--color-primary);
    color: #ffffff;
}

.billing-info {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-weight: 400;
    min-height: 34px;
}

.price-display {
    margin-top: 8px;
}

.price-free {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

/* Seat Types */
.seat-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seat-type {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
    min-height: 93px;
}

.seat-type:last-child {
    border-bottom: none;
}

.seat-types-info {
    font-size: 11px;
    color: var(--primary-gray-faded);
    text-align: center;
    margin: 12px 0 0 0;
    padding: 0;
    font-style: italic;
}

.seat-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seat-icons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.seat-icons .icon-box {
    width: 18px;
    height: 18px;
}

.seat-icons .icon-box svg {
    width: 12px;
    height: 12px;
}

.icon-badge {
    font-size: 11px;
    background: var(--color-bg-secondary);
    padding: 3px 5px;
    border-radius: 3px;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
}

.seat-info {
    flex: 1;
}

.seat-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.seat-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100px;
}

.price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.currency {
    font-size: 14px;
    color: var(--color-text-primary);
    font-weight: 600;
}

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

.card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-description h4,
.key-features h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.plan-description strong,
.key-features strong {
    font-weight: 600;
}

.feature-list,
.key-features ul {
    list-style: none;
    padding: 0;
    min-height: 140px;
}

.feature-list li,
.key-features li {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 14px;
}

.key-features li:before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--color-text-muted);
    font-weight: 700;
}

/* Seat Explanation Section */
.seat-explanation-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.seat-explanation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.seat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
}

.seat-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    line-height: 1.4;
}

.seat-features {
    list-style: none;
    padding: 0;
}

.seat-features li {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.seat-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.seat-description {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--color-bg-secondary);
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th.feature-col {
    width: 40%;
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

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

.comparison-table td.feature-name {
    font-weight: 500;
    color: var(--color-text-primary);
}

.comparison-table .check {
    color: var(--color-success);
    font-weight: 700;
    font-size: 16px;
}

.comparison-table .dash {
    color: var(--color-text-muted, #9ca3af);
    font-weight: 400;
    font-size: 16px;
}

.comparison-table .text-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.comparison-table .text-value-small {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.comparison-table .text-value.included {
    color: var(--color-success);
    font-weight: 600;
}

.comparison-table sup {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 10px;
}

.table-footnotes {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--color-bg-secondary, #f9fafb);
    border-radius: 8px;
}

.table-footnotes p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.table-footnotes p:last-child {
    margin-bottom: 0;
}

.table-footnotes sup {
    color: var(--color-primary);
    font-weight: 600;
    margin-right: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.faq-answer {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 0 80px;
    background: var(--color-bg-primary);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    padding: 12px 24px;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--color-bg-secondary);
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

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

/* Footer */
.footer {
    background: var(--color-bg-primary);
    padding: 60px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--primary-gray-faded);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom .footer-copyright {
    font-weight: 500;
    color: var(--primary-gray);
}

.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
    color: rgb(27, 100, 127) !important;
    text-decoration: underline !important;
    padding: 4px 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:active {
    color: rgb(20, 80, 102) !important;
    text-decoration: none !important;
}

.footer-links .separator {
    color: var(--primary-gray-faded);
    font-weight: 400;
}

.footer-credit {
    margin-top: 16px;
    font-size: 12px;
    color: var(--primary-gray-faded);
}

.footer-credit a,
.footer-credit a:link,
.footer-credit a:visited {
    color: rgb(27, 100, 127) !important;
    text-decoration: underline !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-credit a:hover,
.footer-credit a:active {
    color: rgb(20, 80, 102) !important;
    text-decoration: none !important;
}

/* ====================================
   RESPONSIVE DESIGN - SLIDER
==================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .pricing-slider-wrapper::before,
    .pricing-slider-wrapper::after {
        width: 80px;
    }
    
    .pricing-card {
        flex: 0 0 260px;
        min-width: 240px;
        max-width: 280px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-pagination {
        display: flex;
    }
    
    .seat-explanation-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    /* Mobile slider */
    .pricing-slider-wrapper::before,
    .pricing-slider-wrapper::after {
        display: none; /* Nincs fade mobilon */
    }
    
    .pricing-grid {
        padding: 10px 16px 20px 16px;
    }
    
    .pricing-grid::after {
        width: 16px;
    }
    
    .pricing-card {
        flex: 0 0 calc(100vw - 64px);
        min-width: 280px;
        max-width: 340px;
        /* scroll-snap-align: center; - KIKAPCSOLVA */
    }
    
    .slider-nav {
        display: none;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .slider-pagination {
        display: flex;
    }
    
    .slide-counter {
        display: flex;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .products-label {
        font-size: 13px;
    }
    
    .products-icons {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 4px;
    }
    
    .product-icon {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .icon-box {
        width: 18px;
        height: 18px;
    }
    
    .icon-box svg {
        width: 14px;
        height: 14px;
    }
    
    .icon-name {
        font-size: 11px;
    }
    
    .services-icons {
        gap: 8px;
    }
    
    .service-icon {
        min-width: 75px;
        padding: 10px 8px;
    }
    
    .service-icon .icon {
        font-size: 20px;
    }
    
    .icon-label {
        font-size: 10px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-primary,
    .btn-link {
        padding: 7px 12px;
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .seat-card {
        padding: 24px;
    }
}

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

.pricing-card,
.seat-card,
.faq-item {
    animation: fadeIn 0.5s ease-out;
}

/* ====================================
   SIMPLE PRICING (Plan-szintű árazás seat nélkül)
==================================== */

.simple-pricing {
    margin-top: 24px;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(26, 26, 26, 0.05) 100%);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(26, 26, 26, 0.08);
}

.simple-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.simple-pricing .price {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.simple-pricing .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.simple-pricing .period {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.simple-pricing .billing-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ====================================
   ÉRTÉKAJÁNLAT SECTION
==================================== */

.value-proposition-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fff 100%);
    border-top: 4px solid #f59e0b;
}

/* Értékajánlat fejléc */
.value-header {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.value-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.value-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.value-subtitle strong {
    color: var(--color-primary);
    font-weight: 600;
}

.highlight-amount {
    color: #059669 !important;
    font-size: 24px;
    font-weight: 700;
}

.value-note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Savings Calculation */
.savings-calculation {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.calculation-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-align: center;
}

.calculation-note {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 12px 24px;
    margin: 0 auto 24px;
    max-width: 700px;
    border-radius: 6px;
}

/* Salary Info Wrapper */
.salary-info-wrapper {
    margin-bottom: 32px;
    position: relative;
}

.salary-table-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.info-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn:hover {
    background: var(--primary-color-faded);
    color: rgb(20, 80, 102);
}

/* Salary Popup */
.salary-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    min-width: 550px;
    padding: 16px;
    margin-top: 8px;
}

.salary-popup.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.salary-popup-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 8px;
}

.salary-popup-header span {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.salary-popup-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.salary-popup-row span {
    font-size: 13px;
    color: var(--color-text-primary);
}

.salary-popup-row span:first-child {
    font-weight: 500;
}

.salary-popup-row span:last-child {
    font-weight: 600;
    color: #059669;
}

/* Calculation Table */
.calculation-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
}

.calculation-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.calculation-table thead tr:first-child th {
    background: #fef3c7;
    border-bottom: 2px solid #f59e0b;
}

.calculation-table thead tr:nth-child(2) th {
    background: var(--background-gray);
}

.calculation-table th {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-border);
}

.calculation-table th.col-activity {
    text-align: left;
    background: #fef3c7 !important;
    font-size: 14px;
    font-weight: 700;
}

.calculation-table th.col-group {
    font-size: 13px;
}

.calculation-table th.col-group.paper {
    background: #fef2f2 !important;
    color: #dc2626;
}

.calculation-table th.col-group.software {
    background: #ecfdf5 !important;
    color: #059669;
}

.calculation-table th.col-paper {
    background: #fef2f2 !important;
    color: #b91c1c;
    font-size: 11px;
}

.calculation-table th.col-software {
    background: #ecfdf5 !important;
    color: #047857;
    font-size: 11px;
}

.calculation-table td {
    padding: 10px 16px;
    font-size: 13px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

.calculation-table td.text-center {
    text-align: center;
}

.calculation-table td.indent {
    padding-left: 32px;
    color: var(--color-text-secondary);
}

.calculation-table .row-header td {
    background: var(--background-gray);
    font-weight: 600;
    color: var(--color-primary);
}

.calculation-table .row-subheader td {
    background: var(--background-gray);
    font-weight: 600;
    font-size: 12px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.calculation-table .row-data td {
    background: var(--background-gray);
}

.calculation-table td.amount-paper {
    text-align: right;
    font-weight: 600;
    color: #dc2626;
    background: #fef2f2;
}

.calculation-table td.amount-software {
    text-align: right;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
}

.calculation-table .row-total td {
    background: var(--primary-color) !important;
    color: var(--primary-color-text) !important;
    font-weight: 700;
    font-size: 14px;
}

.calculation-table .row-total td.total-paper {
    color: #fca5a5 !important;
    text-align: right;
    font-size: 16px;
}

.calculation-table .row-total td.total-software {
    color: #6ee7b7 !important;
    text-align: right;
    font-size: 16px;
}

/* Savings Result Card */
.savings-result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.savings-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
}

.savings-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.savings-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.savings-icon svg {
    width: 32px;
    height: 32px;
}

.savings-icon svg circle {
    stroke: white;
}

.savings-icon svg path {
    stroke: white;
}

.savings-label > span {
    font-size: 17px;
    color: #374151;
    line-height: 1.6;
}

.savings-label strong {
    color: #059669;
    font-weight: 700;
}

.savings-amounts {
    display: flex;
    gap: 24px;
}

.savings-monthly,
.savings-yearly {
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    min-width: 160px;
}

.savings-monthly {
    background: #f9fafb;
    border: 1px solid var(--color-border);
}

.savings-yearly {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.savings-monthly .amount {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #059669;
    line-height: 1.2;
    margin-bottom: 2px;
}

.savings-yearly .amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2px;
}

.savings-monthly .period {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-yearly .period {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Additional Benefits */
.additional-benefits {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--border-radius-md);
    padding: 24px 32px;
}

.additional-benefits h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 15px;
    color: var(--color-text-secondary);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 16px;
}

/* Value CTA */
.value-cta {
    text-align: center;
    padding: 48px 0;
    margin-top: 40px;
    border-top: 2px dashed var(--color-border);
}

.cta-headline {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.cta-subheadline {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Service Icons Row */
.service-icons-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-circle:hover {
    transform: scale(1.1);
}

.icon-circle.purple {
    background: #e9d5ff;
    color: #9333ea;
}

.icon-circle.orange {
    background: #fed7aa;
    color: #ea580c;
}

.icon-circle.green {
    background: #d1fae5;
    color: #059669;
}

.icon-circle.blue {
    background: var(--primary-color-faded);
    color: var(--primary-color);
}

.icon-circle.pink {
    background: #fce7f3;
    color: #db2777;
}

.icon-circle.gray {
    background: #f3f4f6;
    color: #6b7280;
}

.service-icon-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Features Grid Section */
.features-grid-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item.green .feature-dot {
    background: #10b981;
}

.feature-item.orange .feature-dot {
    background: #f97316;
}

.feature-item.blue .feature-dot {
    background: var(--primary-color);
}

.feature-item.gray .feature-dot {
    background: #9ca3af;
}

.feature-item.red .feature-dot {
    background: #ef4444;
}

.feature-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Responsive for Value Proposition */
@media (max-width: 1024px) {
    .savings-result-card {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        padding: 28px 24px;
    }
    
    .savings-label {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .savings-icon {
        width: 56px;
        height: 56px;
    }
    
    .savings-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .savings-amounts {
        justify-content: center;
        width: 100%;
    }
    
    .savings-monthly,
    .savings-yearly {
        flex: 1;
        min-width: 140px;
    }
    
    .features-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .value-title {
        font-size: 28px;
    }
    
    .value-subtitle {
        font-size: 16px;
    }
    
    .highlight-amount {
        font-size: 20px;
    }
    
    .savings-calculation {
        padding: 24px;
    }
    
    .salary-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 90vw;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .savings-result-card {
        padding: 24px 20px;
    }
    
    .savings-label > span {
        font-size: 15px;
    }
    
    .savings-amounts {
        flex-direction: column;
        gap: 12px;
    }
    
    .savings-monthly,
    .savings-yearly {
        text-align: center;
        min-width: auto;
        padding: 14px 20px;
    }
    
    .savings-monthly .amount {
        font-size: 22px;
    }
    
    .savings-yearly .amount {
        font-size: 26px;
    }
    
    .cta-headline {
        font-size: 24px;
    }
    
    .features-grid-section {
        grid-template-columns: 1fr;
    }
    
    .service-icons-row {
        gap: 12px;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
    }
}

/* ====================================
   PLAN CTA BUTTONS (Kisebb betűméret)
==================================== */

.btn-plan-cta {
    font-size: 12px !important;
    padding: 8px 14px !important;
    letter-spacing: 0.02em;
}

/* ====================================
   ÖRÖKÖS CSOMAG - ÁR NÉLKÜLI SEAT-EK
==================================== */

.seat-types-no-price .seat-type {
    justify-content: flex-start;
}

.seat-types-no-price .seat-left {
    flex: 1;
}

.seat-types-no-price .seat-name {
    font-weight: 500;
    color: var(--color-text-primary);
}