* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Teal/Türkiz - fő szín */
    --primary: #2d6a6a;
    --primary-dark: #245555;
    --primary-light: #3d8a8a;
    
    /* Narancs - akcentus/CTA szín */
    --secondary: #f58442;
    --secondary-dark: #e06e2c;
    --secondary-light: #ff9a5a;
    
    /* Sötétkék - szöveg és sötét elemek */
    --dark: #2a3d4f;
    --dark-light: #3a5068;
    
    /* Semleges színek */
    --danger: #ef4444;
    --warning: #f59e0b;
    --gray: #5a6b7a;
    --light-gray: #d8dce0;
    --lighter-gray: #f0f1ef;
    
    /* Háttér - krémfehér */
    --white: #fdfcf8;
    --cream: #f8f7f2;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.header-phone i {
    color: var(--secondary);
}

.btn-cta {
    background: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: var(--secondary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* User Login/Menu */
.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: var(--primary);
    color: white;
}

.user-menu-wrapper {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.user-menu-btn:hover {
    background: var(--primary-dark);
}

.user-menu-btn i:first-child {
    font-size: 1.1rem;
}

.user-menu-btn i:last-child {
    font-size: 0.7rem;
    margin-left: 2px;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.user-dropdown a:hover {
    background: var(--cream);
    color: var(--primary);
}

.user-dropdown a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--light-gray);
    margin: 8px 0;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 50%, var(--light-gray) 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 50%, var(--light-gray) 100%);
    padding: 40px 20px 50px;
    text-align: center;
    border-radius: 0 0 50px 50px;
}

.calculator-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.calculator-section .subtitle {
    color: #444;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
}

.calculator-inputs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.input-group {
    text-align: center;
    min-width: 520px;
    background: white;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.input-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 106, 106, 0.3);
}

.input-group label {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.value-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.value-display span {
    color: var(--secondary);
}

.slider-container {
    width: 100%;
    padding: 15px 5px;
    position: relative;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: var(--light-gray);
    outline: none;
    position: relative;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(245, 132, 66, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 132, 66, 0.5);
}

.slider::-moz-range-thumb {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(245, 132, 66, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gray);
}

.calculate-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Quick Analysis Section */
.quick-analysis-section {
    padding: 60px 20px;
    background: var(--white);
}

.analysis-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.illustration {
    flex-shrink: 0;
    width: 180px;
    height: 380px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.person-illustration {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, var(--cream), var(--light-gray));
    border-radius: 20px;
}

.person-illustration-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.person-illustration-img.desktop-only {
    display: block;
}

.person-illustration-img.mobile-only {
    display: none;
}

.analysis-content {
    flex: 1;
}

.analysis-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.analysis-intro {
    color: var(--gray);
    margin-bottom: 25px;
}

.main-result-box {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.main-result-box p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.main-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.breakdown {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.breakdown-chart {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.breakdown-details {
    flex: 1;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: var(--lighter-gray);
    border-radius: 8px;
}

.breakdown-item .percentage {
    font-weight: 600;
    color: var(--gray);
    min-width: 50px;
}

.breakdown-item .amount {
    font-weight: 700;
    color: var(--secondary);
    min-width: 130px;
}

.breakdown-item .label {
    color: #555;
    font-size: 0.9rem;
}

.compound-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Payout Options */
.payout-options {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
}

.payout-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 30px;
}

.payout-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    min-height: 50px;
}

.payout-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.payout-card > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.comparison {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
}

.comparison-item p {
    font-size: 0.85rem;
    color: var(--gray);
    flex: 1;
}

.comparison-item span {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-item.negative {
    background: #fff5f5;
}

.comparison-item.negative span {
    color: var(--danger);
}

.comparison-item.positive {
    background: #f0fff4;
}

.comparison-item.positive span {
    color: var(--secondary);
}

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
    align-self: center;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-box p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f0f9f9;
}

/* Trust Indicators */
.trust-indicators {
    text-align: center;
    padding: 30px;
    background: var(--lighter-gray);
    border-radius: 15px;
}

.trust-indicators p {
    margin-bottom: 10px;
    color: #555;
}

.stars {
    color: #ffc107;
}

/* Detailed Analysis Section */
.detailed-analysis-section {
    padding: 60px 20px;
    background: var(--white);
}

.detailed-analysis-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.detail-block {
    margin-bottom: 50px;
}

.detail-header {
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}

.detail-content {
    display: flex;
    gap: 40px;
    padding: 30px;
    border: 1px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.detail-text {
    flex: 1;
}

.detail-chart {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
}

.small-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.highlight-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 15px 25px;
    background: rgba(45, 106, 106, 0.1);
    display: inline-block;
    border-radius: 10px;
}

.highlight-amount.green {
    color: var(--secondary);
}

.detail-text h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.detail-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.inflation-note {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.growth-illustration {
    font-size: 3rem;
}

.inflation-note p {
    color: #555;
    font-size: 0.95rem;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 60px 20px;
    background: var(--lighter-gray);
}

.lifestyle-header {
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.lifestyle-header h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lifestyle-summary {
    display: flex;
    justify-content: space-between;
}

.summary-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

.summary-item .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.lifestyle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.lifestyle-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.lifestyle-card.active {
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lifestyle-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.lifestyle-card p:last-child {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: var(--white);
}

.cta-banner {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-banner p {
    flex: 1;
    color: #333;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-form-container {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.form-illustration {
    flex-shrink: 0;
    width: 250px;
}

.advisor-illustration {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox {
    margin: 20px 0;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox a {
    color: var(--primary);
}

.features-footer {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--lighter-gray);
    border-radius: 15px;
}

.feature {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
}

.feature .icon {
    font-size: 2rem;
}

.feature p {
    font-size: 0.9rem;
    color: #333;
}

/* Blog Section */
.blog-section {
    padding: 60px 20px;
    background: var(--lighter-gray);
}

.blog-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Simple blog card - with optional SVG image */
.blog-card-simple {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card-simple .blog-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

.blog-card-simple .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-simple:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-simple .blog-content {
    padding: 25px;
}

.blog-card-simple h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-simple h3 a {
    color: var(--dark);
    text-decoration: none;
}

.blog-card-simple h3 a:hover {
    color: var(--primary);
}

.blog-card-simple .blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-image {
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 25px 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.blog-category {
    display: inline-block;
    background: rgba(45, 106, 106, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--gray);
    font-size: 0.85rem;
}

.blog-date i {
    margin-right: 5px;
    color: var(--secondary);
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.read-more:hover {
    gap: 10px;
}

.read-more i {
    font-size: 0.8rem;
}

.blog-cta {
    text-align: center;
}

/* ==================== LANDING SECTIONS ==================== */
.section-subtitle {
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 20px;
    background: var(--white);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto 30px;
}

.why-us-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-us-content li {
    background: var(--lighter-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.why-us-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: var(--lighter-gray);
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.steps-content .steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.steps-content .step {
    text-align: center;
    max-width: 280px;
}

.steps-content .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.steps-content .step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.steps-content .step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials-content .testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonials-content .testimonial {
    background: var(--lighter-gray);
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    position: relative;
}

.testimonials-content .testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonials-content .testimonial .author {
    font-weight: 600;
    color: var(--primary);
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta-banner-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-banner-section .btn-primary {
    background: var(--secondary);
    color: white;
}

.cta-banner-section .btn-primary:hover {
    background: var(--secondary-dark);
}

.no-posts {
    text-align: center;
    color: var(--gray);
    padding: 40px;
}

/* ==================== FOOTER TOP (Dynamic) ==================== */
.footer-top {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    padding: 60px 20px;
    text-align: center;
}

.footer-top h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 40px;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-text {
    display: block;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ==================== FOOTER (Fixed) ==================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 20px;
    color: var(--secondary);
    margin-right: 10px;
}

.footer-contact a,
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-phone {
        display: none;
    }
    
    .analysis-header {
        flex-direction: column;
        align-items: center;
    }
    
    .payout-options {
        flex-direction: column;
    }
    
    .or-divider {
        align-self: center;
    }
    
    .detail-content {
        flex-direction: column;
    }
    
    .detail-chart {
        width: 100%;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .form-illustration {
        display: none;
    }
    
    .footer-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .calculator-section h1 {
        font-size: 1.8rem;
    }
    
    .calculator-inputs {
        gap: 40px;
    }
    
    .breakdown {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lifestyle-summary {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .features-footer {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .steps-content .steps {
        flex-direction: column;
        align-items: center;
    }
    
    /* Gyorselemzés mobil nézet */
    .analysis-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 200px;
        margin-bottom: 20px;
    }
    
    .person-illustration-img.desktop-only {
        display: none;
    }
    
    .person-illustration-img.mobile-only {
        display: block;
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ==================== BLOG PAGE STYLES ==================== */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 50%, var(--light-gray) 100%);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-header p {
    color: #555;
    font-size: 1.1rem;
}

/* Category Filter Bar */
.category-filter-section {
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--lighter-gray);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.category-pill:hover {
    background: rgba(45, 106, 106, 0.1);
    border-color: var(--primary);
}

.category-pill.active {
    background: var(--primary);
    color: white;
}

.category-pill .count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.category-pill.active .count {
    background: rgba(255,255,255,0.3);
}

.blog-page-section {
    padding: 50px 20px;
    background: var(--lighter-gray);
}

.blog-main-full {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-main .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.category-list a:hover {
    background: var(--lighter-gray);
}

.category-list a.active {
    background: var(--primary);
    color: white;
}

.category-list a span {
    background: var(--lighter-gray);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.category-list a.active span {
    background: rgba(255,255,255,0.2);
    color: white;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-widget h4 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-widget .btn-primary {
    background: white;
    color: var(--primary);
    width: 100%;
}

.cta-widget .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 100%;
}

.no-posts-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
}

.no-posts-message i {
    font-size: 3rem;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.no-posts-message h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.no-posts-message p {
    color: var(--gray);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta i {
    margin-right: 5px;
}

/* Blog Article Page */
.blog-article {
    padding: 40px 20px 60px;
    background: var(--white);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--light-gray);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.article-category {
    display: inline-block;
    background: rgba(45, 106, 106, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 15px;
}

.article-main h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--gray);
}

.article-meta i {
    margin-right: 8px;
    color: var(--secondary);
}

.article-header-compact {
    margin-bottom: 30px;
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-featured-image-small {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 300px;
}

.article-featured-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-intro {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
    padding: 20px 25px;
    background: var(--lighter-gray);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
}

.table-of-contents h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents h4 i {
    color: var(--primary);
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.table-of-contents li a:hover {
    background: rgba(45, 106, 106, 0.1);
    color: var(--primary);
}

.table-of-contents .toc-level-3 {
    padding-left: 20px;
}

.table-of-contents .toc-level-3 a {
    font-size: 0.9rem;
    color: var(--gray);
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 35px 0 15px;
    color: var(--dark);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 12px;
    color: var(--dark);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--lighter-gray);
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-share {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    font-weight: 500;
    color: var(--dark);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }

/* Related Posts */
.related-posts-section {
    padding: 60px 20px;
    background: var(--lighter-gray);
}

.related-posts-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.related-posts-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Active nav link */
.main-nav a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .article-main h1 {
        font-size: 1.6rem;
    }
    
    .article-share {
        flex-wrap: wrap;
    }
}

/* ==================== MEGAMENU ==================== */
.has-megamenu {
    position: relative;
}

.has-megamenu > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-megamenu > a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.has-megamenu:hover > a i {
    transform: rotate(180deg);
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 25px;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.megamenu-header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.megamenu-header h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.megamenu-header p {
    font-size: 0.9rem;
    color: var(--gray);
}

.megamenu-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.megamenu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--lighter-gray);
}

.megamenu-item:hover,
.megamenu-item.active {
    background: rgba(45, 106, 106, 0.1);
}

.megamenu-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.megamenu-icon i {
    color: white;
    font-size: 1.2rem;
}

.megamenu-content h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.megamenu-content p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.megamenu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.megamenu-footer p {
    font-size: 0.9rem;
    color: var(--gray);
}

.megamenu-footer .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page-section {
    padding: 60px 20px;
    background: var(--lighter-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-card p a {
    color: var(--dark);
    text-decoration: none;
}

.contact-card p a:hover {
    color: var(--primary);
}

.contact-card small {
    color: var(--gray);
    font-size: 0.85rem;
}

.social-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

.form-message i {
    margin-right: 10px;
}

/* Trust Section */
.trust-section {
    padding: 60px 20px;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==================== ABOUT PAGE ==================== */
.about-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.about-header h1,
.about-header p {
    color: white;
}

.about-intro-section {
    padding: 80px 20px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-intro-content .lead {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-illustration {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-illustration i {
    font-size: 8rem;
    color: var(--primary);
}

.why-choose-section {
    padding: 80px 20px;
    background: var(--lighter-gray);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-section {
    padding: 80px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

.process-connector {
    width: 80px;
    height: 3px;
    background: var(--light-gray);
    margin-top: 35px;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-box .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-page-section {
    padding: 80px 20px;
    background: var(--lighter-gray);
}

.testimonials-page-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ==================== PRODUCT PAGE ==================== */
.product-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--lighter-gray) 50%, var(--light-gray) 100%);
    padding: 40px 20px 60px;
}

.product-header-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon-large i {
    font-size: 3.5rem;
    color: white;
}

.product-header-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.product-benefits-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.benefit-tag {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
}

.benefit-tag i {
    color: var(--secondary);
    margin-right: 5px;
}

.product-cta {
    display: flex;
    gap: 15px;
}

.product-content-section {
    padding: 60px 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-description h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.product-description h2:first-child {
    margin-top: 0;
}

.product-description ul {
    margin: 15px 0;
    padding-left: 25px;
}

.product-description li {
    margin-bottom: 10px;
}

.product-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list i {
    color: var(--secondary);
}

.other-products-section {
    padding: 60px 20px;
    background: var(--lighter-gray);
}

.other-products-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-link {
    color: var(--primary);
    font-weight: 500;
}

.product-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.product-card:hover .product-link i {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE MEGAMENU & NEW PAGES ==================== */
@media (max-width: 992px) {
    .megamenu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 15px;
        display: none;
    }
    
    .has-megamenu.open .megamenu {
        display: block;
    }
    
    .megamenu-products {
        grid-template-columns: 1fr;
    }
    
    .megamenu-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .product-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-benefits-inline {
        justify-content: center;
    }
    
    .product-cta {
        justify-content: center;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-filter-section {
        top: 60px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .blog-grid-full {
        grid-template-columns: 1fr;
    }
    
    .category-filter {
        gap: 8px;
    }
    
    .category-pill {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .calculator-inputs {
        gap: 30px;
    }
    
    .input-group {
        min-width: 100%;
        padding: 25px 30px;
    }
    
    .value-display {
        font-size: 2rem;
    }
}

/* ==================== SAVE BUTTON & TOAST ==================== */
.btn-save {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-save:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #ef4444;
}
