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

:root {
--primary: #1a4d2e;
--secondary: #4f7942;
--accent: #d4a574;
--tertiary: #faf3e0;
--text: #2d3e2c;
--white: #ffffff;
}

body {
font-family: 'Outfit', sans-serif;
color: var(--text);
line-height: 1.6;
font-size: 15px;
}

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

.header {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: relative;
z-index: 100;
}

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

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 600;
color: var(--primary);
text-decoration: none;
}

.nav ul {
display: flex;
list-style: none;
gap: 25px;
}

.nav a {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 400;
transition: color 0.3s;
}

.nav a:hover {
color: var(--secondary);
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--primary);
transition: 0.3s;
}

.mega-hero {
padding: 100px 0 80px;
background: var(--tertiary);
position: relative;
overflow: hidden;
}

.hero-bg-shape {
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
opacity: 0.05;
}

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

.mega-hero-content {
max-width: 550px;
}

.hero-badge {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
}

.mega-hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
line-height: 1.2;
color: var(--primary);
margin-bottom: 20px;
}

.mega-hero-content > p {
font-size: 17px;
color: var(--text);
margin-bottom: 30px;
line-height: 1.7;
}

.hero-stats {
display: flex;
gap: 30px;
margin-bottom: 35px;
}

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

.stat-item strong {
font-size: 28px;
font-weight: 700;
color: var(--primary);
}

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

.mega-hero-image {
position: relative;
}

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

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

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

.float-icon {
font-size: 32px;
}

.hero-float-card strong {
display: block;
font-size: 15px;
color: var(--primary);
}

.hero-float-card small {
font-size: 12px;
color: var(--text);
}

.btn-primary {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-hero {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 16px 36px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-hero:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(26,77,46,0.3);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 16px 36px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--primary);
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--primary);
color: var(--white);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--primary);
transition: all 0.3s;
}

.btn-secondary:hover {
background: var(--primary);
color: var(--white);
}

.trust-bar {
background: var(--white);
padding: 25px 0;
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}

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

.trust-item {
display: flex;
align-items: center;
gap: 10px;
}

.trust-item span {
color: var(--secondary);
font-size: 20px;
font-weight: 700;
}

.trust-item p {
font-size: 14px;
color: var(--text);
margin: 0;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header.center {
text-align: center;
}

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

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
color: var(--primary);
margin-bottom: 15px;
}

.section-header p {
font-size: 16px;
color: var(--text);
max-width: 600px;
margin: 0 auto;
}

.featured-collection {
padding: 80px 0;
background: var(--white);
}

.collection-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
}

.collection-card {
background: var(--tertiary);
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s;
}

.collection-card:hover {
transform: translateY(-8px);
}

.card-image-placeholder {
height: 240px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
}

.plant-emoji {
font-size: 80px;
}

.card-content {
padding: 25px;
}

.card-content h3 {
font-size: 22px;
color: var(--primary);
margin-bottom: 12px;
}

.card-content p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
margin-bottom: 15px;
}

.card-meta {
display: flex;
gap: 10px;
flex-wrap: wrap;
}

.difficulty,
.light {
font-size: 11px;
padding: 5px 12px;
border-radius: 12px;
font-weight: 600;
}

.difficulty.easy {
background: #d4edda;
color: #155724;
}

.difficulty.medium {
background: #fff3cd;
color: #856404;
}

.light.low {
background: #e2e3e5;
color: #383d41;
}

.light.medium {
background: #d1ecf1;
color: #0c5460;
}

.light.high {
background: #f8d7da;
color: #721c24;
}

.story-section {
padding: 80px 0;
background: var(--white);
}

.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.story-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
color: var(--primary);
margin-bottom: 20px;
margin-top: 10px;
}

.story-content p {
font-size: 15px;
line-height: 1.8;
color: var(--text);
margin-bottom: 18px;
}

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

.benefits-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 35px;
}

.benefit-modern {
background: var(--white);
padding: 35px;
border-radius: 16px;
text-align: center;
transition: transform 0.3s;
}

.benefit-modern:hover {
transform: translateY(-5px);
}

.benefit-icon {
font-size: 48px;
margin-bottom: 20px;
}

.benefit-modern h3 {
font-size: 20px;
color: var(--primary);
margin-bottom: 12px;
}

.benefit-modern p {
font-size: 14px;
color: var(--text);
line-height: 1.7;
}

.process-section {
padding: 80px 0;
background: var(--white);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
margin-top: 50px;
}

.process-step {
text-align: center;
position: relative;
}

.step-number {
width: 60px;
height: 60px;
background: var(--accent);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 20px;
}

.process-step h3 {
font-size: 19px;
color: var(--primary);
margin-bottom: 10px;
}

.process-step p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.testimonials {
padding: 80px 0;
background: var(--tertiary);
}

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

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 16px;
}

.stars {
color: var(--accent);
font-size: 18px;
margin-bottom: 15px;
}

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

.testimonial-author strong {
display: block;
color: var(--primary);
font-size: 15px;
margin-bottom: 3px;
}

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

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
text-align: center;
}

.final-cta-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 40px;
margin-bottom: 15px;
}

.final-cta-content p {
font-size: 17px;
margin-bottom: 35px;
opacity: 0.95;
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.cta-buttons .btn-hero {
background: var(--white);
color: var(--primary);
}

.cta-buttons .btn-outline {
border-color: var(--white);
color: var(--white);
}

.cta-buttons .btn-outline:hover {
background: var(--white);
color: var(--primary);
}

.footer {
background: var(--primary);
color: var(--white);
padding: 25px 0;
font-size: 13px;
}

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

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

.footer-links a {
color: var(--white);
text-decoration: none;
opacity: 0.85;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

.page-hero {
background: var(--primary);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 16px;
opacity: 0.9;
}

.products {
padding: 60px 0;
}

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

.product-card {
background: var(--white);
border: 1px solid #e5e5e5;
border-radius: 16px;
overflow: hidden;
transition: box-shadow 0.3s;
}

.product-card:hover {
box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-image-wrapper {
width: 100%;
height: 350px;
background: var(--tertiary);
overflow: hidden;
}

.product-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-content {
padding: 30px;
}

.product-card h3 {
font-size: 24px;
color: var(--primary);
margin-bottom: 15px;
}

.product-description {
font-size: 14px;
color: var(--text);
margin-bottom: 20px;
line-height: 1.7;
}

.product-details {
display: flex;
justify-content: flex-start;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.product-size,
.product-care,
.product-light {
font-size: 11px;
background: var(--tertiary);
padding: 6px 14px;
border-radius: 12px;
color: var(--primary);
font-weight: 600;
}

.product-price {
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.why-choose {
padding: 70px 0;
background: var(--tertiary);
}

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

.reason-item {
background: var(--white);
padding: 30px;
border-radius: 16px;
text-align: center;
}

.reason-icon {
font-size: 42px;
margin-bottom: 15px;
}

.reason-item h4 {
font-size: 18px;
color: var(--primary);
margin-bottom: 10px;
}

.reason-item p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.care-intro {
padding: 70px 0;
background: var(--white);
}

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

.care-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.care-content p {
font-size: 16px;
margin-bottom: 30px;
line-height: 1.7;
}

.care-guide {
padding: 70px 0;
background: var(--white);
}

.guide-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
}

.guide-card {
background: var(--tertiary);
border-radius: 16px;
padding: 35px;
}

.guide-icon {
font-size: 48px;
margin-bottom: 20px;
}

.guide-card h3 {
font-size: 21px;
color: var(--primary);
margin-bottom: 15px;
}

.guide-card p {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.7;
}

.tips-list {
list-style: none;
padding: 0;
}

.tips-list li {
font-size: 13px;
padding: 10px 0;
padding-left: 25px;
position: relative;
line-height: 1.6;
}

.tips-list li:before {
content: "✓";
color: var(--secondary);
font-weight: bold;
position: absolute;
left: 0;
}

.common-problems {
padding: 70px 0;
background: var(--tertiary);
}

.problems-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.problem-item {
background: var(--white);
padding: 30px;
border-radius: 16px;
}

.problem-item h4 {
font-size: 17px;
color: var(--primary);
margin-bottom: 15px;
}

.problem-item p {
font-size: 14px;
color: var(--text);
line-height: 1.7;
}

.problem-item strong {
color: var(--primary);
}

.seasonal-care {
padding: 70px 0;
background: var(--white);
}

.seasonal-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.season-card {
background: var(--tertiary);
border-radius: 16px;
padding: 35px;
}

.season-card h3 {
font-size: 22px;
color: var(--primary);
margin-bottom: 15px;
}

.season-card p {
font-size: 14px;
color: var(--text);
margin-bottom: 20px;
line-height: 1.7;
}

.help-cta {
padding: 70px 0;
background: var(--tertiary);
text-align: center;
}

.help-cta .cta-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
color: var(--primary);
margin-bottom: 15px;
}

.help-cta .cta-content p {
font-size: 16px;
margin-bottom: 30px;
}

.contact-section {
padding: 70px 0;
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info-box h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
color: var(--primary);
margin-bottom: 15px;
}

.contact-info-box > p {
font-size: 15px;
margin-bottom: 35px;
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.contact-icon {
font-size: 28px;
margin-top: 3px;
}

.contact-item h4 {
font-size: 17px;
color: var(--primary);
margin-bottom: 8px;
}

.contact-item p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.contact-item small {
font-size: 12px;
color: var(--text);
opacity: 0.8;
}

.contact-form-box {
background: var(--tertiary);
padding: 40px;
border-radius: 16px;
}

.contact-form-box h3 {
font-size: 24px;
color: var(--primary);
margin-bottom: 25px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 14px;
font-weight: 600;
color: var(--primary);
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 14px;
border: 1px solid #d0d0d0;
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: border-color 0.3s;
background: var(--white);
}

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

.checkbox-group {
margin-top: 5px;
}

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

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

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

.map-section {
padding: 70px 0;
background: var(--tertiary);
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
color: var(--primary);
text-align: center;
margin-bottom: 35px;
}

.map-container {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.thankyou-section,
.error-section {
padding: 80px 0;
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon,
.error-icon {
font-size: 70px;
color: var(--secondary);
margin-bottom: 25px;
}

.thankyou-content h1,
.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
color: var(--primary);
margin-bottom: 15px;
}

.error-content h1 {
font-size: 60px;
margin-bottom: 10px;
}

.error-content h2 {
font-size: 26px;
color: var(--primary);
margin-bottom: 15px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
margin-bottom: 30px;
color: var(--text);
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-hero {
background: var(--primary);
color: var(--white);
padding: 50px 0;
text-align: center;
}

.policy-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 10px;
}

.policy-hero p {
font-size: 14px;
opacity: 0.85;
}

.policy-content {
padding: 60px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 26px;
color: var(--primary);
margin-top: 35px;
margin-bottom: 15px;
}

.policy-text h3 {
font-size: 20px;
color: var(--primary);
margin-top: 25px;
margin-bottom: 12px;
}

.policy-text h4 {
font-size: 17px;
color: var(--primary);
margin-top: 20px;
margin-bottom: 10px;
}

.policy-text p {
font-size: 14px;
margin-bottom: 15px;
line-height: 1.7;
}

.policy-text ul {
margin-left: 25px;
margin-bottom: 15px;
}

.policy-text li {
font-size: 14px;
margin-bottom: 8px;
}

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

.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 {
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.btn-accept {
background: var(--secondary);
color: var(--white);
padding: 10px 24px;
border: none;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.btn-accept:hover {
background: var(--primary);
}

.privacy-buttons a {
color: var(--white);
font-size: 13px;
text-decoration: underline;
}

@media (max-width: 768px) {
.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav.active {
display: block;
}

.nav ul {
flex-direction: column;
padding: 20px;
gap: 15px;
}

.menu-toggle {
display: flex;
}

.mega-hero {
padding: 60px 0 50px;
}

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

.mega-hero-content h1 {
font-size: 36px;
}

.hero-stats {
gap: 20px;
}

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

.story-grid,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.collection-grid,
.benefits-grid-modern,
.process-steps,
.testimonials-grid,
.products-grid,
.reasons-grid,
.guide-grid,
.problems-grid,
.seasonal-grid {
grid-template-columns: 1fr;
}

.trust-items {
flex-direction: column;
align-items: flex-start;
}

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

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

.thankyou-section,
.error-section {
padding: 50px 0;
}

.thankyou-content h1,
.error-content h2 {
font-size: 24px;
}

.error-content h1 {
font-size: 48px;
}

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

.privacy-buttons {
flex-direction: column;
width: 100%;
}

.btn-accept {
width: 100%;
}
}

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

.mega-hero {
padding: 40px 0 30px;
}

.mega-hero-content h1 {
font-size: 28px;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

.section-header h2 {
font-size: 28px;
}

.final-cta-content h2 {
font-size: 30px;
}

.story-content h2 {
font-size: 28px;
}

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

.cta-buttons .btn-hero,
.cta-buttons .btn-outline {
width: 100%;
}
}

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

.hero {
padding: 50px 0;
}

.hero-content h1 {
font-size: 26px;
}

.page-hero h1 {
font-size: 28px;
}

.about-text h2,
.popular h2,
.benefits h2,
.why-choose h2,
.care-content h2,
.common-problems h2,
.seasonal-care h2,
.map-section h2,
.policy-text h2 {
font-size: 24px;
}

.cta-content h2 {
font-size: 26px;
}

.contact-form-box {
padding: 25px;
}

.thankyou-icon,
.error-icon {
font-size: 50px;
}
}
