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

:root {
--primary: #2d5a3d;
--secondary: #7fb069;
--accent: #f4a261;
--neutral: #f8f9fa;
--dark: #1a1a1a;
--gray: #6c757d;
--white: #ffffff;
}

body {
font-family: 'Sora', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
}

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.2rem;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
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 {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 200px;
}

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

.privacy-actions a {
color: var(--accent);
text-decoration: none;
font-size: 13px;
}

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

.header {
background: var(--white);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
text-decoration: none;
}

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

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

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

.nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: 0.3s;
padding: 8px 0;
position: relative;
}

.nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: 0.3s;
}

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

.nav a:hover::after {
width: 100%;
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(127, 176, 105, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(244, 162, 97, 0.2) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
padding: 60px 0;
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 8px 20px;
border-radius: 30px;
font-size: 12px;
font-weight: 600;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 25px;
line-height: 1.1;
}

.highlight {
color: var(--accent);
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-hero-primary {
background: var(--accent);
color: var(--dark);
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: 0.3s;
display: inline-block;
}

.btn-hero-primary:hover {
background: #e89451;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(244, 162, 97, 0.3);
}

.btn-hero-secondary {
background: transparent;
color: var(--white);
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--white);
transition: 0.3s;
display: inline-block;
}

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

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

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

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

.stat-item span {
font-size: 13px;
opacity: 0.9;
}

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

.section-label {
display: inline-block;
background: var(--neutral);
color: var(--primary);
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
margin-bottom: 15px;
color: var(--primary);
}

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

section {
padding: 80px 0;
}

.features-modern {
background: var(--white);
}

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

.feature-modern {
background: var(--neutral);
padding: 35px;
border-radius: 12px;
transition: 0.3s;
}

.feature-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
font-size: 2.5rem;
margin-bottom: 20px;
display: block;
}

.feature-modern h3 {
margin-bottom: 15px;
color: var(--primary);
}

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

.showcase {
background: var(--neutral);
}

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

.showcase-content h2 {
margin-bottom: 20px;
color: var(--primary);
}

.showcase-content p {
margin-bottom: 25px;
color: var(--gray);
line-height: 1.7;
}

.showcase-list {
list-style: none;
margin-bottom: 30px;
}

.showcase-list li {
padding: 12px 0;
padding-left: 30px;
position: relative;
color: var(--dark);
}

.showcase-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary);
font-weight: 700;
font-size: 18px;
}

.showcase-image {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

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

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
}

.workflow-modern {
background: var(--white);
}

.workflow-timeline {
max-width: 900px;
margin: 0 auto;
}

.timeline-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
margin-bottom: 40px;
}

.timeline-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
}

.timeline-content h3 {
margin-bottom: 12px;
color: var(--primary);
}

.timeline-content p {
color: var(--gray);
line-height: 1.7;
}

.integration-modern {
background: var(--neutral);
}

.integration-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}

.integration-card {
background: var(--white);
padding: 30px 20px;
border-radius: 8px;
text-align: center;
font-weight: 600;
color: var(--primary);
transition: 0.3s;
border: 2px solid transparent;
}

.integration-card:hover {
border-color: var(--secondary);
transform: translateY(-3px);
}

.testimonials-modern {
background: var(--white);
}

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

.testimonial-modern {
background: var(--neutral);
padding: 35px;
border-radius: 12px;
}

.testimonial-text {
margin-bottom: 25px;
}

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

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

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

.pricing-preview {
background: var(--neutral);
}

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

.pricing-text h2 {
margin-bottom: 20px;
color: var(--primary);
}

.pricing-text p {
margin-bottom: 25px;
color: var(--gray);
line-height: 1.7;
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
}

.pricing-features li {
padding: 10px 0;
padding-left: 30px;
position: relative;
color: var(--dark);
}

.pricing-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary);
font-weight: 700;
font-size: 18px;
}

.pricing-visual {
display: flex;
flex-direction: column;
gap: 20px;
}

.pricing-card-preview {
background: var(--white);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 2px solid transparent;
transition: 0.3s;
}

.pricing-card-preview.featured {
border-color: var(--secondary);
transform: scale(1.05);
}

.price-tag {
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.pricing-card-preview p {
font-size: 13px;
color: var(--gray);
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 80px 0;
}

.cta-box {
text-align: center;
color: var(--white);
max-width: 700px;
margin: 0 auto;
}

.cta-box h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

.cta-box p {
font-size: 1.1rem;
margin-bottom: 35px;
opacity: 0.95;
}

.btn-cta {
background: var(--accent);
color: var(--dark);
padding: 16px 40px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 16px;
transition: 0.3s;
display: inline-block;
}

.btn-cta:hover {
background: #e89451;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}

.products-modern {
background: var(--white);
}

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

.product-modern {
background: var(--neutral);
border-radius: 12px;
overflow: hidden;
transition: 0.3s;
}

.product-modern:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image-modern {
width: 100%;
height: 300px;
overflow: hidden;
}

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

.product-details {
padding: 30px;
}

.product-details h3 {
margin-bottom: 15px;
color: var(--primary);
font-size: 1.4rem;
}

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

.product-meta {
display: flex;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.product-meta span {
font-size: 13px;
color: var(--dark);
background: var(--white);
padding: 6px 12px;
border-radius: 6px;
}

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

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--accent);
font-family: 'Space Grotesk', sans-serif;
}

.btn-product {
background: var(--primary);
color: var(--white);
padding: 10px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: 0.3s;
}

.btn-product:hover {
background: var(--secondary);
}

.benefits-modern {
background: var(--neutral);
}

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

.benefit-modern {
background: var(--white);
padding: 35px;
border-radius: 12px;
text-align: center;
}

.benefit-icon {
font-size: 2.5rem;
margin-bottom: 20px;
display: block;
}

.benefit-modern h3 {
margin-bottom: 15px;
color: var(--primary);
}

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

.care-intro {
background: var(--white);
}

.care-intro-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.care-intro-text h2 {
margin-bottom: 20px;
color: var(--primary);
}

.care-intro-text p {
margin-bottom: 20px;
color: var(--gray);
line-height: 1.7;
}

.care-intro-tips {
display: flex;
flex-direction: column;
gap: 20px;
}

.tip-box {
background: var(--neutral);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--secondary);
}

.tip-box h4 {
margin-bottom: 10px;
color: var(--primary);
}

.tip-box p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

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

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

.footer-info p {
font-size: 13px;
margin: 0;
}

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

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 12px;
transition: 0.3s;
}

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

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

.nav {
position: fixed;
top: 0;
right: -100%;
width: 250px;
height: 100vh;
background: var(--white);
flex-direction: column;
padding: 80px 30px 30px;
gap: 20px;
transition: 0.3s;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.nav.active {
right: 0;
}

.hero-content h1 {
font-size: 2.5rem;
}

.hero-content p {
font-size: 1rem;
}

.hero-stats {
gap: 25px;
}

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

.showcase-grid,
.pricing-content,
.care-intro-content {
grid-template-columns: 1fr;
gap: 40px;
}

.timeline-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}

.timeline-number {
width: 60px;
height: 60px;
font-size: 1.2rem;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.5rem;
}

section {
padding: 60px 0;
}

.features-grid-modern,
.products-grid-modern,
.benefits-grid-modern {
grid-template-columns: 1fr;
}

.integration-grid-modern {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.testimonials-grid-modern {
grid-template-columns: 1fr;
}

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

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

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

.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 0.95rem;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
text-align: center;
}

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

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.3rem;
}

.cta-box h2 {
font-size: 1.6rem;
}

.feature-modern,
.benefit-modern {
padding: 25px;
}

.product-details {
padding: 20px;
}

.product-footer {
flex-direction: column;
gap: 15px;
align-items: flex-start;
}

.btn-product {
width: 100%;
text-align: center;
}

section {
padding: 50px 0;
}

.integration-grid-modern {
grid-template-columns: 1fr;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}

.logo {
font-size: 1.1rem;
}

.hero-content h1 {
font-size: 1.6rem;
}

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.2rem;
}

.hero-badge {
font-size: 11px;
padding: 6px 15px;
}

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

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

.feature-modern,
.benefit-modern {
padding: 20px;
}

.product-details {
padding: 15px;
}

.timeline-number {
width: 50px;
height: 50px;
font-size: 1rem;
}

.timeline-item {
grid-template-columns: 50px 1fr;
gap: 15px;
}

section {
padding: 40px 0;
}
}

.contact-section {
background: var(--white);
}

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

.contact-form-area h2,
.contact-info-area h2 {
margin-bottom: 30px;
color: var(--primary);
}

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

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

.form-field {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-field label {
font-size: 14px;
font-weight: 600;
color: var(--dark);
}

.form-field input,
.form-field textarea {
padding: 14px;
border: 2px solid var(--neutral);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: 0.3s;
background: var(--neutral);
}

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

.form-field-checkbox {
margin-top: 10px;
}

.checkbox-wrapper {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: 13px;
cursor: pointer;
color: var(--gray);
}

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

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

.btn-submit-modern {
background: var(--primary);
color: var(--white);
padding: 16px 32px;
border-radius: 8px;
border: none;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: 0.3s;
font-family: 'Sora', sans-serif;
}

.btn-submit-modern:hover {
background: var(--secondary);
transform: translateY(-2px);
}

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

.contact-card-modern {
background: var(--neutral);
padding: 25px;
border-radius: 12px;
border-left: 4px solid var(--secondary);
}

.contact-icon {
font-size: 2rem;
margin-bottom: 15px;
display: block;
}

.contact-card-modern h4 {
margin-bottom: 10px;
color: var(--primary);
}

.contact-card-modern p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.map-section-modern {
background: var(--neutral);
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-page,
.error-page {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
background: var(--white);
}

.thankyou-box,
.error-box {
text-align: center;
max-width: 600px;
padding: 60px 20px;
}

.success-icon,
.error-icon {
font-size: 5rem;
margin-bottom: 30px;
display: block;
}

.success-icon {
color: var(--secondary);
}

.error-icon {
color: var(--accent);
}

.thankyou-box h1,
.error-box h1 {
margin-bottom: 20px;
color: var(--primary);
}

.thankyou-box p,
.error-box p {
margin-bottom: 15px;
color: var(--gray);
line-height: 1.7;
font-size: 15px;
}

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

.error-code {
font-size: 8rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
}

.policy-page {
background: var(--white);
}

.policy-hero-simple {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.policy-hero-simple h1 {
margin-bottom: 15px;
}

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

.policy-content-area {
padding: 80px 0;
}

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

.policy-text-content h2 {
margin-top: 40px;
margin-bottom: 20px;
color: var(--primary);
font-size: 1.6rem;
}

.policy-text-content h3 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--primary);
font-size: 1.2rem;
}

.policy-text-content p {
margin-bottom: 20px;
color: var(--gray);
font-size: 14px;
line-height: 1.8;
}

@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.form-row {
grid-template-columns: 1fr;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
width: 100%;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}

.error-code {
font-size: 5rem;
}
}

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

.btn-submit-modern {
width: 100%;
}

.error-code {
font-size: 4rem;
}

.success-icon,
.error-icon {
font-size: 3.5rem;
}
}

@media (max-width: 320px) {
.contact-card-modern {
padding: 15px;
}

.error-code {
font-size: 3rem;
}

.success-icon,
.error-icon {
font-size: 3rem;
}
}
