:root {
    --bg-main: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #475569;
    --brand-green: #16a34a;
    --brand-green-dim: rgba(22, 163, 74, 0.1);
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

h1 { font-size: 4.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: 3rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p { color: var(--text-muted); margin-bottom: 1.5rem; }

strong { color: #0f172a; font-weight: 600; }
.neon-text { color: var(--brand-green); }

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

/* Utilities */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.btn-primary {
    display: inline-block;
    background: var(--brand-green);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-primary.glow-effect:hover {
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--brand-green);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--brand-green);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--brand-green-dim);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.text-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.text-logo span { color: var(--brand-green); }

.navbar nav { display: flex; gap: 2.5rem; align-items: center; }

.navbar nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar nav a:not(.btn-outline):hover { color: var(--brand-green); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0iIzAwMCIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    z-index: -1;
}

/* Hero Layout & Images */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
}
.hero-images {
    position: relative;
    width: 450px;
    height: 550px;
}
.neon-futuristic-img {
    width: 300px;
    height: 420px;
    border-radius: 32px;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.img-1 {
    top: 0; left: 0; z-index: 2;
}
.img-2 {
    bottom: 0; right: 0; z-index: 1; 
    transform: translate(20px, 40px);
}
.hero-images:hover .img-1 { transform: translateY(-15px) scale(1.02); }
.hero-images:hover .img-2 { transform: translate(35px, 25px) scale(1.02); }


/* Features */
.features { padding: 8rem 0; background: #fff; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    padding: 3.5rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); 
    border-color: var(--brand-green-dim);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: var(--brand-green-dim);
    border-radius: 20px;
    color: var(--brand-green);
}

/* Products Section */
.products-section { padding: 8rem 0; background: var(--bg-main); }
.text-center { text-align: center; }
.subtitle { font-size: 1rem; color: var(--brand-green); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 4rem; font-weight: 700; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
}

.product-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 0 auto 2rem;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-desc {
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.btn-full { width: 100%; cursor: pointer; }

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--brand-green-dim);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-green);
    margin: 0 auto;
}

.tag.bio { 
    background: rgba(22, 163, 74, 0.1); 
    color: #16a34a; 
}


/* --- Nowe Sekcje: O Firmie & Efekty --- */
.company-section { padding: 8rem 0; text-align: center; background: #fff; }
.company-content { padding: 5rem 4rem; max-width: 900px; margin: 0 auto; text-align: center; background: #f8fafc; border: none; }
.company-content h2 { color: #0f172a; margin-bottom: 2rem; font-size: 3rem; }
.company-content p { font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.results-section { padding: 8rem 0; background: #fff;}
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; margin-top: 4rem; }
.result-card { border-radius: 24px; overflow: hidden; padding: 0; background: #fff; transition: transform 0.4s ease; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); }
.result-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); }
.result-img-wrapper { position: relative; width: 100%; height: 280px; overflow: hidden; }
.result-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.result-card:hover .result-img { transform: scale(1.05); }
.result-tag { position: absolute; top: 1.5rem; right: 1.5rem; background: #fff; color: var(--brand-green); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 800; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 2; }
.result-info { padding: 2.5rem; }
.result-info h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #0f172a; }


/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 650px;
    padding: 3.5rem 3rem 3rem;
    background: #ffffff;
    border-radius: 24px;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover { color: var(--text-main); }

.modal-header { border-bottom: 1px solid #e2e8f0; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.modal-header h2 { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 1rem; color: #0f172a; }
.modal-header p { color: var(--brand-green); margin-bottom: 0; font-weight: 700; font-size: 1.1rem; }
.modal-body h3 { font-size: 1.2rem; color: #0f172a; margin: 2rem 0 1rem; }
.modal-body ul { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
.modal-body ul li { margin-bottom: 0.8rem; }
.modal-body p { margin-bottom: 1.5rem; color: var(--text-muted); line-height: 1.8; }

/* Contact */
.contact-section { padding: 8rem 0; text-align: center; background: var(--bg-main); }

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 3.5rem;
    text-align: left;
    background: #ffffff;
}

.input-group { margin-bottom: 1.5rem; }

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #0f172a;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    background: #fff;
    box-shadow: 0 0 0 4px var(--brand-green-dim);
}

.company-details {
    margin-top: 4rem; 
    text-align: left; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem; 
    padding: 3rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.company-details h3 {
    color: var(--brand-green);
    font-size: 1.2rem;
}

/* Synergy Section */
.synergy-section { padding: 8rem 0; background: #fff; }
.synergy-content { max-width: 900px; margin: 0 auto; }
.synergy-content h2 { text-align: center; margin-bottom: 3rem; }
.synergy-block { background: var(--bg-main); padding: 3rem; border-radius: 24px; margin-bottom: 3rem; border: 1px solid var(--glass-border); }
.synergy-block h3 { color: var(--brand-green); margin-top: 2rem; margin-bottom: 1rem; }
.synergy-block h4 { font-size: 1.2rem; color: #0f172a; margin-top: 1.5rem; }
.synergy-block p { color: var(--text-main); }
.synergy-block .practice-box { background: #fff; padding: 1.5rem; border-left: 4px solid var(--brand-green); border-radius: 0 12px 12px 0; margin-top: 1rem; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }

/* Data Table */
.table-container { overflow-x: auto; margin-top: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 16px; }
.styled-table { width: 100%; border-collapse: collapse; background: #fff; text-align: left; }
.styled-table th, .styled-table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid #e2e8f0; color: var(--text-main); }
.styled-table th { background-color: var(--brand-green); color: #fff; font-weight: 700; }
.styled-table tbody tr:last-of-type { border-bottom: 2px solid var(--brand-green); }
.styled-table tbody tr:hover { background-color: #f8fafc; }

/* Silage Section */
.silage-section { padding: 8rem 0; background: var(--bg-main); }
.silage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; margin-top: 4rem; }
.silage-text-block { background: #fff; padding: 2.5rem; border-radius: 24px; margin-bottom: 2rem; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); }
.silage-text-block h3 { color: var(--brand-green); font-size: 1.4rem; margin-bottom: 0.5rem; }
.silage-text-block h4 { color: #0f172a; margin-top: 1rem; font-size: 1.1rem; }
.silage-text-block p { margin-bottom: 0; color: var(--text-main); }
.silage-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: sticky; top: 120px; }
.silage-images-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.4s ease; aspect-ratio: 1/1; }
.silage-images-grid img:hover { transform: scale(1.05); z-index: 2; position: relative; }

/* Map Container & Contact Cards */
.map-container { width: 100%; height: 350px; border-radius: 24px; overflow: hidden; margin-top: 4rem; box-shadow: var(--glass-shadow); border: 1px solid var(--glass-border); }
.map-container iframe { width: 100%; height: 100%; border: none; }

.advisors-section { margin-top: 4rem; text-align: left; }
.advisors-section > h3 { text-align: center; margin-bottom: 2rem; color: #0f172a; }
.advisor-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.advisor-card { background: #fff; padding: 2rem; border-radius: 20px; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; }
.advisor-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px -10px rgba(0,0,0,0.1); border-color: var(--brand-green-dim); }
.advisor-card h4 { color: #0f172a; margin-bottom: 0.5rem; font-size: 1.2rem; }
.advisor-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.advisor-card a { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--brand-green); color: #fff; text-decoration: none; padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 700; transition: background 0.3s; }
.advisor-card a:hover { background: #15803d; }

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

/* Animations */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-layout { flex-direction: column; text-align: center; justify-content: center; padding-top: 5rem;}
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-images { display: none; }
    .silage-layout { grid-template-columns: 1fr; }
    .silage-images { position: static; }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    
    /* Mobile Menu */
    .menu-toggle { display: flex; flex-direction: column; cursor: pointer; z-index: 1001; }
    .menu-toggle span { background: #0f172a; width: 30px; height: 3px; margin: 4px; border-radius: 2px; transition: 0.3s; }
    .navbar nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .navbar nav.active { display: flex; }
    .navbar nav a { margin: 1rem 0; font-size: 1.1rem; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none; }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
    text-decoration: none;
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}
.floating-cta:hover { transform: scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* FAQ Accordion */
.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-green);
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 99999;
    border-top: 1px solid rgba(255,255,255,0.1);
}


/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader-content { text-align: center; }
.loader-logo { height: 80px; margin-bottom: 2rem; animation: pulse 2s infinite; }
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--brand-green);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trust Badges */
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-main);
}


/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 5%;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.calc-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
}
.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.calc-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--brand-green);
    background: transparent;
    color: var(--brand-green);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.calc-tab.active {
    background: var(--brand-green);
    color: #fff;
}
.slider-container {
    margin-bottom: 3rem;
}
.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.calc-info-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.calc-info-box h4 {
    margin-top: 0;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
.calc-results {
    background: linear-gradient(135deg, var(--brand-green-dim) 0%, var(--brand-green) 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}
.calc-result-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.calc-result-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.calc-result-sub {
    font-size: 1rem;
    opacity: 0.9;
}
.calc-result-value.money {
    color: #fef08a; /* Soft yellow for money */
}
@media (max-width: 768px) {
    .calc-container { padding: 1.5rem; }
    .calc-result-value { font-size: 2rem; }
}
