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

:root {
--forest: #1a4d2e;
--sage: #4f7942;
--cream: #faf8f3;
--charcoal: #2c2c2c;
}

body {
font-family: 'Space Grotesk', sans-serif;
color: var(--charcoal);
line-height: 1.6;
font-size: 15px;
background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', sans-serif;
font-weight: 600;
line-height: 1.3;
color: var(--forest);
}

h1 {
font-size: 3rem;
}

h2 {
font-size: 2.2rem;
}

h3 {
font-size: 1.4rem;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--charcoal);
color: var(--cream);
padding: 15px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--cream);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--sage);
color: var(--cream);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.header {
background: var(--cream);
padding: 20px 0;
position: relative;
border-bottom: 1px solid rgba(26, 77, 46, 0.1);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Sora', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--forest);
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
z-index: 1000;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--forest);
margin: 4px 0;
transition: 0.3s;
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
color: var(--charcoal);
font-size: 15px;
font-weight: 500;
padding: 8px 0;
position: relative;
}

.nav a:hover,
.nav a.active {
color: var(--forest);
}

.nav a.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--sage);
}

.hero-modern {
position: relative;
padding: 80px 0;
overflow: hidden;
background: linear-gradient(135deg, var(--cream) 0%, #f0ede5 100%);
}

.hero-bg {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(135deg, rgba(79, 121, 66, 0.05) 0%, rgba(26, 77, 46, 0.08) 100%);
z-index: 0;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-block;
background: var(--sage);
color: var(--cream);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
}

.hero-text h1 {
margin-bottom: 20px;
line-height: 1.2;
}

.hero-text p {
font-size: 1.1rem;
margin-bottom: 30px;
color: var(--charcoal);
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
font-weight: 500;
font-size: 15px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: var(--forest);
color: var(--cream);
}

.btn-primary:hover {
background: var(--sage);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(26, 77, 46, 0.2);
}

.btn-secondary {
background: transparent;
color: var(--forest);
border-color: var(--forest);
}

.btn-secondary:hover {
background: var(--forest);
color: var(--cream);
}

.btn-outline {
background: transparent;
color: var(--sage);
border-color: var(--sage);
}

.btn-outline:hover {
background: var(--sage);
color: var(--cream);
}

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2rem;
color: var(--forest);
font-family: 'Sora', sans-serif;
}

.stat-item span {
font-size: 13px;
color: var(--charcoal);
}

.hero-image {
position: relative;
}

.image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(26, 77, 46, 0.15);
}

.image-wrapper img {
width: 100%;
height: auto;
display: block;
}

.floating-card {
position: absolute;
bottom: 30px;
left: 30px;
background: var(--cream);
padding: 20px 25px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 15px;
}

.card-icon {
font-size: 2rem;
}

.floating-card strong {
display: block;
color: var(--forest);
font-size: 16px;
margin-bottom: 2px;
}

.floating-card p {
margin: 0;
font-size: 13px;
color: var(--charcoal);
}

.section-label {
display: inline-block;
color: var(--sage);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

.philosophy {
padding: 80px 0;
background: var(--cream);
}

.philosophy-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.philosophy-content h2 {
margin-bottom: 20px;
}

.philosophy-content > p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 50px;
color: var(--charcoal);
}

.philosophy-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
text-align: left;
}

.philosophy-item h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.philosophy-item p {
font-size: 14px;
line-height: 1.7;
}

.featured-plants {
padding: 80px 0;
background: #f5f2ed;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}

.section-header h2 {
margin-bottom: 15px;
}

.section-header p {
font-size: 1.05rem;
color: var(--charcoal);
}

.plants-showcase {
display: flex;
flex-direction: column;
gap: 80px;
}

.plant-feature {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.plant-feature.reverse {
direction: rtl;
}

.plant-feature.reverse > * {
direction: ltr;
}

.plant-img {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(26, 77, 46, 0.12);
}

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

.plant-tag {
position: absolute;
top: 20px;
right: 20px;
background: var(--forest);
color: var(--cream);
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.plant-details h3 {
margin-bottom: 5px;
font-size: 1.8rem;
}

.plant-subtitle {
color: var(--sage);
font-size: 14px;
margin-bottom: 15px;
font-style: italic;
}

.plant-details > p {
margin-bottom: 20px;
line-height: 1.7;
}

.plant-features {
list-style: none;
margin-bottom: 25px;
}

.plant-features li {
padding: 8px 0;
padding-left: 25px;
position: relative;
font-size: 14px;
}

.plant-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--sage);
font-weight: bold;
}

.plant-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid rgba(26, 77, 46, 0.1);
}

.price {
font-size: 2rem;
font-weight: 700;
color: var(--forest);
font-family: 'Sora', sans-serif;
}

.benefits-modern {
padding: 80px 0;
background: var(--cream);
}

.benefits-wrapper {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 60px;
align-items: start;
}

.benefits-text h2 {
margin-bottom: 15px;
}

.benefits-text p {
line-height: 1.7;
}

.benefits-list {
display: flex;
flex-direction: column;
gap: 30px;
}

.benefit-modern {
display: flex;
gap: 25px;
}

.benefit-number {
font-size: 3rem;
font-weight: 700;
color: var(--sage);
font-family: 'Sora', sans-serif;
opacity: 0.3;
line-height: 1;
}

.benefit-content h3 {
margin-bottom: 8px;
font-size: 1.3rem;
}

.benefit-content p {
font-size: 14px;
line-height: 1.7;
}

.process {
padding: 80px 0;
background: #f5f2ed;
text-align: center;
}

.process h2 {
margin-bottom: 60px;
}

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.process-step {
position: relative;
}

.step-number {
width: 60px;
height: 60px;
background: var(--forest);
color: var(--cream);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 20px;
font-family: 'Sora', sans-serif;
}

.process-step h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.process-step p {
font-size: 14px;
line-height: 1.6;
}

.testimonials {
padding: 80px 0;
background: var(--cream);
text-align: center;
}

.testimonials h2 {
margin-bottom: 60px;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--cream);
padding: 30px;
border-radius: 12px;
border: 2px solid rgba(26, 77, 46, 0.1);
text-align: left;
}

.testimonial-card p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--forest);
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 13px;
color: var(--sage);
}

.commitment {
padding: 80px 0;
background: var(--forest);
color: var(--cream);
text-align: center;
}

.commitment-content {
max-width: 700px;
margin: 0 auto;
}

.commitment h2 {
color: var(--cream);
margin-bottom: 20px;
}

.commitment p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 30px;
}

.footer {
background: var(--charcoal);
color: var(--cream);
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 14px;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 13px;
color: var(--cream);
}

.footer-links a:hover {
color: var(--sage);
}

@media (max-width: 968px) {
h1 {
font-size: 2.5rem;
}

h2 {
font-size: 1.9rem;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-modern {
padding: 60px 0;
}

.hero-bg {
width: 100%;
height: 40%;
top: auto;
bottom: 0;
}

.philosophy-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.plant-feature,
.plant-feature.reverse {
grid-template-columns: 1fr;
direction: ltr;
}

.benefits-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.process-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--cream);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
display: none;
gap: 15px;
border-top: 1px solid rgba(26, 77, 46, 0.1);
z-index: 999;
}

.nav.active {
display: flex;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

.hero-buttons {
flex-direction: column;
}

.hero-buttons a {
width: 100%;
text-align: center;
}

.floating-card {
bottom: 15px;
left: 15px;
padding: 15px 20px;
}

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

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.4rem;
}

h3 {
font-size: 1.1rem;
}

body {
font-size: 14px;
}

.hero-modern {
padding: 40px 0;
}

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 1.5rem;
}

.philosophy,
.featured-plants,
.benefits-modern,
.process,
.testimonials,
.commitment {
padding: 50px 0;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 24px;
font-size: 14px;
}

.plant-details h3 {
font-size: 1.4rem;
}

.price {
font-size: 1.5rem;
}

.benefit-number {
font-size: 2rem;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}
}

@media (max-width: 360px) {
h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.3rem;
}

.logo {
font-size: 1.1rem;
}

.hero-badge {
font-size: 12px;
padding: 5px 12px;
}

.section-label {
font-size: 12px;
}

.step-number {
width: 50px;
height: 50px;
font-size: 1.2rem;
}
}

.contact-form-wrapper {
max-width: 800px;
margin: 0 auto;
}

.contact-form-modern {
background: var(--cream);
padding: 40px;
border-radius: 16px;
border: 2px solid rgba(26, 77, 46, 0.1);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: var(--forest);
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid rgba(26, 77, 46, 0.1);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
transition: border-color 0.3s ease;
background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--sage);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label span {
line-height: 1.6;
}

.checkbox-label a {
color: var(--sage);
text-decoration: underline;
}

.contact-form-modern button {
width: 100%;
padding: 14px;
background: var(--forest);
color: var(--cream);
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s ease;
}

.contact-form-modern button:hover {
background: var(--sage);
}

.map-container-modern {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(26, 77, 46, 0.1);
margin-top: 30px;
}

@media (max-width: 768px) {
.form-row {
grid-template-columns: 1fr;
}

.contact-form-modern {
padding: 30px 25px;
}
}

@media (max-width: 480px) {
.contact-form-modern {
padding: 25px 20px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.2rem;
}

body {
font-size: 13px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 20px;
font-size: 13px;
}

.floating-card {
padding: 12px 15px;
gap: 10px;
}

.card-icon {
font-size: 1.5rem;
}

.floating-card strong {
font-size: 14px;
}

.floating-card p {
font-size: 12px;
}
}
