/* ========================================
   CARD LIST STYLING
   ======================================== */
.card-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.card-list li {
    padding: 0.5rem 0;
    color: var(--light-gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ========================================
   PORTFOLIO HIGHLIGHTS
   ======================================== */
.portfolio-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.highlight-item:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--silver-light);
    flex-shrink: 0;
}

.highlight-item div {
    flex: 1;
}

.highlight-item strong {
    display: block;
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin: 0;
    color: var(--light-gray-color);
    font-size: 0.95rem;
}

/* ========================================
   PRICING HIGHLIGHTS
   ======================================== */
.pricing-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-icon i {
    font-size: 1.8rem;
    color: var(--black-color);
}

.pricing-info {
    flex: 1;
}

.pricing-info h4 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.pricing-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver-light);
    margin: 0.5rem 0;
}

.pricing-info span {
    color: var(--light-gray-color);
    font-size: 0.9rem;
}

.pricing-note {
    background: rgba(201, 209, 217, 0.05);
    border-left: 4px solid var(--silver-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1rem;
}

.pricing-note i {
    color: var(--silver-light);
    margin-right: 0.5rem;
}

/* Pricing Features - Árazás funkciók */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-features .feature-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-neon);
    transform: translateX(5px);
    box-shadow: 0 0 10px var(--accent-neon-glow);
}

.pricing-features .feature-item i {
    color: var(--silver-light);
    font-size: 1.3rem;
    flex-shrink: 0;
    background: rgba(201, 209, 217, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-features .feature-item:hover i {
    background: linear-gradient(135deg, var(--accent-neon-light), var(--accent-neon));
    color: var(--black-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-neon-glow);
}

.pricing-features .feature-item span {
    color: var(--light-gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features .feature-item span strong {
    color: var(--white-color);
    font-weight: 600;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color-lighten) 0%, var(--black-color-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 209, 217, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 148, 158, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    font-size: 1.2rem;
    color: var(--light-gray-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    /* Glassmorphism effekt */
    background: rgba(201, 209, 217, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 209, 217, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 209, 217, 0.4);
    background: rgba(201, 209, 217, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 209, 217, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3), 0 0 20px var(--accent-neon-light);
    background: linear-gradient(135deg, var(--silver-light), var(--accent-neon-light));
}

.stat-icon i {
    font-size: 2rem;
    color: var(--black-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver-light), var(--accent-neon-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    line-height: 1;
    filter: drop-shadow(0 0 10px var(--accent-neon-light));
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    margin-left: 0.25rem;
}

/* Százalékos stat kártya - ne jelenítse meg a + jelet */
.stat-card-percentage .stat-number::after {
    content: '';
    display: none;
}

/* Napos stat kártya - ne jelenítse meg a + jelet */
.stat-card-days .stat-number::after {
    content: '';
    display: none;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: var(--light-gray-color);
    position: relative;
    z-index: 2;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .portfolio-highlights,
    .pricing-highlights {
        gap: 1rem;
    }
    
    .highlight-item,
    .pricing-item {
        padding: 1rem;
    }
    
    .pricing-features {
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .pricing-features .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .pricing-features .feature-item i {
        font-size: 1.1rem;
    }
    
    .pricing-features .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   TEAM MEMBER SKILLS
   ======================================== */
.member-role {
    font-weight: 600;
    color: var(--silver-light);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.member-desc {
    color: var(--light-gray-color);
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 209, 217, 0.1);
    border: 1px solid rgba(201, 209, 217, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--light-gray-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.skill-badge:hover {
    background: rgba(201, 209, 217, 0.2);
    border-color: var(--silver-light);
    transform: translateY(-2px);
}

.skill-badge i {
    color: var(--silver-light);
}

/* ========================================
   FOUNDER STORY & TIMELINE
   ======================================== */
.founder-intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border-left: 4px solid var(--silver-light);
    border-radius: 8px;
}

.founder-intro i {
    color: var(--silver-light);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.founder-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
}

.founder-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--silver-light), var(--silver-medium));
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(201, 209, 217, 0.3);
}

.timeline-marker i {
    font-size: 1.5rem;
    color: var(--black-color);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--light-gray-color);
    margin: 0;
}

.founder-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(201, 209, 217, 0.05);
    border-left: 4px solid var(--silver-light);
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--light-gray-color);
}

.founder-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--silver-light);
    font-weight: 600;
}

/* ========================================
   SUPPORT SECTION - MIT TÁMOGATUNK
   ======================================== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-item:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.support-item:hover .support-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(22, 163, 74, 0.9));
}

.support-item:hover h4 {
    color: rgba(34, 197, 94, 1);
}

.support-item:hover p {
    color: rgba(34, 197, 94, 0.9);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-item:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.support-icon i {
    font-size: 2rem;
    color: var(--black-color);
}

.support-item h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.support-item p {
    color: var(--light-gray-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.support-note {
    background: rgba(201, 209, 217, 0.05);
    border-left: 4px solid var(--silver-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1rem;
}

.support-note i {
    color: var(--silver-light);
    margin-right: 0.5rem;
}

/* Responsive Support */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .support-item {
        padding: 1.5rem 1rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .support-icon i {
        font-size: 1.5rem;
    }
    
    .support-item h4 {
        font-size: 1.1rem;
    }
    
    .support-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.25rem 1rem;
    }
    
    .value-card h4 {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--black-color);
}

.value-card h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.value-card p {
    color: var(--light-gray-color);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   MISSION & GOALS
   ======================================== */
.mission-goals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateX(10px);
}

.goal-item i {
    font-size: 2rem;
    color: var(--silver-light);
    flex-shrink: 0;
}

.goal-item div {
    flex: 1;
}

.goal-item h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.goal-item p {
    color: var(--light-gray-color);
    margin: 0;
}

/* ========================================
   EXPERTISE & SKILL BARS
   ======================================== */
.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 1.8rem;
    color: var(--black-color);
}

.expertise-content {
    flex: 1;
}

.expertise-content h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.expertise-content p {
    color: var(--light-gray-color);
    margin: 0 0 1rem 0;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(201, 209, 217, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 10px;
    transition: width 1s ease-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Expertise */
@media (max-width: 768px) {
    .founder-timeline {
        padding-left: 1rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker i {
        font-size: 1.2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-card h4 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
    
    .expertise-item {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-icon {
        margin: 0 auto;
    }
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color) 0%, var(--black-color-light) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 209, 217, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 148, 158, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-header p {
    font-size: 1.2rem;
    color: var(--light-gray-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trust-item {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.trust-icon i {
    font-size: 2rem;
    color: var(--black-color);
}

.trust-item h4 {
    font-size: 1.3rem;
    color: var(--white-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.trust-item p {
    color: var(--light-gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Responsive Trust */
@media (max-width: 768px) {
    .trust-section {
        padding: 4rem 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 2rem 1.5rem;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICES COMPARISON CARDS
   ======================================== */
.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
}

.services-overview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-overview-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-overview-header p {
    font-size: 1.2rem;
    color: var(--light-gray-color);
}

.services-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(201, 209, 217, 0.05);
    border: 2px solid rgba(201, 209, 217, 0.1);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    border-color: var(--silver-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.comparison-card:hover::before {
    opacity: 1;
}

.comparison-card.featured {
    border-color: var(--silver-light);
    background: rgba(201, 209, 217, 0.08);
    transform: scale(1.05);
}

.comparison-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.popular-badge i {
    font-size: 1rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.comparison-header h3 {
    font-size: 1.8rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.comparison-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.comparison-subtitle {
    color: var(--light-gray-color);
    font-size: 1rem;
    margin: 0;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.comparison-features li {
    padding: 0.75rem 0;
    color: var(--light-gray-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.comparison-features li i {
    color: var(--silver-light);
    font-size: 1.2rem;
}

/* ========================================
   PACKAGE HIGHLIGHTS & BADGES
   ======================================== */
.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 209, 217, 0.1);
    border: 1px solid rgba(201, 209, 217, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: rgba(201, 209, 217, 0.15);
    border-color: var(--silver-light);
    transform: translateY(-2px);
}

.highlight-badge i {
    color: var(--silver-light);
    font-size: 1.2rem;
}

.highlight-badge span {
    color: var(--light-gray-color);
    font-size: 0.95rem;
}

.highlight-badge.best-value {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.highlight-badge.best-value i {
    color: #ffd700;
}

.highlight-badge.premium {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.highlight-badge.premium i {
    color: #8a2be2;
}

/* ========================================
   FEATURE CHECKLIST
   ======================================== */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-checklist li {
    padding: 0.75rem 0;
    color: var(--light-gray-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-checklist li i {
    color: #4ade80;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ========================================
   PRICE BOX
   ======================================== */
.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(201, 209, 217, 0.1);
    border: 2px solid rgba(201, 209, 217, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.price-box:hover {
    background: rgba(201, 209, 217, 0.15);
    border-color: var(--silver-light);
    transform: scale(1.05);
}

.price-label {
    font-size: 0.9rem;
    color: var(--light-gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.85rem;
    color: var(--silver-medium);
    margin-top: 0.5rem;
}

.price-box.popular {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.price-box.premium {
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
}

.price-box.custom {
    border-color: var(--silver-light);
}

/* ========================================
   CUSTOM DEVELOPMENT PROCESS
   ======================================== */
.custom-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step-mini {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step-mini:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-mini div {
    flex: 1;
}

.process-step-mini h5 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.process-step-mini p {
    color: var(--light-gray-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: scale(1);
    }
    
    .comparison-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-highlights {
        justify-content: center;
    }
    
    .price-box {
        width: 100%;
        max-width: 300px;
    }
    
    .custom-process {
        gap: 1rem;
    }
}

/* ========================================
   PRINT CATEGORIES
   ======================================== */
.print-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-badge {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateY(-5px);
}

.category-badge i {
    font-size: 2.5rem;
    color: var(--silver-light);
    display: block;
    margin-bottom: 1rem;
}

.category-badge span {
    display: block;
    color: var(--light-gray-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.category-badge strong {
    display: block;
    font-size: 1.4rem;
    color: var(--white-color);
    margin-top: 0.5rem;
}

/* ========================================
   SOCIAL MEDIA PACKAGES
   ======================================== */
.social-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 992px) {
    .social-packages {
        grid-template-columns: 1fr;
    }
}

.social-package-card {
    background: rgba(201, 209, 217, 0.05);
    border: 2px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.social-package-card:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-package-card h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver-light);
    margin: 0.75rem 0;
}

.social-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.social-package-card ul li {
    padding: 0.4rem 0;
    color: var(--light-gray-color);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.social-package-card ul li::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* ========================================
   CUSTOM DESIGN OPTIONS
   ======================================== */
.custom-design-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.design-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.design-option:hover {
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
    transform: translateX(10px);
}

.design-option i {
    font-size: 2.5rem;
    color: var(--silver-light);
    flex-shrink: 0;
}

.design-option div {
    flex: 1;
}

.design-option h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.design-option p {
    color: var(--light-gray-color);
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.option-price {
    display: inline-block;
    background: rgba(201, 209, 217, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--silver-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.custom-note {
    background: rgba(201, 209, 217, 0.05);
    border-left: 4px solid var(--silver-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1rem;
}

.custom-note i {
    color: var(--silver-light);
    margin-right: 0.5rem;
}

/* Responsive Design Services */
@media (max-width: 768px) {
    .print-categories {
        grid-template-columns: 1fr;
    }
    
    .social-packages {
        grid-template-columns: 1fr;
    }
    
    .design-option {
        flex-direction: column;
        text-align: center;
    }
    
    .design-option i {
        margin: 0 auto 1rem;
    }
}

/* ========================================
   QUICK CONTACT SECTION
   ======================================== */
.quick-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 209, 217, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 148, 158, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.quick-contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-contact-header p {
    font-size: 1.2rem;
    color: var(--light-gray-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.contact-method {
    background: rgba(201, 209, 217, 0.05);
    border: 2px solid rgba(201, 209, 217, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--black-color);
}

.contact-method h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-detail {
    color: var(--light-gray-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.contact-response {
    display: inline-block;
    background: rgba(201, 209, 217, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--silver-light);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.info-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.info-card.highlight-card {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
}

.info-card.highlight-card:hover {
    border-color: #22c55e;
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.2);
}

/* Responsive Quick Contact */
@media (max-width: 768px) {
    .quick-contact-section {
        padding: 4rem 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 2.5rem 2rem;
    }
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
    padding: 1rem 0;
    background: transparent;
    position: relative;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver-medium), transparent);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--silver-light);
    border-radius: 2px;
    animation: expandLine 3s ease-in-out infinite;
}

/* Divider animációk */
@keyframes expandLine {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 60px;
    }
}

/* Divider reszponzív design */
@media (max-width: 768px) {
    .section-divider {
        padding: 0.75rem 0;
    }
    
    .divider-line {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        padding: 0.5rem 0;
    }
    
    .divider-line {
        width: 100px;
    }
}

/* ========================================
   TEAM SECTION - CSAPAT TAGOK
   ======================================== */
/* ========================================
   TESTIMONIALS - MODERN SLIDER
   ======================================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color) 0%, var(--black-color-lighten) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 209, 217, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 148, 158, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    color: var(--light-gray-color);
    font-size: 1.1rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    --card-width: min(500px, 85vw);
    outline: none;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonials-track {
    position: relative;
    height: auto;
    min-height: 520px;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
    isolation: isolate;
}

.testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--card-width);
    max-width: calc(100% - 2rem);
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(0.85);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                z-index 0s linear 0.25s;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    will-change: transform, opacity;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.2), rgba(139, 148, 158, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.08), rgba(139, 148, 158, 0.04));
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card.is-active {
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(201, 209, 217, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 209, 217, 0.1);
    pointer-events: auto;
    opacity: 1;
    z-index: 3;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(33, 38, 45, 0.9) 100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                z-index 0s linear;
}

.testimonial-card.is-left,
.testimonial-card.is-right {
    pointer-events: none;
}

.testimonial-card.is-active::before {
    opacity: 1;
}

.testimonial-card.is-left {
    transform: translate(calc(-50% - min(180px, 25vw)), -50%) scale(0.75);
    opacity: 0.6;
    z-index: 2;
}

.testimonial-card.is-right {
    transform: translate(calc(-50% + min(180px, 25vw)), -50%) scale(0.75);
    opacity: 0.6;
    z-index: 2;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    box-shadow: 0 10px 30px rgba(201, 209, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-role {
    color: var(--silver-medium);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffd700;
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
}

.testimonial-rating i {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-rating span {
    color: var(--white-color);
    font-weight: 700;
    margin-left: 0.5rem;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--light-gray-color);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(201, 209, 217, 0.2);
    position: absolute;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text::before {
    top: -0.5rem;
    left: -0.5rem;
}

.testimonial-text::after {
    bottom: -1.5rem;
    right: -0.5rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.testimonials-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(201, 209, 217, 0.3);
    background: rgba(201, 209, 217, 0.1);
    color: var(--silver-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
    z-index: 101;
    border: none;
}

.testimonials-nav button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.testimonials-nav button i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.testimonials-nav button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 209, 217, 0.3);
    border-color: var(--silver-light);
}

.testimonials-nav button:hover::before {
    opacity: 1;
}

.testimonials-nav button:hover i {
    color: var(--black-color);
}

.testimonials-nav button:active {
    transform: translateY(-1px) scale(1.05);
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 209, 217, 0.2);
    border: 2px solid rgba(201, 209, 217, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    pointer-events: auto !important;
    z-index: 101;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(201, 209, 217, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-dot:hover::before {
    opacity: 1;
}

.testimonial-dot.is-active {
    background: var(--silver-light);
    border-color: var(--silver-light);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(229, 231, 235, 0.5);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
        overflow: hidden;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-slider {
        padding: 0 0.5rem;
    }
    
    .testimonials-track {
        min-height: 480px;
        padding: 2.5rem 0;
        overflow: hidden;
    }
    
    .testimonials-slider {
        --card-width: min(90vw, 450px);
    }
    
    .testimonial-card {
        padding: 2rem;
        max-width: calc(100% - 1rem);
    }
    
    .testimonial-card.is-left {
        transform: translate(calc(-50% - min(100px, 20vw)), -50%) scale(0.7);
    }
    
    .testimonial-card.is-right {
        transform: translate(calc(-50% + min(100px, 20vw)), -50%) scale(0.7);
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-name {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .testimonials-slider {
        max-width: 100%;
        --card-width: min(92vw, 400px);
        overflow: hidden;
        padding: 0 0.5rem;
    }
    
    .testimonials-track {
        min-height: 450px;
        padding: 2rem 0;
        overflow: hidden;
    }
    
    .testimonial-card {
        padding: 1.75rem;
        max-width: calc(100% - 1rem);
    }
    
    .testimonial-card.is-left {
        transform: translate(calc(-50% - min(80px, 18vw)), -50%) scale(0.65);
        opacity: 0.4;
    }
    
    .testimonial-card.is-right {
        transform: translate(calc(-50% + min(80px, 18vw)), -50%) scale(0.65);
        opacity: 0.4;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .testimonials-nav {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testimonials-nav button {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 209, 217, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 148, 158, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.team-section .text-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-section .text-section-text {
    margin-bottom: 4rem;
    max-width: 600px;
}

.team-section .text-section-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.team-section .text-section-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 2px;
}

.team-section .text-section-text p {
    font-size: 1.1rem;
    color: var(--light-gray-color);
    line-height: 1.7;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(201, 209, 217, 0.2);
    transition: all 0.3s ease;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team-member:hover .member-photo::before {
    opacity: 0.3;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-info p {
    font-size: 1rem;
    color: var(--silver-medium);
    font-weight: 500;
}

/* Team section reszponzív design */
@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-section .text-section-text {
        margin-bottom: 3rem;
    }
    
    .team-members {
        gap: 3rem;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info p {
        font-size: 0.9rem;
    }
    
    .member-skills {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-members {
        gap: 2rem;
        flex-direction: column;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-info p {
        font-size: 0.85rem;
    }
    
    .member-skills {
        justify-content: center;
    }
}

/* ========================================
   TEXT SECTIONS - COMPONENTS.CSS
   Különböző stílusú text szekciók
   ======================================== */

/* ========================================
   TEXT SECTIONS - ALAPSTÍLUSOK
   ======================================== */
.text-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    contain: layout style;
    will-change: auto;
}

.text-section:nth-child(even) {
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
}

.text-section:nth-child(odd) {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--black-color-lighten) 100%);
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 209, 217, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 148, 158, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.text-section-content {
    position: relative;
    z-index: 2;
}

/* ========================================
   TEXT SECTION - BAL OLDALI KÉP + JOBB OLDALI SZÖVEG
   ======================================== */
.text-section-left .text-section-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.text-section-left .text-section-image {
    position: relative;
}

.text-section-left .text-section-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}

.text-section-left .text-section-image img:hover {
    transform: scale(1.05) rotate(-2deg) translateZ(0);
}

.text-section-left .text-section-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-section-left .text-section-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 2px;
}

.text-section-left .text-section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-gray-color);
}

/* Features lista */
.text-section-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--silver-light);
    font-size: 1.2rem;
    background: rgba(201, 209, 217, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item:hover i {
    background: linear-gradient(135deg, var(--accent-neon-light), var(--accent-neon));
    color: var(--black-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-neon-glow);
}

.feature-item span {
    font-weight: 500;
    color: var(--light-gray-color);
}

/* ========================================
   TEXT SECTION - JOBB OLDALI KÉP + BAL OLDALI SZÖVEG
   ======================================== */
.text-section-right .text-section-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-section-right .text-section-image {
    position: relative;
    order: 2;
}

.text-section-right .text-section-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    clip-path: polygon(30px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}

.text-section-right .text-section-image img:hover {
    transform: scale(1.05) rotate(2deg) translateZ(0);
}

.text-section-right .text-section-text {
    order: 1;
}

.text-section-right .text-section-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-section-right .text-section-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 2px;
}

.text-section-right .text-section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-gray-color);
}

/* Stats lista */
.text-section-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(201, 209, 217, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(201, 209, 217, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(201, 209, 217, 0.1);
    border-color: var(--silver-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}


/* ========================================
   TEXT SECTION - KÁRTYA STÍLUSÚ SZEKCIÓ
   ======================================== */
.text-section-cards .text-section-content {
    text-align: center;
}

.text-section-cards .text-section-text {
    margin-bottom: 4rem;
}

.text-section-cards .text-section-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-section-cards .text-section-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium), var(--silver-light));
    border-radius: 2px;
}

.text-section-cards .text-section-text p {
    font-size: 1.2rem;
    color: var(--light-gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card - Egységesített szolgáltatás kártyák */
.service-card {
    background: rgba(201, 209, 217, 0.05);
    border: 2px solid rgba(201, 209, 217, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
}

/* Service Card Badge - Népszerű badge */
.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--black-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.service-card-badge i {
    font-size: 0.9rem;
    color: var(--black-color);
}

.service-card:hover .service-card-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.12), rgba(139, 148, 158, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 209, 217, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.04);
    border-color: var(--silver-light);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(201, 209, 217, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.25);
}

.service-card:hover .card-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 18px 40px rgba(201, 209, 217, 0.5), 0 0 30px var(--accent-neon-glow);
    background: linear-gradient(135deg, var(--accent-neon-light), var(--accent-neon));
}

.service-card .card-icon i {
    font-size: 2.8rem;
    color: var(--black-color);
    transition: all 0.4s ease;
}

.service-card:hover .card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-neon-glow));
}

.service-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-card:hover h3 {
    transform: translateY(-3px);
}

.service-card .card-description {
    color: var(--light-gray-color);
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    min-height: 4.5em;
    padding: 0 0.5rem;
}

.service-card .card-description strong {
    color: var(--silver-light);
    font-weight: 600;
}

/* Card List - Frissített stílus ikonokkal */
.service-card .card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card .card-list li {
    padding: 0.75rem 0.5rem;
    color: var(--light-gray-color);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    background: transparent;
}

.service-card .card-list li:hover {
    background: rgba(201, 209, 217, 0.05);
    padding-left: 0.75rem;
}

.service-card .card-list li::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    transition: width 0.3s ease;
}

.service-card:hover .card-list li {
    color: var(--white-color);
}

.service-card:hover .card-list li::before {
    width: 4px;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-neon-dark));
    box-shadow: 0 0 5px var(--accent-neon-glow);
}

.service-card .card-list li i {
    color: var(--silver-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(201, 209, 217, 0.2));
}

.service-card:hover .card-list li i {
    color: var(--accent-neon);
    transform: scale(1.25);
    filter: drop-shadow(0 4px 8px var(--accent-neon-glow));
}

/* Card Button - Frissített gomb stílus */
.service-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    margin-top: auto;
    z-index: 2;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(201, 209, 217, 0.2);
    cursor: pointer;
    pointer-events: auto;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.service-card .btn:hover::before {
    left: 100%;
}

/* Service card gombok most a function.css-ben vannak neon színnel */
.service-card .btn-primary {
    /* Neon szín a function.css-ben van definiálva */
}

.service-card .btn-primary i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.service-card .btn-primary:hover i {
    transform: translateX(5px);
}

/* Általános card stílusok (visszamenőleges kompatibilitás) */
.card {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card:not(.service-card)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:not(.service-card):hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card:not(.service-card):hover::before {
    opacity: 1;
}

.card:not(.service-card) .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:not(.service-card):hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.card:not(.service-card) .card-icon i {
    font-size: 2rem;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.card:not(.service-card) h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.card:not(.service-card) p {
    color: var(--light-gray-color);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========================================
   RESPONSIVE DESIGN - TEXT SECTIONS
   ======================================== */
@media (max-width: 1200px) {
    .main-container {
        padding: 0 1.5rem;
    }
    
    .text-section-left .text-section-content,
    .text-section-right .text-section-content {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .text-section {
        padding: 4rem 0;
    }
    
    .text-section-left .text-section-content,
    .text-section-right .text-section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .text-section-right .text-section-image {
        order: 1;
    }
    
    .text-section-right .text-section-text {
        order: 2;
    }
    
    .text-section-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .text-section {
        padding: 3rem 0;
    }
    
    .text-section-left .text-section-content,
    .text-section-right .text-section-content {
        gap: 2rem;
    }
    
    .text-section-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 1rem;
    }
    
    .text-section {
        padding: 2rem 0;
    }
    
    .text-section-left .text-section-text h2,
    .text-section-right .text-section-text h2,
    .text-section-cards .text-section-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .text-section-left .text-section-text p,
    .text-section-right .text-section-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .text-section-cards .text-section-text p {
        font-size: 1.1rem;
    }
    
    .text-section-features,
    .text-section-stats {
        margin: 1.5rem 0;
    }
    
    .feature-item,
    .stat-item {
        padding: 0.5rem 0;
    }
    
    .card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .text-section-center .text-section-image img {
        width: 120px;
    }
    
    .text-section-left .text-section-image img,
    .text-section-right .text-section-image img {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Extra kis képernyők (iPhone SE, stb.) */
@media (max-width: 360px) {
    .main-container {
        padding: 0 0.75rem;
    }
    
    .text-section {
        padding: 1.5rem 0;
    }
    
    .text-section-left .text-section-text h2,
    .text-section-right .text-section-text h2,
    .text-section-cards .text-section-text h2 {
        font-size: 1.6rem;
    }
    
    .text-section-left .text-section-text p,
    .text-section-right .text-section-text p {
        font-size: 0.95rem;
    }
    
    .card {
        padding: 1.25rem 0.75rem;
    }
    
    .text-section-left .text-section-image img,
    .text-section-right .text-section-image img {
        max-width: 250px;
    }
    
}

/* ========================================
   UNIVERZÁLIS GOMB STÍLUSOK
   ======================================== */
.text-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-top: 0;
}

.text-section .button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.text-section .button-group .btn {
    margin-top: 0;
}

/* ========================================
   CARDS SECTION - KÁRTYÁS SZEKCIÓ
   ======================================== */
.text-section-cards {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
}

.text-section-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 209, 217, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 148, 158, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.text-section-cards .text-section-content {
    position: relative;
    z-index: 2;
}

.text-section-cards .text-section-text {
    text-align: center;
    margin-bottom: 4rem;
}

.text-section-cards .text-section-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-section-cards .text-section-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 3px;
}

.text-section-cards .text-section-text p {
    font-size: 1.3rem;
    color: var(--light-gray-color);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
}

/* Kattintható portfólió kártyák */
.portfolio-card {
    cursor: pointer !important;
    user-select: none;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.portfolio-card:hover {
    transform: translateY(-10px) translateZ(0);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-card::before {
    pointer-events: none !important;
    z-index: 0;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none !important;
    z-index: 1;
}

/* Portfolio kártyák esetén a ::before ne blokkolja */
.portfolio-card::before {
    pointer-events: none !important;
    z-index: 0;
}

/* Biztosítjuk, hogy a gombok mindig működjenek */
.card a.btn,
.card .btn {
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

/* Portfolio kártyák hover effektje már a .portfolio-card:hover-ben van */
.card:not(.portfolio-card):hover {
    transform: translateY(-10px) translateZ(0);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card:hover::before {
    opacity: 1;
    pointer-events: none !important;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: var(--black-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
    text-align: center;
}

.card .card-type {
    font-size: 0.9rem;
    color: var(--silver-medium);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Portfolio kártyák képei - fix magasság, hogy mindig egyvonalban legyenek */
.card .card-image {
    width: 100%;
    height: 200px;
    margin: 0 0 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

/* Részletek lista - 3 pontba szedve */
.card .card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card .card-details .detail-item {
    color: var(--light-gray-color);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 209, 217, 0.1);
}

.card .card-details .detail-item:last-child {
    border-bottom: none;
}

/* Megjegyzés középen */
.card .card-note {
    text-align: center;
    color: var(--light-gray-color);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 4rem;
    pointer-events: none;
}

.lightbox-image {
    max-width: 90vw;
    max-height: calc(90vh - 4rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
    pointer-events: auto;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(13, 17, 23, 0.85);
    border: 2px solid rgba(201, 209, 217, 0.5);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10003;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: rgba(201, 209, 217, 0.3);
    transform: scale(1.1);
}

.lightbox-close:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .lightbox-content {
        padding: 1rem;
        padding-top: 3rem;
    }
    
    .lightbox-image {
        max-height: calc(90vh - 3rem);
    }
    
    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

.card-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.card-features .feature-item i {
    color: var(--silver-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.card-features .feature-item span {
    color: var(--light-gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-price {
    position: relative;
    z-index: 2;
}

.card-price .price-amount {
    display: inline-block;
    background: rgba(201, 209, 217, 0.1);
    border: 1px solid rgba(201, 209, 217, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.card:hover .card-price .price-amount {
    background: linear-gradient(135deg, var(--white-color), var(--silver-light), var(--white-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* ========================================
   FAQ SECTION - GYAKORI KÉRDÉSEK
   ======================================== */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--silver-light);
    background: rgba(201, 209, 217, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(201, 209, 217, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--silver-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--silver-medium);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(201, 209, 217, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: var(--light-gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   PRICE INFO - ÁR INFORMÁCIÓK
   ======================================== */
.price-info {
    margin: 1.5rem 0;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.15), rgba(139, 148, 158, 0.1));
    border: 2px solid transparent;
    background-clip: padding-box;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(201, 209, 217, 0.1);
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.price-tag::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium), var(--silver-light));
    border-radius: inherit;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(201, 209, 217, 0.25);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}

.price-tag:hover::before {
    opacity: 0.1;
}

.price-tag:hover::after {
    opacity: 1;
}

.price-from {
    font-size: 0.85rem;
    color: var(--light-gray-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium), var(--silver-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-tag:hover .price-amount {
    background: linear-gradient(135deg, var(--white-color), var(--silver-light), var(--white-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.text-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.text-section .btn:hover::before {
    left: 100%;
}

/* Text section gombok neon színnel - function.css-ben definiálva */

.text-section .btn-secondary {
    background: transparent;
    color: var(--silver-light);
    border: 2px solid var(--silver-light);
}

.text-section .btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--silver-light);
    color: var(--black-color);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

/* Gombok reszponzív design */
@media (max-width: 480px) {
    .text-section .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   CALL TO ACTION SZEKCIÓ
   ======================================== */
.text-section-cta {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--black-color-lighten) 50%, var(--black-color-light) 100%);
    position: relative;
    overflow: hidden;
}

.text-section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 209, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 148, 158, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(201, 209, 217, 0.05) 50%, transparent 100%);
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 30%, #9ca3af 70%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: left;
}

.cta-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium), var(--silver-dark));
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(201, 209, 217, 0.3);
}

.cta-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--light-gray-color);
    font-weight: 400;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    transform: translateX(15px);
}

.cta-feature i {
    color: var(--silver-light);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 209, 217, 0.2);
}

.cta-feature:hover i {
    background: linear-gradient(135deg, var(--silver-medium), var(--silver-light));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(201, 209, 217, 0.4);
}

.cta-feature span {
    font-weight: 600;
    color: var(--white-color);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-neon-dark));
    color: var(--black-color);
    border: 3px solid var(--accent-neon-light);
    box-shadow: 0 8px 25px rgba(201, 209, 217, 0.3), 0 0 20px var(--accent-neon-glow);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 209, 217, 0.4), 0 0 30px var(--accent-neon-glow), 0 0 50px var(--accent-neon-light);
    background: linear-gradient(135deg, var(--accent-neon-dark), var(--accent-neon));
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--silver-light);
    border: 3px solid var(--silver-light);
    box-shadow: 0 8px 25px rgba(201, 209, 217, 0.2);
}

.cta-buttons .btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--silver-light);
    color: var(--black-color);
    box-shadow: 0 15px 35px rgba(201, 209, 217, 0.4);
}

.cta-image {
    position: relative;
    text-align: center;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 25px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 40px 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 8s ease-in-out infinite;
}

.cta-image img:hover {
    transform: scale(1.08) rotate(-3deg);
}

.cta-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    color: var(--black-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 209, 217, 0.4);
    opacity: 1;
    z-index: 3;
}

.cta-badge i {
    font-size: 1.2rem;
    color: #ffd700;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--light-gray-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-note i {
    color: var(--silver-light);
    font-size: 1.2rem;
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* CTA reszponzív design */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text h2 {
        text-align: center;
    }
    
    .cta-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto 0;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .text-section .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .text-section .button-group .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .price-tag {
        padding: 0.8rem 1.5rem;
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    }
    
    .price-tag:hover {
        clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
    }
    
    .price-from {
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .cta-image img {
        max-width: 300px;
    }
    
    .text-section-cards {
        padding: 6rem 0;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        min-height: 420px;
        padding: 2.5rem 2rem;
    }
    
    .service-card-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .service-card .card-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1.5rem;
    }
    
    .service-card .card-icon i {
        font-size: 2.3rem;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card .card-description {
        font-size: 1rem;
        min-height: 4em;
        margin-bottom: 1.5rem;
    }
    
    .service-card .card-list {
        margin-bottom: 2rem;
    }
    
    .service-card .btn {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .card-price .price-amount {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .cta-feature {
        gap: 1rem;
    }
    
    .cta-feature i {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    
    .cta-feature span {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   CONTACT PROCESS SECTION - KAPCSOLATFELVÉTEL MENETE
   ======================================== */
.contact-process-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--black-color-light) 0%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
}

.contact-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 209, 217, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 148, 158, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(201, 209, 217, 0.02) 50%, transparent 100%);
    z-index: 1;
}

.contact-process-content {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.process-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium));
    border-radius: 3px;
}

.process-header p {
    font-size: 1.3rem;
    color: var(--light-gray-color);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--silver-light), var(--silver-medium), var(--silver-light));
    z-index: 1;
    opacity: 0.3;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(201, 209, 217, 0.4);
}

.step-content {
    background: rgba(201, 209, 217, 0.05);
    border: 1px solid rgba(201, 209, 217, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.1), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    border-color: var(--silver-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-content::before {
    opacity: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: var(--black-color);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.step-content p {
    color: var(--light-gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--silver-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-item i {
    color: var(--silver-light);
    font-size: 1rem;
}

.step-arrow {
    position: absolute;
    top: 20px;
    right: -1rem;
    color: var(--silver-light);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: arrowPulse 2s ease-in-out infinite;
}

.process-step:hover .step-arrow {
    transform: translateX(5px);
    opacity: 1;
    animation-play-state: paused;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(3px) scale(1.1);
        opacity: 1;
    }
}

.process-step:last-child .step-arrow {
    display: none;
}


/* Contact Process reszponzív design */
@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        align-items: stretch;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-process-section {
        padding: 4rem 0 3rem;
    }
    
    .process-header {
        margin-bottom: 4rem;
    }
    
    .process-steps {
        margin-bottom: 4rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 480px) {
    .contact-process-section {
        padding: 3rem 0 2rem;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-header p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }
    
}

/* ========================================
   PACKAGE CARDS - CSOMAG AJÁNLATOK
   ======================================== */
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(201, 209, 217, 0.05);
    border: 2px solid rgba(201, 209, 217, 0.1);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 209, 217, 0.08), rgba(139, 148, 158, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--silver-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(201, 209, 217, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.package-featured {
    border-color: var(--silver-light);
    background: rgba(201, 209, 217, 0.08);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.package-card.package-featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(201, 209, 217, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(201, 209, 217, 0.25);
}

.package-card:hover .package-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(201, 209, 217, 0.4);
}

.package-icon i {
    font-size: 2.5rem;
    color: var(--black-color);
    transition: all 0.4s ease;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white-color);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.package-subtitle {
    color: var(--light-gray-color);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.package-price {
    text-align: center;
    margin: 2rem 0 1rem;
    position: relative;
    z-index: 2;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--silver-light);
    font-weight: 600;
    margin-left: 0.25rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray-color);
    margin-top: 0.5rem;
    font-style: italic;
}

.package-original-price {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-original-price span {
    color: var(--light-gray-color);
    font-size: 0.95rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.package-features {
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--light-gray-color);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features li i {
    color: var(--silver-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.package-savings {
    text-align: center;
    padding: 1rem;
    background: rgba(201, 209, 217, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(201, 209, 217, 0.2);
}

.package-savings i {
    color: #4ade80;
    font-size: 1.3rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.package-savings span {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.package-card .btn {
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 1024px) {
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .package-card.package-featured {
        transform: scale(1);
    }
    
    .package-card.package-featured:hover {
        transform: scale(1.02) translateY(-12px);
    }
}

@media (max-width: 768px) {
    .packages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
}

