:root {
    --primary: #1e4620;
    --primary-light: #2d6a30;
    --primary-dark: #143016;
    --secondary: #e5989b;
    --accent: #8fbc8f;
    --bg-light: #f4f7f5;
    --bg-white: #ffffff;
    --text-dark: #1a1d1a;
    --text-light: #5c635c;
    --text-muted: #8d968d;
    --border-color: #e0e6e1;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.logo svg { width: 32px; height: 32px; fill: var(--primary); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { text-decoration: none; color: var(--text-light); font-weight: 500; transition: var(--transition); font-size: 0.95rem; }
nav a:hover, nav a.active { color: var(--primary); }
.nav-cta { background-color: var(--primary); color: var(--bg-white); padding: 0.6rem 1.2rem; border-radius: var(--radius); font-weight: 600; }
.nav-cta:hover { background-color: var(--primary-light); color: var(--bg-white); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.burger span { display: block; width: 25px; height: 3px; background-color: var(--primary); border-radius: 3px; transition: var(--transition); }
main { flex: 1; }
.hero { background: radial-gradient(circle at 10% 20%, rgba(30, 70, 32, 0.05) 0%, rgba(255, 255, 255, 1) 90%); padding: 6rem 2rem; }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: 3rem; font-weight: 800; color: var(--primary-dark); line-height: 1.2; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background-color: rgba(30, 70, 32, 0.1); color: var(--primary-dark); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.8rem; font-size: 1rem; font-weight: 600; border-radius: var(--radius); text-decoration: none; transition: var(--transition); cursor: pointer; }
.btn-primary { background-color: var(--primary); color: var(--bg-white); border: 1px solid var(--primary); box-shadow: var(--shadow-md); }
.btn-primary:hover { background-color: var(--primary-light); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background-color: rgba(30, 70, 32, 0.05); transform: translateY(-2px); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-svg-wrapper { width: 100%; max-width: 400px; height: auto; }
.section { padding: 5rem 2rem; }
.section-alt { background-color: var(--bg-white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.25rem; color: var(--primary-dark); margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background-color: var(--bg-white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.card-icon { width: 50px; height: 50px; background-color: rgba(30, 70, 32, 0.05); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--primary-dark); }
.card p { color: var(--text-light); font-size: 0.95rem; }
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--bg-white); padding: 5rem 2rem; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.text-content h2 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 1.5rem; }
.text-content p { color: var(--text-light); margin-bottom: 1.5rem; }
.text-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-light); }
.text-content li { margin-bottom: 0.5rem; }
.calculator-box { background-color: var(--bg-white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-color); max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }
.form-control { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border-color); border-radius: var(--radius); font-family: var(--font-sans); font-size: 1rem; background-color: var(--bg-light); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); background-color: var(--bg-white); box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.15); }
.calc-btn-wrapper { margin-top: 2rem; }
.calc-results { margin-top: 2.5rem; padding-top: 2rem; border-top: 2px dashed var(--border-color); display: none; }
.calc-results.active { display: block; animation: fadeIn 0.4s ease-out; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.result-item { background-color: var(--bg-light); padding: 1.2rem; border-radius: var(--radius); border-left: 4px solid var(--primary); }
.result-val { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-top: 0.2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info-panel { background-color: var(--primary-dark); color: var(--bg-white); padding: 3rem; border-radius: var(--radius-lg); }
.contact-info-panel h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.info-item svg { width: 24px; height: 24px; fill: var(--accent); flex-shrink: 0; }
.info-item p { opacity: 0.9; font-size: 0.95rem; }
.contact-form-panel { background-color: var(--bg-white); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 1000; }
.toast { background-color: var(--primary-dark); color: var(--bg-white); padding: 1rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-top: 10px; font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; border-left: 5px solid var(--accent); transform: translateY(100px); opacity: 0; transition: all 0.4s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.policy-box { background-color: var(--bg-white); padding: 3.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); max-width: 900px; margin: 0 auto; }
.policy-box h2 { font-size: 1.6rem; color: var(--primary-dark); margin: 2rem 0 1rem; }
.policy-box p { color: var(--text-light); margin-bottom: 1.2rem; }
footer { background-color: var(--primary-dark); color: var(--bg-white); padding: 4rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--accent); }
.footer-col p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--bg-white); text-decoration: none; opacity: 0.8; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--accent); padding-left: 4px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.7; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .two-col-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); padding: 2rem; gap: 1.5rem; box-shadow: var(--shadow-md); }
    nav.active { display: flex; animation: fadeIn 0.3s ease-out; }
    .burger { display: flex; }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
