/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Nagyobb alap betűméret – jobb olvashatóság nagy felbontású képernyőkön (1rem = 18px) */
html {
    font-size: 18px;
}

:root {
    /* Primary Greens - Design System Colors */
    --dark-green: #1a4d1a;
    --medium-green: #2d5016;
    --light-green: #4a7c2a;
    --pastel-green: #7FAF5A;
    --accent-green: #8FBF6A;
    
    /* Accent Colors */
    --yellow: #FFD700;
    --yellow-light: #FFE55C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #E5E5E5;
    --gray-medium: #999999;
    --gray-dark: #333333;
    
    /* Backgrounds */
    --background-natural: #E8F5E0;
    --overlay-dark: rgba(26, 77, 26, 0.7);
    --overlay-light: rgba(127, 175, 90, 0.1);
    
    /* Legacy compatibility */
    --primary-green: var(--pastel-green);
    --primary-green-light: var(--accent-green);
    --background-green: var(--background-natural);
    --text-dark: var(--gray-dark);
    --text-light: var(--gray-medium);
    --current-green: #5A9F3A;
    --shadow: rgba(0, 0, 0, 0.1);
    --gray: var(--gray-light);
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--pastel-green);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Főoldal fedőszekció (osztálynevek adblock-barátok: section-cover, deco-icon) */
.section-cover {
    position: relative;
    padding: 0;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.section-cover-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.section-cover-logo {
    max-width: 440px;
    height: auto;
    margin: 0 auto 50px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
    animation: contentFadeIn 1.2s ease-out 0.3s both;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-cover-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.section-cover-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--white);
    position: relative;
    display: block;
    padding-bottom: 35px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-cover-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.section-cover-badge-label {
    font-size: 1.3rem;
    margin: 20px 0 20px;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    text-align: center;
}

.section-cover-badge {
    font-size: 0.95rem;
    margin: 0 0 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.section-cover-badge-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.section-cover-content .cta-button {
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--light-green) 100%);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Bevezető Szekció */
.intro {
    padding: 40px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 175, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(143, 191, 106, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.intro-icon-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

.intro-icon-wrapper:hover {
    transform: translateY(-5px);
}

.intro-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.intro-text-wrapper {
    flex: 1;
    text-align: left;
    padding-top: 5px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.intro-text.highlight {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.intro-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.intro-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.intro-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--medium-green);
    font-size: 1.2rem;
}

/* Megoldás szekció (ConiTrio + talajkondicionálók) */
.solution-section {
    padding: 40px 20px;
    position: relative;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 0;
}

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

.solution-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-quote {
    text-align: center;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--white);
    margin: 0 auto 20px;
    max-width: 600px;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.solution-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-subtitle {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

.solution-aop-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.solution-aop-text {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.solution-aop-row .aop-logo-2pt {
    height: 50px;
    width: auto;
    display: inline-block;
    flex-shrink: 0;
}

.combo-table-wrapper {
    overflow-x: auto;
    margin: 0 auto 25px;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.combo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.combo-table thead {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
}

.combo-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.combo-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1rem;
    color: var(--text-dark);
}

.combo-cell-culture {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.combo-table-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.combo-table tbody tr:hover {
    background: var(--overlay-light);
}

.solution-aop-note {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-dark);
    margin: 0;
}


/* Mi a ConiTrio szekció */
.what-is-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--background-natural) 15%, var(--background-natural) 85%, var(--white) 100%);
    position: relative;
}

.what-is-lead-box {
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(26, 77, 26, 0.25);
}

.what-is-lead-box .what-is-lead {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.what-is-desc {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.what-is-fungi-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.what-is-fungi-pill {
    display: inline-block;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--medium-green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.what-is-divider {
    height: 3px;
    max-width: 120px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
    border-radius: 2px;
}

.what-is-subtitle {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
    text-align: center;
}

.what-is-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto 28px;
}

.what-is-feature-box {
    position: relative;
    padding: 26px 22px;
    background: linear-gradient(145deg, #1a3d1a 0%, var(--dark-green) 35%, #143814 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.what-is-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0.7;
}

.what-is-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.what-is-feature-title {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.what-is-feature-text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.what-is-disclaimer-box {
    max-width: 480px;
    margin: 0 auto;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    border-left: 4px solid var(--gray-medium);
}

.what-is-disclaimer-box .what-is-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
}

/* Hogyan működik szekció */
.how-section {
    padding: 40px 20px;
    background: var(--background-natural);
    position: relative;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.how-step {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(127, 175, 90, 0.2);
}

.how-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.how-step-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.how-step-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.how-step-list li {
    margin-bottom: 6px;
}

.how-step-desc {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Alkalmazás szekció */
.application-section {
    padding: 50px 20px;
    background: var(--white);
    position: relative;
}

.application-dose,
.application-combo,
.application-detail {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 auto 12px;
    max-width: 600px;
}

/* Bizonyított eredmények kártyák */
.results-section .section-title {
    margin-bottom: 24px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.result-card {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-green);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 77, 26, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg,
        rgba(26, 77, 26, 0.88) 0%,
        rgba(26, 77, 26, 0.75) 40%,
        rgba(0, 0, 0, 0.82) 100%);
    z-index: 0;
    border-radius: 20px;
}

.result-card .result-icon,
.result-card .result-place,
.result-card .result-value,
.result-card .result-detail {
    position: relative;
    z-index: 1;
}

.result-card-attala {
    background-image: url('img/attala.png');
}

.result-card-tata {
    background-image: url('img/tata.png');
}

.result-card-csot {
    background-image: url('img/csot.png');
}

.result-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.result-icon-img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.result-place {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.95;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    margin-bottom: 6px;
}

.result-detail {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Termék ConiTrio fókusz */
.product-conitrio-focus .products-layout {
    justify-content: center;
}

.products-single .products-group {
    max-width: 480px;
}

.product-cta-btn {
    display: block;
    text-align: center;
    max-width: 320px;
    margin: 20px auto 0;
}

.product-can-wrap {
    position: relative;
}

.product-can-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(127, 175, 90, 0.32) 0%,
        rgba(143, 191, 106, 0.16) 45%,
        rgba(127, 175, 90, 0.05) 75%,
        transparent 100%);
    z-index: 0;
}

.product-can-wrap .product-can-image {
    position: relative;
    z-index: 1;
}

.product-can-large {
    width: 320px;
    max-width: 100%;
}

.product-application-inline {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.product-application-inline .application-dose,
.product-application-inline .application-combo {
    text-align: left;
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--text-dark);
}

.product-application-inline .app-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 1rem;
    vertical-align: middle;
}

.application-combo-inline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
}

.application-combo-inline .combo-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.application-combo-inline .combo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--light-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Idővonal Szekció */
.timeline-section {
    padding: 60px 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    background-image: url('img/calendar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

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

.timeline-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(127, 175, 90, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(143, 191, 106, 0.06) 0%, transparent 40%);
    background-repeat: no-repeat, no-repeat;
    background-size: 300px 300px, 300px 300px;
    background-position: 15% 25%, 85% 75%;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.section-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: var(--gray-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.timeline-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(26, 77, 26, 0.1) 15%,
        var(--light-green) 35%,
        var(--pastel-green) 45%,
        var(--light-green) 55%,
        rgba(26, 77, 26, 0.1) 65%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 80px;
}

.timeline-item.past {
    filter: grayscale(100%);
    opacity: 1;
}

.timeline-item.past.collapsed {
    margin-bottom: 12px;
}

.timeline-item.future {
    opacity: 0.6;
}

.timeline-item.future.collapsed {
    margin-bottom: 12px;
}

.timeline-item.current {
    opacity: 1;
    filter: none;
    z-index: 5;
    margin: 20px 0;
}

.timeline-dot {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gray-medium);
    border: 3px solid var(--pastel-green);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.timeline-item.past .timeline-dot {
    background: #999;
    border: 3px solid #f5f5f5;
    width: 20px;
    height: 20px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item.current .timeline-dot {
    width: 35px;
    height: 35px;
    background: var(--medium-green);
    border: 6px solid var(--white);
    box-shadow: 0 0 0 6px rgba(26, 77, 26, 0.3), 0 6px 25px rgba(26, 77, 26, 0.5);
    left: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline-item.future .timeline-dot {
    background: var(--white);
    border: 3px solid var(--gray-medium);
    border-style: dashed;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 3px solid var(--pastel-green);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite;
    z-index: 0;
    pointer-events: none;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 2px solid var(--pastel-green);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite 0.5s;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Tartalom pozicionálása - FIX MARGIN MINDEN KÁRTYÁNÁL */
.timeline-item .timeline-content {
    margin-left: 100px;
    text-align: left;
    padding: 0;
    width: calc(100% - 100px);
    max-width: none;
    position: relative;
}

.timeline-item.current .timeline-content {
    margin-left: 100px;
    width: calc(100% - 100px);
    max-width: none;
    position: relative;
}

.timeline-content {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.timeline-item.past .timeline-content {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    box-sizing: border-box;
}

.timeline-item.future .timeline-content {
    background: var(--white);
    border: 2px dashed var(--gray-medium);
    color: var(--gray-dark);
    box-sizing: border-box;
}

.timeline-item.current .timeline-content {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    box-shadow: 0 12px 40px rgba(26, 77, 26, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 30px 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.timeline-item.current .current-badge,
.timeline-item.current .timeline-icon,
.timeline-item.current .timeline-title,
.timeline-item.current .current-info {
    display: block;
}

.timeline-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    font-family: inherit;
}

.timeline-item.past .timeline-toggle {
    color: #666;
}

.timeline-item.future .timeline-toggle {
    color: var(--gray-dark);
}

.timeline-item.past .timeline-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
}

.timeline-item.future .timeline-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
}

.timeline-toggle .timeline-icon {
    font-size: 1.8rem;
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.timeline-toggle .timeline-title {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    min-width: 150px;
}

.timeline-summary {
    display: none;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 5px 0 0 0;
    flex-basis: 100%;
}

.timeline-item.collapsed .timeline-summary {
    display: block;
}

.timeline-item.collapsed .timeline-toggle {
    padding: 12px 18px;
}

.timeline-item.collapsed .timeline-toggle .timeline-icon {
    font-size: 1.5rem;
    width: 35px;
}

.timeline-item.collapsed .timeline-toggle .timeline-title {
    font-size: 1rem;
}

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.timeline-item.expanded .toggle-icon {
    transform: rotate(180deg);
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.timeline-item.expanded .timeline-details {
    max-height: 1000px;
    padding: 0 25px 20px 25px;
}

.timeline-item.current .timeline-toggle {
    display: none !important;
}

.timeline-item.current .timeline-details {
    max-height: none !important;
    padding: 0 !important;
    display: block;
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.timeline-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.timeline-item.current .timeline-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.timeline-item.current .timeline-icon img {
    width: 48px;
    height: 48px;
}

.timeline-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
}

.timeline-item.past .timeline-title {
    color: var(--gray-medium);
}

.timeline-item.future .timeline-title {
    color: var(--gray-dark);
}

.timeline-desc {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 15px 0;
}

.timeline-list li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--medium-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.current-badge {
    background: var(--white);
    color: #5A9F3A;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.current-info {
    margin-top: 20px;
}

.current-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.current-text {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.current-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.current-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.current-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--yellow);
}

.current-warning {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.benefits {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.benefits-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

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

.benefits-list li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--yellow);
}

.current-cta-wrapper {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.current-cta {
    background: var(--white);
    color: var(--dark-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.current-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.future-info {
    margin-top: 15px;
}

.future-intro {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.future-text {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.future-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.future-list li {
    padding: 5px 0;
    position: relative;
    color: var(--text-dark);
}

.future-list li::before {
    content: '•';
    position: absolute;
    left: -15px;
    font-weight: bold;
    color: var(--light-green);
}

/* Termékcsomag Szekció */
/* Megéri? Szekció */
.worth-it-section {
    padding: 40px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.worth-it-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(127, 175, 90, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(143, 191, 106, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.worth-it-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.worth-it-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.worth-it-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.worth-it-text-card {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 77, 26, 0.25);
    position: sticky;
    top: 100px;
}

.worth-it-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.worth-it-result {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.worth-it-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.product-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.worth-it-highlight {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.highlight-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
}

.highlight-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

.highlight-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 5px;
}

.worth-it-table-wrapper {
    margin-top: 25px;
    overflow-x: auto;
}

.worth-it-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.worth-it-table thead {
    background: linear-gradient(135deg, #0f3d0f 0%, #1a4d1a 50%, #2d5016 100%);
    color: var(--white);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.worth-it-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.worth-it-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.worth-it-table tbody tr:last-child td {
    border-bottom: none;
}

.worth-it-table tbody tr:hover {
    background-color: rgba(26, 77, 26, 0.03);
}

.worth-it-table tbody tr td:first-child {
    font-weight: 500;
    color: var(--gray-dark);
}

.worth-it-images {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.worth-it-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.worth-it-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.photo-card:first-of-type {
    grid-column: 1;
    grid-row: 1;
}

.worth-it-images-row-2 {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.graph-card {
    max-width: 280px;
    width: 100%;
}

.photo-card:last-of-type {
    width: 100%;
}

.worth-it-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.graph-image {
    max-height: 400px;
    object-fit: contain;
}

.photo-image {
    height: 250px;
    object-fit: cover;
}

.products {
    padding: 40px 20px;
    position: relative;
    background-image: url('img/termek-hatter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(127, 175, 90, 0.1) 70%, transparent 100%);
    z-index: 0;
}

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

.products .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.products-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.products-group {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
}

.products-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 175, 90, 0.15) 0%, rgba(143, 191, 106, 0.1) 50%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.mono-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.2) 0%, rgba(220, 220, 220, 0.1) 50%, transparent 70%);
}

.products-images {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-can-image {
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.plasma-image {
    width: 300px;
    max-width: 100%;
}

.mono-image {
    width: 180px;
    max-width: 100%;
}

.products-images:hover .product-can-image {
    transform: translateY(-5px) scale(1.02);
}

.products-text {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.products-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.products-title a {
    color: var(--dark-green);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.products-title a:hover {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
}

.products-desc {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.55;
    margin: 0;
}

.products-desc-lead {
    font-weight: 600;
    color: var(--gray-dark);
}


.product-price-compact {
    text-align: center;
    margin: 0 0 15px;
    padding: 0;
    border-top: none;
}

.price-text {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(26, 77, 26, 0.3);
}

.price-text strong {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.product-aop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.aop-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.aop-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
}

.product-cta {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0;
}


/* Form Szekció */
.form-section {
    padding: 40px 20px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-deco-bact {
    position: absolute;
    background-image: url('img/bact.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    width: 320px;
    height: 320px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: floatBact 12s ease-in-out infinite;
}

@keyframes floatBact {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    50% { transform: translateY(-50%) translate(-15px, 10px); }
}

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

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 25px) scale(1.05);
    }
}

.form-section .section-title {
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--pastel-green);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pastel-green);
    box-shadow: 0 0 0 4px rgba(127, 175, 90, 0.15), 0 2px 8px rgba(127, 175, 90, 0.1);
    transform: translateY(-1px);
}

.form-privacy {
    margin-bottom: 20px;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.privacy-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    accent-color: var(--pastel-green);
}

.privacy-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

.privacy-text a {
    color: var(--dark-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-text a:hover {
    color: var(--light-green);
}

.form-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast üzenet doboz */
.toast-message {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-message.success {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
}

.toast-message.error {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.toast-message-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.toast-message-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.toast-message-close {
    font-size: 1.15rem;
    opacity: 0.8;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.toast-message-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .toast-message {
        top: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-message.show {
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .section-cover {
        padding: 0;
        min-height: 0;
    }

    .section-cover-inner {
        padding: 28px 16px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .section-cover-logo {
        max-width: 200px;
        margin-bottom: 16px;
    }

    .section-cover-title {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .section-cover-subtitle {
        font-size: 1.15rem;
        padding-bottom: 20px;
    }
    
    .section-cover-badge {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    
    .section-cover-badge .badge-separator {
        display: none;
    }
    
    .section-cover-badge .badge-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item.current .timeline-dot {
        left: 30px;
    }

    .timeline-item .timeline-content,
    .timeline-item.current .timeline-content {
        margin-left: 60px;
        width: calc(100% - 60px);
        padding: 25px 20px;
    }

    .timeline-item.current .timeline-content {
        padding: 35px 25px;
    }

    .intro-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .intro-icon-wrapper {
        margin: 0 auto;
    }

    .intro-text-wrapper {
        text-align: left;
    }

    .intro-list li {
        padding-left: 22px;
    }

    .solution-quote {
        font-size: 1.15rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .what-is-features-grid {
        grid-template-columns: 1fr;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .intro-text-wrapper {
        text-align: center;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-text.highlight {
        font-size: 1rem;
    }

    .worth-it-section {
        padding: 60px 20px;
    }

    .worth-it-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .worth-it-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .worth-it-text-card {
        position: static;
        padding: 30px 25px;
    }

    .highlight-number {
        font-size: 2.8rem;
    }

    .worth-it-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .worth-it-images-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .graph-card {
        max-width: 100%;
    }
    
    .worth-it-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .worth-it-table {
        font-size: 0.85rem;
    }
    
    .worth-it-table th,
    .worth-it-table td {
        padding: 10px 8px;
    }

    .worth-it-images-row-2 {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .graph-card {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .photo-card:last-of-type {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .worth-it-images {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .worth-it-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .photo-image {
        height: 200px;
    }

    .products-layout {
        flex-direction: column;
        gap: 30px;
    }

    .products-plus {
        font-size: 3rem;
        margin: 10px 0;
        transform: rotate(90deg);
    }

    .products-group {
        min-width: 100%;
        max-width: 100%;
    }

    .products-circle-bg {
        width: 300px;
        height: 300px;
    }

    .mono-circle {
        width: 250px;
        height: 250px;
    }

    .product-aop {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .aop-image {
        height: 60px;
    }

    .aop-text {
        font-size: 1rem;
        text-align: center;
    }

    .products-images {
        gap: 15px;
    }

    .product-can-image {
        width: 100px;
    }

    .mono-item .product-can-image {
        width: 120px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-cover {
        padding: 0;
        min-height: 0;
    }

    .section-cover-inner {
        padding: 20px 12px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .section-cover-logo {
        max-width: 160px;
        margin-bottom: 12px;
    }

    .section-cover-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item.current {
    animation: fadeInUp 0.8s ease-out;
}

