:root {
    --primary-color: #7B2CBF;
    --secondary-color: #5A189A;
    --accent-color: #9D4EDD;
    --dark-bg: #240046;
    --light-bg: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.top-bar {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-link {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.top-bar-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar-right a {
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR - LOGO FIX KÉNYSZERÍTVE
   ======================================== */
.navbar {
    padding: 8px 0 !important;
    box-shadow: var(--shadow-sm);
    min-height: 60px;
    max-height: 60px;
    background: white !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-height: 45px !important;
    overflow: hidden !important;
}

/* LOGO MÉRET KÉNYSZERÍTÉS */
.logo-img,
.navbar-brand img,
.navbar img,
header img.logo-img,
img[alt*="Logo"],
img[alt*="logo"] {
    height: 35px !important;
    max-height: 35px !important;
    min-height: 35px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: var(--transition);
}

.logo-img:hover,
.navbar-brand img:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
}

.navbar-brand:hover .brand-text {
    color: var(--secondary-color) !important;
}

/* ========================================
   HAMBURGER MENÜ - MOBIL FIX
   ======================================== */

/* Hamburger gomb stílus */
.navbar-toggler {
    border: 2px solid #7B2CBF !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    background: rgba(123, 44, 191, 0.05) !important;
}

.navbar-toggler:hover {
    background: rgba(123, 44, 191, 0.1) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(123, 44, 191, 0.25) !important;
    outline: none !important;
}

/* Hamburger vonalak színe (lila) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(123, 44, 191, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Desktop nézet - normál navbar */
@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        margin-top: 0 !important;
    }
    
    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
        padding: 8px 15px !important;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }
}

/* Mobil nézet (tablet és kisebb) - FEHÉR HÁTTÉR */
@media (max-width: 991px) {
    /* Menü háttér amikor kinyitva */
    .navbar-collapse {
        background: white !important;
        padding: 20px 15px !important;
        border-radius: 12px !important;
        margin-top: 15px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        border: 2px solid #7B2CBF !important;
    }
    
    /* Nav item-ek */
    .nav-item {
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .nav-item:last-of-type {
        border-bottom: none !important;
    }
    
    /* Nav linkek FEKETE szöveggel */
    .navbar-nav .nav-link {
        color: #333333 !important;
        background: transparent !important;
        padding: 14px 15px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        border-radius: 0 !important;
    }
    
    /* Hover és aktív állapot - LILA */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #7B2CBF !important;
        background: rgba(123, 44, 191, 0.08) !important;
        padding-left: 20px !important;
    }
    
    /* Hívj Most gomb mobilon */
    .navbar-nav .btn-primary {
        width: 100% !important;
        margin-top: 15px !important;
        margin-left: 0 !important;
        padding: 14px !important;
        font-size: 1.1rem !important;
        text-align: center !important;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 25px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: white;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-section {
    background: white;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section img {
    border-radius: 15px;
    transition: var(--transition);
}

.about-section img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.info-box {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05), rgba(157, 78, 221, 0.05));
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 12px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-title {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.service-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-details li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-benefits {
    margin: 20px 0;
    text-align: left;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05), rgba(157, 78, 221, 0.05));
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(199, 125, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f0ff 100%);
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(123, 44, 191, 0.04), transparent 55%),
        radial-gradient(circle at bottom left, rgba(90, 24, 154, 0.12), transparent 28%);
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-header {
    max-width: 820px;
    margin: 0 auto 40px;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(123, 44, 191, 0.1);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-intro {
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.8;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(123, 44, 191, 0.12);
    box-shadow: 0 10px 30px rgba(36, 0, 70, 0.08);
    backdrop-filter: blur(6px);
}

.pricing-highlight i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.3);
}

.pricing-highlight span {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(123, 44, 191, 0.14);
    box-shadow: 0 16px 40px rgba(36, 0, 70, 0.09);
    transition: var(--transition);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.18), rgba(157, 78, 221, 0.06));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 46px rgba(36, 0, 70, 0.14);
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(123, 44, 191, 0.08), rgba(255, 255, 255, 0.98));
}

.pricing-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.pricing-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 12px 24px rgba(90, 24, 154, 0.22);
}

.pricing-card h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.pricing-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

.pricing-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(123, 44, 191, 0.1);
}

.pricing-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-list strong {
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.5;
    text-align: right;
}

.pricing-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(123, 44, 191, 0.06);
    border-left: 4px solid var(--accent-color);
    color: var(--text-dark);
    font-size: 0.96rem;
}

.pricing-cta {
    margin-top: 38px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 20px 45px rgba(36, 0, 70, 0.22);
}

.pricing-cta-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-cta h3 {
    margin-bottom: 0;
    color: white;
    font-size: 1.55rem;
}

.pricing-cta .btn-primary {
    flex-shrink: 0;
    padding: 14px 28px;
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.pricing-cta .btn-primary:hover {
    color: var(--secondary-color);
    background: #ffffff;
}

/* ========================================
   REFERENCES SECTION
   ======================================== */
.references-section {
    background: white;
}

.reference-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.reference-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.reference-card:hover .reference-img {
    transform: scale(1.05);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    background: var(--light-bg);
}

.benefit-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   AREA SECTION
   ======================================== */
.area-section {
    background: white;
}

.area-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.area-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-list li i {
    color: var(--primary-color);
}

.area-card-secondary {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05), rgba(157, 78, 221, 0.05));
    border: 2px solid var(--primary-color);
}

.contact-highlight {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background: var(--light-bg);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--accent-color), white);
}

.contact-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.contact-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* HOGYAN MŰKÖDIK BOX - JAVÍTOTT SZÍNEK */
.contact-info-box {
    background: white !important;
    padding: 40px !important;
    border-radius: 15px !important;
}

.contact-info-box h4 {
    color: var(--primary-color) !important;
    margin-bottom: 25px !important;
}

.contact-info-box p {
    color: var(--text-dark) !important;
}

.process-list {
    padding-left: 0 !important;
    list-style: none !important;
    counter-reset: process-counter !important;
}

.process-list li {
    counter-increment: process-counter !important;
    position: relative !important;
    padding: 15px 0 15px 50px !important;
    font-size: 1.05rem !important;
    color: var(--text-dark) !important;
}

.process-list li strong {
    color: var(--text-dark) !important;
}

.process-list li:before {
    content: counter(process-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 35px !important;
    height: 35px !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
}

.contact-info-box .text-center {
    color: var(--text-dark) !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #240046 0%, #3C096C 25%, #5A189A 50%, #7B2CBF 75%, #9D4EDD 100%);
    color: #ffffff;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: var(--transition);
}

.footer-link:hover {
    color: #C77DFF;
    text-decoration: underline;
}

.footer-social {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-social:hover {
    color: #C77DFF;
    transform: translateY(-5px) scale(1.1);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.social-links a {
    transition: var(--transition);
}

.partner-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.partner-logo {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-link {
    display: inline-block;
}

/* ========================================
   MOBIL RESZPONZIVITÁS
   ======================================== */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }
    
    .top-bar-right {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    /* LOGO MOBIL MÉRET */
    .logo-img,
    .navbar-brand img {
        height: 30px !important;
        max-height: 30px !important;
        max-width: 120px !important;
    }
    
    .brand-text {
        font-size: 1rem !important;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .pricing-highlights {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 26px 22px;
    }

    .pricing-list li {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-list strong {
        text-align: left;
    }

    .pricing-cta {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-cta h3 {
        font-size: 1.35rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .reference-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    /* LOGO EXTRA KICSI MOBIL */
    .logo-img,
    .navbar-brand img {
        height: 28px !important;
        max-height: 28px !important;
        max-width: 100px !important;
    }
    
    .brand-text {
        font-size: 0.95rem !important;
    }
    
    .hero-slide {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }

    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-card-top {
        flex-direction: column;
        gap: 14px;
    }

    .pricing-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .pricing-note {
        padding: 16px;
    }

    .pricing-cta {
        border-radius: 20px;
    }
    
    .reference-img {
        height: 220px;
    }
}

/* ========================================
   VÉGSŐ BIZTONSÁGI OVERRIDE
   ======================================== */
header img,
header .navbar img,
header .navbar-brand img,
.navbar-light img,
#header-sticky img {
    height: 35px !important;
    max-height: 35px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
}

section#contact .contact-info-box,
.contact-section .contact-info-box {
    background: white !important;
    color: #333333 !important;
}

section#contact .contact-info-box h4,
.contact-section .contact-info-box h4 {
    color: #7B2CBF !important;
}

section#contact .contact-info-box p,
.contact-section .contact-info-box p,
section#contact .process-list li,
.contact-section .process-list li {
    color: #333333 !important;
}

section#contact .process-list li strong,
.contact-section .process-list li strong {
    color: #333333 !important;
}
