/* =====================================================
   Legnotre Zsalurendszerek - Main CSS
   Version: Full-width responsive with dynamic scaling
   ===================================================== */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors */
    --legnotre-yellow: #ffbd00;
    --legnotre-red: #ed1d23;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --bg-grey: #f5f5f5;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Spacing - Alap értékek, később skálázzuk */
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Nagy képernyőkön növeljük a spacing-et */
@media screen and (min-width: 1400px) {
    :root {
        --spacing-sm: 1.25rem;
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }
}

@media screen and (min-width: 1920px) {
    :root {
        --spacing-sm: 1.5rem;
        --spacing-md: 2.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }
}

/* ========== Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Nagy képernyőkön növeljük az alap font méretet */
@media screen and (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

@media screen and (min-width: 2560px) {
    html {
        font-size: 20px;
    }
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

/* ========== Layout - TELJES SZÉLESSÉG ========== */
.container {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* Különböző képernyőméretekhez optimalizált padding */
@media screen and (min-width: 1400px) {
    .container {
        padding: 0 calc(var(--spacing-lg) * 1.5);
    }
}

@media screen and (min-width: 1920px) {
    .container {
        padding: 0 calc(var(--spacing-lg) * 2);
    }
}

@media screen and (min-width: 2560px) {
    .container {
        padding: 0 calc(var(--spacing-lg) * 2.5);
    }
}

/* ========== Typography - Reszponzív méretek ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 2rem); }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(0.95rem, 1.1vw, 1.125rem);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--legnotre-red);
}

/* ========== Brand Strip ========== */
.brand-strip {
    height: 8px;
    background: linear-gradient(90deg, 
        var(--legnotre-yellow) 33.33%, 
        var(--legnotre-red) 33.33%, 
        var(--legnotre-red) 66.66%, 
        var(--legnotre-yellow) 66.66%);
    position: sticky;
    top: 0;
    z-index: 500;
}

/* ========== Header ========== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 8px;
    z-index: 499;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-lg);
}

.logo img {
    height: clamp(45px, 4vw, 70px);
    width: auto;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.75rem clamp(1rem, 1.5vw, 2rem);
    color: var(--text-primary);
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--legnotre-red);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--legnotre-red);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ========== Dropdown Menu - Desktop ========== */
.nav-item.has-dropdown {
    position: relative;
}

/* Desktop: dropdown toggle rejtve */
.dropdown-toggle {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-arrow.desktop-only {
    display: inline-block;
}

.nav-item.has-dropdown:hover .dropdown-arrow.desktop-only {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Kis háromszög a dropdown tetején */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--bg-white);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--legnotre-red);
    padding-left: 25px;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.5rem, 0.8vw, 1rem) clamp(1rem, 1.5vw, 2rem);
    background: var(--legnotre-red);
    color: var(--text-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-phone-btn:hover {
    background: var(--legnotre-yellow);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 189, 0, 0.3);
}

.header-phone-btn svg {
    width: clamp(16px, 1.2vw, 20px);
    height: clamp(16px, 1.2vw, 20px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Phone Button */
.mobile-phone-button {
    display: none;
}

/* ========== Main Content ========== */
#main {
    min-height: 60vh;
}

/* ========== Hero Section ========== */
.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: clamp(60px, 8vw, 120px) 0;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--legnotre-red);
    margin-bottom: var(--spacing-sm);
}

.hero-content h3 {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.8;
}

/* ========== Trust Bar ========== */
.trust-bar {
    background: var(--legnotre-red);
    color: white;
    padding: clamp(20px, 2vw, 35px) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 2vw, 40px);
    flex-wrap: wrap;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
}

.trust-item {
    padding: 0 var(--spacing-sm);
}

.separator {
    opacity: 0.5;
}

/* ========== Product Showcase ========== */
.product-showcase {
    padding: var(--spacing-xl) 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 3vw, 50px);
    margin-top: var(--spacing-lg);
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item h4 {
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    font-weight: 600;
    color: var(--text-primary);
}

/* ========== Best Offers ========== */
.best-offers {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: var(--spacing-xl);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 4vw, 60px);
    width: 100%;
}

.offer-card {
    background: white;
    border: 3px solid var(--legnotre-yellow);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: var(--legnotre-red);
}

/* Új felső rész: kép balra, szöveg jobbra */
.offer-card-top {
    display: flex;
    align-items: center;
    padding: clamp(30px, 4vw, 50px);
    background: white;
    gap: clamp(25px, 3vw, 40px);
}

.offer-image {
    width: clamp(160px, 18vw, 250px);
    height: clamp(160px, 18vw, 250px);
    flex-shrink: 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.offer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-info h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.offer-info .offer-desc {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: var(--text-primary);
    opacity: 0.75;
    line-height: 1.5;
}

/* Ár sáv - teljes szélességben */
.offer-price-bar {
    background: linear-gradient(90deg, #fff9e6 0%, #fffef5 100%);
    padding: clamp(20px, 2.5vw, 35px);
    text-align: center;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.offer-price {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--legnotre-red);
    margin: 0;
}

/* Alsó csomag opciók */
.offer-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.package-option {
    padding: clamp(25px, 3vw, 40px);
    text-align: center;
    background: #fafafa;
    transition: background 0.3s ease;
}

.package-option:first-child {
    border-right: 2px solid #f0f0f0;
}

.package-option:hover {
    background: #f0f0f0;
}

.package-option h4 {
    font-size: clamp(1.05rem, 1.3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: clamp(12px, 1.5vw, 18px) clamp(24px, 3vw, 40px);
    background: var(--legnotre-yellow);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--legnotre-red);
    color: white;
    transform: translateY(-2px);
}

/* Speciális kártya */
.offer-card-special {
    border-color: var(--legnotre-red);
    border-width: 3px;
    position: relative;
    background: linear-gradient(to bottom right, #fffef5, white);
}

.offer-card-special .offer-card-top {
    background: linear-gradient(to right, white, #fffef5);
}

.offer-card-special .offer-price-bar {
    background: linear-gradient(90deg, #fff5e6 0%, #fff9f0 100%);
}

.special-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--legnotre-red);
    color: white;
    padding: 6px 40px;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1;
}

/* ========== Contact Section ========== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: #f5f5f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(30px, 4vw, 80px);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
}

.contact-item svg {
    fill: var(--legnotre-red);
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-map {
    flex: 1;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: white;
    padding: clamp(25px, 3vw, 50px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.form-group label .required {
    color: var(--legnotre-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.5vw, 20px);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--legnotre-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #f9f9f9;
    border-radius: 8px;
}

.captcha-image {
    background: white;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}

.captcha-input {
    flex: 1;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.privacy-checkbox label {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-primary);
    cursor: pointer;
}

.privacy-checkbox label a {
    color: var(--legnotre-red);
    text-decoration: underline;
}

.btn-primary {
    padding: clamp(12px, 1.5vw, 20px) clamp(25px, 3vw, 40px);
    background: var(--legnotre-red);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 29, 35, 0.3);
    color: white;
}

/* ========== Testimonials ========== */
.testimonials {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(25px, 3vw, 50px);
}

.testimonial-card {
    background: white;
    padding: clamp(25px, 3vw, 45px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-author img {
    width: clamp(50px, 4vw, 70px);
    height: clamp(50px, 4vw, 70px);
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-primary);
    opacity: 0.7;
}

/* ========== Why Legnotre ========== */
.why-legnotre {
    padding: var(--spacing-xl) 0;
    background: var(--bg-grey);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(25px, 3vw, 50px);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-md);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(70px, 6vw, 100px);
    height: clamp(70px, 6vw, 100px);
    margin: 0 auto var(--spacing-md);
    background: rgba(237, 29, 35, 0.1);
    border-radius: 50%;
}

.benefit-icon svg {
    fill: var(--legnotre-red);
    width: 50%;
    height: 50%;
}

.benefit-item h3 {
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.benefit-item p {
    font-size: clamp(0.9rem, 1.05vw, 1.1rem);
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

/* ========== NEW: Blog Section ========== */
.blog-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-grey);
}

.blog-section .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(25px, 3vw, 50px);
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: clamp(200px, 20vw, 300px);
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: clamp(20px, 2.5vw, 35px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    color: var(--text-primary);
    opacity: 0.6;
}

.blog-author,
.blog-date {
    display: inline-block;
}

.blog-content h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    min-height: 2.6em;
}

.blog-content p {
    font-size: clamp(0.9rem, 1.05vw, 1.1rem);
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--legnotre-red);
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-link:hover {
    transform: translateX(5px);
}

/* ========== NEW: Why Legnotre Detailed Section ========== */
.why-legnotre-detailed {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.why-legnotre-detailed .section-title {
    margin-bottom: var(--spacing-xl);
}

/* Legnotre Company Info */
.legnotre-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    align-items: start;
}

.legnotre-text h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--legnotre-red);
    margin-bottom: var(--spacing-md);
}

.legnotre-text p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-primary);
}

.legnotre-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Company and Solutions */
.company-solutions-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}

.about-company h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.about-company p {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.about-company .btn-primary {
    margin-top: var(--spacing-md);
}

.solutions-section h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.solution-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: clamp(20px, 2.5vw, 35px);
    background: var(--bg-grey);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: clamp(70px, 6vw, 100px);
    height: clamp(70px, 6vw, 100px);
    flex-shrink: 0;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.solution-content h4 {
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.solution-content p {
    font-size: clamp(0.9rem, 1.05vw, 1.1rem);
    line-height: 1.5;
    color: var(--text-primary);
    opacity: 0.8;
    margin: 0;
}

/* ========== FAQ Section Styles - SÁRGA AKTÍV SZÍN ========== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.faq-section .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: var(--spacing-xl);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: var(--spacing-xl);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--legnotre-yellow);
}

.faq-category-title svg {
    fill: var(--legnotre-red);
    width: clamp(24px, 2vw, 32px);
    height: clamp(24px, 2vw, 32px);
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: var(--legnotre-yellow);
    box-shadow: 0 4px 20px rgba(255, 189, 0, 0.15);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: clamp(18px, 2vw, 28px) clamp(20px, 2.5vw, 35px);
    background: white;
    border: none;
    font-size: clamp(0.95rem, 1.2vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.faq-question:hover {
    background: #fafafa;
}

.faq-item.active .faq-question {
    background: #fffef5;
    color: var(--text-primary);
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

/* FAQ Icon */
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    fill: var(--text-primary);
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    fill: var(--legnotre-yellow);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 clamp(20px, 2.5vw, 35px) clamp(20px, 2.5vw, 35px);
}

.faq-answer p {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.85;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: var(--spacing-xl);
    padding: clamp(40px, 5vw, 70px);
    background: #f5f5f5;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.faq-cta p {
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.faq-cta-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vw, 20px) clamp(25px, 3vw, 40px);
    background: var(--legnotre-red);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-buttons .btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 29, 35, 0.3);
    color: white;
}

.faq-cta-buttons .btn-primary svg {
    fill: white;
    width: clamp(18px, 1.3vw, 22px);
    height: clamp(18px, 1.3vw, 22px);
}

.faq-cta-buttons .btn-secondary {
    padding: clamp(12px, 1.5vw, 20px) clamp(25px, 3vw, 40px);
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--legnotre-yellow);
    border-radius: 30px;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.faq-cta-buttons .btn-secondary:hover {
    background: var(--legnotre-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 189, 0, 0.3);
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(30px, 3vw, 50px);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3,
.footer-column h4 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
}

.footer-column p,
.footer-column ul li,
.footer-column address {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 0.25rem 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--legnotre-yellow);
}

.footer-column address {
    font-style: normal;
}

.footer-column address p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.85rem, 1vw, 1rem);
}