* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    color: white;
    padding: 0.7rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* ÚJ: képes logó */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;        /* nagy, jól látható desktopon */
    width: auto;
    display: block;
}

/* régi szöveges logó törölve – ne maradjon .logo h2 */

/* Menü */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: rgba(255,215,0,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffd700;
    background: rgba(255,215,0,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
/* HERO SECTION - ÚJ LAYOUT: Szöveg BALRA, Kép JOBBRA */
.hero {
    background: linear-gradient(rgba(26,60,94,0.9), rgba(42,92,142,0.9));
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    color: white;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a3c5e;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.6);
}

/* RESPONSZÍV */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    .hero {
        padding: 1rem;
        min-height: 90vh;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}


/* Sections */
.about, .services, .contact {
    padding: 6rem 0;
}

.about {
    background: #f8f9fa;
}

.about h2, .services h2, .contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a3c5e;
}

.about p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}



/* Contact */
.contact {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    color: white;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #ffd700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.3);
    transform: scale(1.02);
}

.contact-form button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a3c5e;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #1a3c5e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        background-attachment: scroll;
        margin-top: 70px;
        min-height: 80vh;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about, .services, .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* RÓLUNK - EGYÉNI VÁLLALKOZÓ PROFIL */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #1a3c5e;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.about-highlight {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    border-radius: 20px;
    justify-content: center;
}

.highlight-item {
    text-align: center;
    color: white;
}

.highlight-item strong {
    display: block;
    font-size: 2.2rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    font-size: 1rem;
    opacity: 0.9;
}

/* KÉP */
.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.image-caption p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* MOBIL */
@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-highlight {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .profile-image {
        height: 300px;
    }
}

/* SZOLGÁLTATÁSOK TURBO */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #1a3c5e;
    margin-bottom: 6rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, transparent);
    border-radius: 2px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.service-left .service-image { order: 1; }
.service-right .service-image { order: 2; }
.service-left .service-content { order: 2; }
.service-right .service-content { order: 1; }

.service-image {
    position: relative;
}

.service-img {
    width: 200%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-item:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 0 2rem;
}

.service-content h3 {
    font-size: 2.2rem;
    color: #1a3c5e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a3c5e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* MOBIL */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-left, .service-right {
        flex-direction: column;
    }
    
    .service-img {
        height: 250px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
}

/* AMIKET VÁLLALUNK ALOLDAL */
/* ========================================
   SZOLGÁLTATÁSOK – MODERN, KÉPES, CTA-K
   ======================================== */

/* HERO */
.svc-hero {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    padding: 120px 0 90px;
    color: #ffffff;
}

.svc-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.svc-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #ffed4e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.svc-hero-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.svc-hero-text {
    max-width: 550px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.svc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.svc-hero-tags span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.svc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.svc-cta-primary,
.svc-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.svc-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a3c5e;
    box-shadow: 0 12px 30px rgba(255,215,0,0.45);
}

.svc-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(255,215,0,0.6);
}

.svc-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.45);
}

.svc-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* Méret variációk */
.svc-cta-primary.small,
.svc-cta-secondary.small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.svc-cta-primary.big,
.svc-cta-secondary.big {
    padding: 1.1rem 2.6rem;
    font-size: 1.02rem;
}

/* HERO JOBB OLDALI KÉP */
.svc-hero-right {
    justify-self: center;
}

.svc-hero-photo {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.6);
}

.svc-hero-img {
    display: block;
    width: 100%;
    max-width: 800px
    height: auto;
}

.svc-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.65);
    color: #ffed4e;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* SZOLGÁLTATÁS SOROK */
.svc-section {
    padding: 4.5rem 0 4.5rem;
    background: #f8f9fa;
}

.svc-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

.svc-section-head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #1a3c5e;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.svc-section-head p {
    color: #6c757d;
    font-size: 0.98rem;
}

.svc-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.svc-row:last-of-type {
    margin-bottom: 0;
}

.svc-row.reverse {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
}

.svc-row.reverse .svc-row-media {
    order: 2;
}
.svc-row.reverse .svc-row-content {
    order: 1;
}

/* képek */
.svc-row-media {
    position: relative;
}

.svc-row-img {
    width: 100%;
    max-width: 480px;
    border-radius: 22px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* szöveg blokk */
.svc-row-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a3c5e;
    margin: 0 0 0.4rem 0;
}

.svc-row-content p {
    color: #6c757d;
    font-size: 0.97rem;
    margin-bottom: 0.6rem;
}

.svc-row-icon {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
}

.svc-row-icon.urgent {
    color: #dc3545;
}

.svc-row-content ul {
    margin: 0 0 0.6rem 0;
    padding-left: 1.1rem;
}

.svc-row-content ul li {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.svc-row-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.93rem;
    color: #1a3c5e;
    text-decoration: none;
    font-weight: 600;
}

.svc-row-link:hover {
    text-decoration: underline;
}

.svc-row-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

/* MIÉRT ENGEM? SZEKCIÓ */
.svc-why {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #e3e7ee;
}

.svc-why-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.svc-why-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #1a3c5e;
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.svc-why-text p {
    color: #6c757d;
    font-size: 0.97rem;
    margin-bottom: 0.7rem;
}

.svc-why-text ul {
    margin: 0;
    padding-left: 1.1rem;
}

.svc-why-text ul li {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.3rem;
}

/* jobb oldali kiemelés */
.svc-why-highlight {
    background: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    color: #ffffff;
    border-radius: 22px;
    padding: 2.2rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.svc-why-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.svc-why-number span {
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 0.2rem;
}

.svc-why-label {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

/* FINAL CTA */
.svc-final-cta {
    padding: 4rem 0 4.5rem;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e3e7ee;
}

.svc-final-cta h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #1a3c5e;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.svc-final-cta p {
    color: #6c757d;
    max-width: 640px;
    margin: 0 auto 2rem auto;
    font-size: 0.98rem;
}

.svc-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .svc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .svc-hero-left,
    .svc-hero-text,
    .svc-hero-tags,
    .svc-hero-ctas {
        justify-content: center;
    }

    .svc-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .svc-hero-right {
        order: -1;
    }

    .svc-hero-photo {
        margin: 0 auto 1.5rem auto;
    }

    .svc-row,
    .svc-row.reverse {
        grid-template-columns: 1fr;
    }

    .svc-row.reverse .svc-row-media,
    .svc-row.reverse .svc-row-content {
        order: initial;
    }

    .svc-why-inner {
        grid-template-columns: 1fr;
    }

    .svc-why-highlight {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 100px 0 70px;
    }

    .svc-section {
        padding: 3.5rem 0;
    }

    .svc-row-img {
        max-width: 100%;
    }

    .svc-hero-ctas,
    .svc-final-buttons {
        flex-direction: column;
    }

    .svc-cta-primary,
    .svc-cta-secondary {
        width: 100%;
        max-width: 320px;
    }
}


/* SOS ALOLDAL - 100% MOBILBARÁT, HIBÁTLAN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;      /* mindent középre */
    align-items: center;
    padding: 0 1.5rem;
}

/* logo blokk, hogy a h2 középen legyen */
.logo {
    flex: 1 1 100%;
    text-align: center;
}

.logo h2 {
    margin: 0;
}

/* SOS Hívás gomb mint tel-link */
.sos-badge {
    display: inline-block;
    background: #ff4444;
    color: #ffffff;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    animation: pulse 2s infinite;
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: #ffd700;
    background: rgba(255,215,0,0.1);
}

.cta-nav {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    max-width: 130px !important;
}

.cta-nav span {
    display: block;
    font-size: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* SOS HERO */
.sos-hero {
    background: linear-gradient(135deg, rgba(255,68,68,0.95), rgba(204,0,0,0.95));
    padding: 140px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.sos-emergency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.emergency-badge {
    text-align: center;
    color: white;
}

.flash {
    font-size: 4rem;
    animation: flash 1s infinite;
    display: block;
    margin-bottom: 1rem;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.emergency-badge h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.urgency {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sos-call-box {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.call-now h2 {
    color: #cc0000;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.sos-phone {
    display: inline-block;
    background: linear-gradient(135deg, #00cc00, #00ff00);
    color: #1a3c5e;
    padding: 1.5rem 2.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,204,0,0.4);
    transition: all 0.3s ease;
}

.sos-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,204,0,0.6);
}

.sos-hero-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

/* WHY SECTION */
.sos-why {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.sos-why h2, .sos-problems h2, .sos-cta h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a3c5e;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: #1a3c5e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* PROBLEMS */
.sos-problems {
    padding: 6rem 0;
    background: #f8f9fa;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    color: white;
    padding: 4rem 1.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
}

.problem-icon {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.problem-card.danger .problem-icon { background: #ff4444; }
.problem-card.warning .problem-icon { background: #ff8800; }
.problem-card.urgent .problem-icon { background: #00cc44; }

.problem-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* CTA */
.sos-cta {
    background: linear-gradient(135deg, #cc0000, #ff4444);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.sos-cta .urgency {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sos-main-cta {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #1a3c5e !important;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0,255,0,0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sos-main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,255,0,0.6);
}

.secondary-cta {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: rgba(255,255,255,0.3);
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

/* MOBIL - MINDEN JÁRVÁNY */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26,60,94,0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .sos-emergency {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sos-hero {
        padding: 100px 0 40px;
        min-height: 85vh;
    }
    
    .emergency-badge h1 {
        font-size: 2.5rem;
    }
    
    .urgency {
        font-size: 1.2rem;
    }
    
    .call-now h2 {
        font-size: 1.8rem;
    }
    
    .sos-phone {
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
    }
    
    .sos-hero-img {
        height: 180px;
    }
    
    .why-grid, .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 12px;
    }
    
    .problem-card {
        padding: 3.8rem 1.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .sos-main-cta {
        width: 100%;
        max-width: 300px;
        padding: 1.3rem 2rem;
        font-size: 1.3rem;
    }
    
    .sos-why h2, .sos-problems h2, .sos-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .emergency-badge h1 {
        font-size: 2rem;
    }
    
    .sos-phone {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    
    .problem-icon {
        width: 55px;
        height: 55px;
        top: 10px;
    }
}

/* ========================================
   ÁRAK ALOLDAL - NAGYVÁLLALATI DESIGN
   ======================================== */

/* HERO */
/* HERO - KÉK HÁTTÉR */
.prices-hero {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 50%, #1a3c5e 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.prices-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,215,0,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #ffed4e;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.25rem;
}

.hero-points li::before {
    content: "•";
    color: #ffed4e;
    font-size: 1.2rem;
}


.key-prices {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.key-price {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.key-price:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a3c5e !important;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.5);
}

.hero-visual {
    position: relative;
}

.price-preview {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.preview-price {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .key-prices {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 100px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .key-prices {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .key-price {
        width: 100%;
        max-width: 300px;
    }
}

/* HERO JOBBRA KÉP */
.hero-image {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.4);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a3c5e;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
    backdrop-filter: blur(10px);
}

.overlay-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE KÉP */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        height: 400px;
        order: 2;
    }
    
    .key-prices {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 100px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .key-prices {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .key-price {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 250px;
    }
    
    .image-overlay {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
    }
}


.price-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-label {
    color: #1a3c5e;
    font-weight: 500;
}

.preview-price {
    font-weight: 700;
    color: #28a745;
}

/* TÁBLÁZATOK */
/* FELDOBOTT PRO TÁBLÁZATOK */
.table-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
    margin-bottom: 4rem;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.table-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a3c5e, #2a5c8e, #ffd700);
    border-radius: 24px 24px 0 0;
}

.table-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.8) inset;
}

.table-card.urgent::before {
    background: linear-gradient(90deg, #dc3545, #ff4444, #ffd700);
}

.table-header {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 2.5rem 3rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.table-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a3c5e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.table-count {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a3c5e;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-table {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
}

.pro-table thead th {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.pro-table thead th:first-child {
    border-radius: 20px 0 0 0;
}

.pro-table thead th:last-child {
    border-radius: 0 20px 0 0;
}

.pro-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f3f8;
    vertical-align: top;
    transition: all 0.3s ease;
    position: relative;
}

.pro-table tbody tr {
    background: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pro-table tbody tr:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.pro-table tbody tr:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5faff 100%) !important;
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(26,60,94,0.1);
    border-radius: 16px;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.pro-table tbody tr:last-child td {
    border-bottom: none;
}

.pro-table .price-column {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #28a745 !important;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(40,167,69,0.2);
}

.table-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #f1f3f4;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* SOR ICONOK */
.pro-table tbody tr:hover td:first-child::before {
    content: '✨';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.8;
    z-index: 5;
}

/* MOBIL TABLET */
@media (max-width: 1024px) {
    .pro-table {
        min-width: 750px;
    }
    
    .table-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .pro-table {
        min-width: 650px;
    }
    
    .table-header {
        padding: 2rem 2rem;
    }
    
    .pro-table td, .pro-table th {
        padding: 1.2rem 1.5rem;
    }
    
    .table-count {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* SZÁMOLÓ ANIMÁCIÓ */
.about-highlight {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.highlight-item {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-top-color: #ffd700;
}

.counter {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a3c5e;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'SF Pro Display', -apple-system, sans-serif;
}

.highlight-item span {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-highlight {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .counter {
        font-size: 2.8rem;
    }
}


/* INFO GRID */
.price-info-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1a3c5e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* CTA */
.price-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5c8e 100%);
    color: white;
    text-align: center;
}

.price-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-primary, .cta-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.cta-primary {
    background: #ffd700;
    color: #1a3c5e !important;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}

.cta-secondary {
    background: rgba(255,255,255,0.15);
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .key-prices {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26,60,94,0.98);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 1rem;
        transition: 0.3s;
    }
    .nav-menu.active { left: 0; }
    
    .pro-table { min-width: 650px; }
    .cta-grid { flex-direction: column; align-items: center; }
    .cta-primary, .cta-secondary { width: 100%; max-width: 300px; }
    
    .info-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .pro-table { min-width: 600px; }
}

/* KOMPAKT SÁRGA HIVÁS GOMB */
.simple-call-cta {
    padding: 2rem 0; /* 4rem → 2rem */
    background: #f8f9fa;
    text-align: center;
}

.simple-yellow-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a3c5e !important;
    padding: 1.3rem 2.5rem; /* Kicsit kisebb padding */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    transition: all 0.3s ease;
    border: none;
    margin: 0 auto; /* Pontosan középre */
}

.simple-yellow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.5);
}

@media (max-width: 768px) {
    .simple-call-cta {
        padding: 1.5rem 0; /* Mobilon még kevesebb */
    }
    
    .simple-yellow-btn {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
        font-size: 1.15rem;
    }
}

/* KÉK TELJES SZÉLESSÉGŰ SZÁMLÁLÓ */
.highlight-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);

    padding: 4rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    z-index: 10;
}

.highlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-highlight {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 2rem 0;
}

.highlight-item {
    text-align: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 1px 0 rgba(255,255,255,0.9) inset;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.2);
    flex: 1;
    max-width: 280px;
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 35px 80px rgba(0,0,0,0.3),
        0 2px 0 rgba(255,255,255,1) inset;
}

.highlight-item:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.counter {
    display: block;
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'SF Pro Display', -apple-system, sans-serif;
}

.highlight-item span {
    font-size: 1.2rem;
    color: #1a3c5e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-highlight {
        gap: 2rem;
    }
    
    .highlight-item {
        max-width: 240px;
        padding: 2.5rem 2rem;
    }
    
    .counter {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .highlight-section {
        padding: 3rem 0;
    }
    
    .about-highlight {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .highlight-item {
        max-width: 300px;
        width: 100%;
    }
    
    .counter {
        font-size: 2.8rem;
    }
}

/* KAPCSOLAT - KONTÉNERBE ZÁRT */
/* SÁRGA BELSEJŰ KAPCSOLAT KONTÉNER */
.contact-wrapper {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    margin: 4rem auto;
    max-width: 1200px;
    border-radius: 24px;
    box-shadow: 
        0 20px 80px rgba(255,215,0,0.3),
        0 1px 0 rgba(255,255,255,0.8) inset;
    overflow: hidden;
    border: 1px solid rgba(255,193,7,0.5);
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a3c5e, transparent);
    z-index: 10;
}

.contact {
    padding: 4rem 0;
}

.contact .container {
    max-width: 100%;
    padding: 0 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #FFD700; /* arany sárga */
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        margin: 2rem 1rem;
        border-radius: 16px;
    }
    
    .contact {
        padding: 3rem 0;
    }
}

/* LOGÓ – erőltetett nagyítás, hogy jól látszódjon */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px !important;   /* próbáld 120; ha kell, emeld 140-ig */
    width: auto !important;
    display: block;
}

/* mobilra kicsit visszavéve, de még nagy marad */
@media (max-width: 768px) {
    .logo-img {
        height: 90px !important;
    }
}

/* Árlista szekció fejléce és táblázatok közötti távolság */
.price-tables-section {
    padding: 4rem 0;
}

.price-tables-section .section-header {
    text-align: left;           /* vagy center, ha úgy szebb */
    margin-bottom: 2.5rem;      /* ez tolja lejjebb a táblázatokat */
}

.price-tables-section .section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.price-tables-section .section-header p {
    max-width: 800px;
}
