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

:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #e94560;
--light: #f1f1f1;
}

body {
font-family: 'Outfit', sans-serif;
line-height: 1.6;
color: var(--primary);
background: #fff;
overflow-x: hidden;
}

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

.header-main {
background: #fff;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 100;
}

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

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
color: var(--primary);
cursor: pointer;
}

.nav-menu {
display: flex;
gap: 25px;
}

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

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

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

.hero-bg-shapes {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--accent);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--light);
bottom: -50px;
left: -50px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--accent);
top: 50%;
left: 30%;
}

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

.hero-visual-left {
position: relative;
}

.hero-visual-left .hero-image-wrapper {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.hero-content-right {
color: #fff;
display: flex;
flex-direction: column;
gap: 20px;
}

.hero-stats-top {
display: flex;
gap: 25px;
margin-bottom: 10px;
}

.hero-stats-top .stat {
display: flex;
flex-direction: column;
}

.hero-stats-top .stat-num {
font-size: 24px;
font-weight: 700;
color: var(--accent);
}

.hero-stats-top .stat-text {
font-size: 11px;
opacity: 0.8;
}

.hero-content-right .hero-badge {
display: inline-block;
padding: 6px 16px;
background: rgba(233, 69, 96, 0.2);
border: 1px solid var(--accent);
border-radius: 20px;
font-size: 11px;
font-weight: 500;
width: fit-content;
}

.hero-content-right h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 44px;
font-weight: 700;
line-height: 1.2;
margin: 0;
}

.hero-content-right p {
font-size: 15px;
line-height: 1.7;
opacity: 0.9;
margin: 0;
}

.hero-buttons-vertical {
display: flex;
flex-direction: column;
gap: 12px;
max-width: 280px;
}

.btn-hero-main {
padding: 14px 32px;
background: var(--accent);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
display: block;
text-align: center;
}

.btn-hero-main:hover {
transform: translateX(5px);
box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.btn-hero-alt {
padding: 14px 32px;
background: #fff;
color: var(--primary);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
display: block;
text-align: center;
}

.btn-hero-alt:hover {
transform: translateX(5px);
box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-hero-outline {
padding: 14px 32px;
background: transparent;
color: #fff;
text-decoration: none;
border: 2px solid #fff;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
display: block;
text-align: center;
}

.btn-hero-outline:hover {
background: #fff;
color: var(--primary);
transform: translateX(5px);
}

.values-section {
padding: 50px 0;
background: var(--light);
}

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

.value-item {
background: #fff;
padding: 25px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s;
}

.value-item:hover {
transform: translateY(-5px);
}

.value-item i {
font-size: 32px;
color: var(--accent);
margin-bottom: 12px;
}

.value-item h3 {
font-size: 16px;
margin-bottom: 8px;
font-weight: 600;
}

.value-item p {
font-size: 12px;
color: var(--secondary);
line-height: 1.5;
}

.showcase-section {
padding: 70px 0;
}

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

.section-tag {
display: inline-block;
padding: 6px 16px;
background: rgba(233, 69, 96, 0.1);
color: var(--accent);
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 15px;
}

.section-header p {
font-size: 14px;
color: var(--secondary);
line-height: 1.7;
}

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

.showcase-card {
position: relative;
border-radius: 15px;
overflow: hidden;
}

.showcase-img {
position: relative;
overflow: hidden;
}

.showcase-img img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}

.showcase-card:hover .showcase-img img {
transform: scale(1.1);
}

.showcase-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
padding: 30px;
color: #fff;
transform: translateY(60%);
transition: transform 0.4s;
}

.showcase-card:hover .showcase-overlay {
transform: translateY(0);
}

.showcase-overlay h3 {
font-size: 22px;
margin-bottom: 10px;
}

.showcase-overlay p {
font-size: 13px;
margin-bottom: 15px;
opacity: 0.9;
}

.btn-overlay {
display: inline-block;
padding: 10px 24px;
background: var(--accent);
color: #fff;
text-decoration: none;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

.btn-overlay:hover {
background: #d63850;
}

.story-section {
padding: 70px 0;
background: var(--light);
}

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

.story-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.story-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

.story-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 30px;
}

.story-feature {
display: flex;
gap: 15px;
align-items: flex-start;
}

.story-feature i {
font-size: 28px;
color: var(--accent);
flex-shrink: 0;
}

.story-feature h4 {
font-size: 16px;
margin-bottom: 5px;
}

.story-feature p {
font-size: 13px;
color: var(--secondary);
margin: 0;
}

.story-metrics {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.metric-box {
background: #fff;
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.metric-value {
display: block;
font-size: 32px;
font-weight: 700;
color: var(--accent);
margin-bottom: 5px;
}

.metric-label {
display: block;
font-size: 12px;
color: var(--secondary);
}

.testimonials-section {
padding: 70px 0;
}

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

.testimonial-card {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-stars {
margin-bottom: 15px;
}

.testimonial-stars i {
color: #ffc107;
font-size: 14px;
}

.testimonial-card p {
font-size: 13px;
line-height: 1.7;
color: var(--secondary);
margin-bottom: 20px;
}

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

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

.process-section {
padding: 70px 0;
background: var(--light);
}

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

.process-step {
background: #fff;
padding: 35px 25px;
border-radius: 12px;
text-align: center;
position: relative;
}

.step-number {
position: absolute;
top: -15px;
right: 20px;
width: 40px;
height: 40px;
background: var(--accent);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
}

.process-step i {
font-size: 36px;
color: var(--accent);
margin-bottom: 15px;
}

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

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

.newsletter-modern {
padding: 60px 0;
background: var(--primary);
}

.newsletter-wrapper {
display: grid;
grid-template-columns: auto 1fr auto;
gap: 30px;
align-items: center;
}

.newsletter-icon i {
font-size: 48px;
color: var(--accent);
}

.newsletter-text {
color: #fff;
}

.newsletter-text h2 {
font-size: 24px;
margin-bottom: 5px;
}

.newsletter-text p {
font-size: 13px;
opacity: 0.9;
}

.newsletter-form-modern {
display: flex;
gap: 10px;
}

.newsletter-form-modern input {
padding: 12px 20px;
border: none;
border-radius: 8px;
font-size: 14px;
min-width: 250px;
}

.btn-newsletter {
padding: 12px 28px;
background: var(--accent);
color: #fff;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: background 0.3s;
}

.btn-newsletter:hover {
background: #d63850;
}

.contact-preview {
padding: 70px 0;
text-align: center;
background: var(--light);
}

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

.contact-preview-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 15px;
}

.contact-preview-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 25px;
line-height: 1.7;
}

.btn-contact-preview {
display: inline-block;
padding: 14px 32px;
background: var(--accent);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact-preview:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.btn-primary {
display: inline-block;
padding: 12px 28px;
background: var(--accent);
color: #fff;
text-decoration: none;
border-radius: 8px;
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 8px 20px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
display: inline-block;
padding: 10px 24px;
background: transparent;
color: var(--primary);
text-decoration: none;
border: 2px solid var(--primary);
border-radius: 8px;
font-weight: 500;
font-size: 13px;
transition: all 0.3s;
}

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

.footer {
background: var(--primary);
color: #fff;
padding: 30px 0 20px;
}

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 15px;
flex-wrap: wrap;
}

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

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

.footer-copy {
font-size: 12px;
color: rgba(255,255,255,0.6);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: #fff;
padding: 20px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.4s;
}

.privacy-popup.show {
transform: translateY(0);
}

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

.popup-content p {
font-size: 13px;
flex: 1;
}

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

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

.btn-accept:hover {
background: #d63850;
}

.popup-buttons a {
color: var(--light);
font-size: 12px;
text-decoration: underline;
}

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

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

.page-hero p {
font-size: 15px;
opacity: 0.95;
}

.products-section {
padding: 70px 0;
}

.products-section h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
font-family: 'Space Grotesk', sans-serif;
}

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

.product-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-image {
position: relative;
overflow: hidden;
}

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

.discount-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: #fff;
padding: 6px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-info {
padding: 25px;
}

.product-info h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.product-info p {
font-size: 13px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.5;
}

.product-price {
display: flex;
gap: 12px;
align-items: center;
margin-bottom: 15px;
}

.price-old {
font-size: 14px;
color: var(--secondary);
text-decoration: line-through;
}

.price-new {
font-size: 20px;
font-weight: 700;
color: var(--accent);
}

.benefits-section {
padding: 60px 0;
background: var(--light);
}

.benefits-section h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
font-family: 'Space Grotesk', sans-serif;
}

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

.benefit-item {
background: #fff;
padding: 30px;
border-radius: 12px;
text-align: center;
}

.benefit-item i {
font-size: 36px;
color: var(--accent);
margin-bottom: 15px;
}

.benefit-item h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.benefit-item p {
font-size: 13px;
color: var(--secondary);
line-height: 1.5;
}

.why-choose {
padding: 60px 0;
}

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

.why-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
}

.why-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

.why-list {
display: flex;
flex-direction: column;
gap: 15px;
}

.why-item {
display: flex;
align-items: center;
gap: 12px;
padding: 15px;
background: var(--light);
border-radius: 8px;
}

.why-item i {
font-size: 24px;
color: var(--accent);
flex-shrink: 0;
}

.why-item span {
font-size: 13px;
font-weight: 500;
}

.seasonal-intro {
padding: 60px 0;
background: var(--light);
}

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

.seasonal-content h2 {
font-size: 32px;
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

.seasonal-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

.seasonal-categories {
padding: 70px 0;
}

.seasonal-categories h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
font-family: 'Space Grotesk', sans-serif;
}

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

.category-card {
background: #fff;
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.category-card:hover {
transform: translateY(-5px);
}

.category-card i {
font-size: 40px;
color: var(--accent);
margin-bottom: 15px;
}

.category-card h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.category-card p {
font-size: 13px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.5;
}

.seasonal-timeline {
padding: 60px 0;
background: var(--light);
}

.seasonal-timeline h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
font-family: 'Space Grotesk', sans-serif;
}

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

.timeline-item {
background: #fff;
padding: 30px;
border-radius: 12px;
text-align: center;
}

.timeline-icon {
margin-bottom: 15px;
}

.timeline-icon i {
font-size: 36px;
color: var(--accent);
}

.timeline-item h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.timeline-item p {
font-size: 13px;
color: var(--secondary);
line-height: 1.5;
}

.seasonal-benefits {
padding: 60px 0;
}

.seasonal-benefits h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
font-family: 'Space Grotesk', sans-serif;
}

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

.benefit-alt {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
}

.benefit-alt i {
font-size: 36px;
color: var(--accent);
margin-bottom: 15px;
}

.benefit-alt h3 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}

.benefit-alt p {
font-size: 13px;
color: var(--secondary);
line-height: 1.5;
}

.contact-section {
padding: 70px 0;
}

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

.contact-info h2 {
font-size: 28px;
margin-bottom: 30px;
font-family: 'Space Grotesk', sans-serif;
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
}

.info-item i {
font-size: 24px;
color: var(--accent);
flex-shrink: 0;
}

.info-item h3 {
font-size: 16px;
margin-bottom: 5px;
font-weight: 600;
}

.info-item p {
font-size: 13px;
color: var(--secondary);
line-height: 1.5;
}

.contact-form-wrapper h2 {
font-size: 28px;
margin-bottom: 25px;
font-family: 'Space Grotesk', sans-serif;
}

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

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

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

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

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

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 12px;
color: var(--secondary);
cursor: pointer;
}

.checkbox-label input {
margin-top: 2px;
cursor: pointer;
}

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

.map-section {
padding: 60px 0;
background: var(--light);
}

.map-section h2 {
text-align: center;
font-size: 32px;
margin-bottom: 30px;
font-family: 'Space Grotesk', sans-serif;
}

.map-wrapper iframe {
width: 100%;
border-radius: 12px;
}

.contact-cta {
padding: 60px 0;
text-align: center;
}

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

.contact-cta p {
font-size: 14px;
color: var(--secondary);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

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

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

.thankyou-icon {
margin-bottom: 25px;
}

.thankyou-icon i {
font-size: 60px;
color: #27ae60;
}

.thankyou-content h1 {
font-size: 32px;
margin-bottom: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.thankyou-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 30px;
line-height: 1.7;
}

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

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

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

.error-number {
font-size: 100px;
font-weight: 700;
color: var(--accent);
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

.error-content h1 {
font-size: 32px;
margin-bottom: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.error-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 30px;
line-height: 1.7;
}

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

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

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

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

.policy-date {
font-size: 13px;
color: var(--secondary);
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 24px;
margin-top: 35px;
margin-bottom: 15px;
font-weight: 600;
}

.policy-content h3 {
font-size: 18px;
margin-top: 25px;
margin-bottom: 12px;
font-weight: 600;
}

.policy-content p {
font-size: 14px;
color: var(--secondary);
margin-bottom: 15px;
line-height: 1.7;
}

@media (max-width: 1024px) {
.hero-grid-new {
grid-template-columns: 1fr;
gap: 40px;
}

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

.hero-visual-left {
max-width: 500px;
margin: 0 auto;
}

.values-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}

.products-grid {
grid-template-columns: repeat(2, 1fr);
}

.categories-grid {
grid-template-columns: repeat(2, 1fr);
}
}

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

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
}

.nav-menu.active {
display: flex;
}

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

.hero-content-right p {
font-size: 14px;
}

.hero-stats-top {
gap: 20px;
}

.hero-stats-top .stat-num {
font-size: 20px;
}

.hero-buttons-vertical {
max-width: 100%;
}

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

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

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

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

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

.newsletter-wrapper {
grid-template-columns: 1fr;
text-align: center;
}

.newsletter-form-modern {
flex-direction: column;
}

.newsletter-form-modern input {
min-width: 100%;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

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

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

.benefits-alt-grid {
grid-template-columns: 1fr;
}

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

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

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

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

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

.btn-accept {
width: 100%;
}

.error-number {
font-size: 70px;
}

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

@media (max-width: 480px) {
.logo {
font-size: 16px;
}

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

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

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

.story-metrics {
grid-template-columns: 1fr;
}

.metric-value {
font-size: 28px;
}

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

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

.policy-content h2 {
font-size: 20px;
}
}

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

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

.hero-content-right p {
font-size: 13px;
}

.btn-hero-main,
.btn-hero-alt,
.btn-hero-outline {
padding: 12px 24px;
font-size: 13px;
}

.hero-stats-top .stat-num {
font-size: 18px;
}

.hero-stats-top .stat-text {
font-size: 10px;
}

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

.section-header p {
font-size: 13px;
}

.value-item {
padding: 20px;
}

.value-item h3 {
font-size: 14px;
}

.value-item p {
font-size: 11px;
}

.showcase-overlay h3 {
font-size: 18px;
}

.showcase-overlay p {
font-size: 12px;
}

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

.testimonial-card {
padding: 20px;
}

.process-step {
padding: 25px 20px;
}

.newsletter-text h2 {
font-size: 20px;
}

.contact-preview-content h2 {
font-size: 24px;
}

.product-info {
padding: 20px;
}

.product-info h3 {
font-size: 16px;
}

.category-card {
padding: 25px;
}

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

.error-number {
font-size: 60px;
}

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

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