/* --- VARIABLES --- */
:root {
    --color-primary: #2E7D32;    /* Natural Green */
    --color-primary-dark: #1b5e20;
    --color-accent: #FBC02D;     /* Warm Yellow */
    --color-accent-hover: #f9a825;
    --color-text-main: #333333;
    --color-text-brown: #6D4C41; /* Earth Brown */
    --color-bg-light: #F9FBE7;   /* Light organic tint */
    --color-white: #FFFFFF;
    
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    --transition: 0.3s ease-in-out;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-brown);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-brown { color: var(--color-text-brown); }
.bg-light { background-color: var(--color-bg-light); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-padding {
    padding: 5rem 0;
}

.page-content {
    padding-top: 100px;
    padding-bottom: 4rem;
    flex-grow: 1;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-title .subtitle {
    font-size: 1.1rem;
    color: var(--color-text-brown);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn i { margin-right: 8px; }

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-brown);
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --- HEADER / NAVBAR --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-brown);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    background-color: var(--color-white) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 3px !important;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-brown);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-brown);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for header */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(46,125,50,0.8), rgba(0,0,0,0.5));
}

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

.hero .badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- ABOUT SECTION --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-brown);
}

.feature-item i {
    font-size: 1.5rem;
}

/* --- SERVICES & PRODUCTS SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-primary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background: rgba(251, 192, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.service-image-header {
    height: 140px;
    background-size: cover;
    background-position: center;
}
.service-content-padded {
    padding: 1.5rem 2rem 2rem;
}

.services-two-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    max-width: 900px; 
    margin: 0 auto; 
}
.square-card { 
    display: flex; 
    flex-direction: column; 
    aspect-ratio: 1 / 1; 
    justify-content: flex-start; 
}
.square-card p { 
    margin-bottom: 1.5rem; 
    flex-grow: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
}

.products-img-container {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* --- REVIEWS SECTION --- */
.reviews-header {
    margin-bottom: 3rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stars {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.rating-text {
    font-weight: 500;
    color: #666;
}

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

.testimonial-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(46,125,50,0.1);
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}



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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.mini-stars {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(46,125,50,0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.info-item p {
    color: #555;
    font-size: 0.95rem;
}

.map-placeholder {
    height: 100%;
    min-height: 350px;
    background-color: #E2E8F0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 1.5rem;
}
.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-text-brown);
    color: var(--color-white);
    padding: 3rem 0;
    margin-top: auto; /* Push to bottom naturally on short pages */
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-text { opacity: 0.8;}
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.social-links a:hover {
    background-color: var(--color-accent);
    color: var(--color-text-brown);
    transform: translateY(-3px);
}
.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}


/* --- ANIMATIONS & REVEAL CLASSES --- */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* --- ABOUT US HIGH-END UPGRADES --- */
.about-page-bg {
    background-color: #FDFDF9; 
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.about-page-bg::before {
    content: ''; position: absolute; top: 0; left: -10%; width: 50vw; height: 80vh; 
    background: radial-gradient(ellipse, rgba(251, 192, 45, 0.08) 0%, transparent 60%); z-index: -1;
}
.about-page-bg::after {
    content: ''; position: absolute; bottom: 10%; right: -15%; width: 60vw; height: 90vh; 
    background: radial-gradient(ellipse, rgba(46, 125, 50, 0.06) 0%, transparent 60%); z-index: -1;
}
.story-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
}
.highlight-name {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.highlight-name::after {
    content: ''; position: absolute; bottom: 2px; left: -2%; width: 104%; height: 8px; 
    background-color: rgba(251, 192, 45, 0.5); z-index: -1; border-radius: 4px;
}
.greeting {
    font-size: 1.25rem;
    margin-bottom: 2rem !important;
    color: var(--color-text-main);
}

/* --- ABOUT US ZIGZAG LAYOUT --- */
.about-block { padding: 4rem 0; }
.about-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text-content h2 { font-size: 2.2rem; color: var(--color-primary); margin-bottom: 1.5rem; }
.about-text-content p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.about-text-content ul { list-style: none; }
.about-text-content li { position: relative; padding-left: 30px; margin-bottom: 15px; font-weight: 500; color: var(--color-text-brown); }
.about-text-content li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--color-primary); top: 2px; }
.about-block-grid.reverse .about-text-content { order: 2; }
.about-intro-text { max-width: 800px; margin: 0 auto; text-align: center; color: #555; font-size: 1.15rem; line-height: 1.8; }
.about-img-box { display: flex; justify-content: center; align-items: center; }
.about-img-box img { width: 100%; max-height: 450px; border-radius: 16px; box-shadow: var(--shadow-lg); object-fit: contain; background: white; padding: 10px; }

/* --- HOMEPAGE ZONES --- */
/* --- INTERACTIVE COMPARISON WIDGET --- */
.custom-toggle { position: relative; display: flex; background: #E2E8F0; max-width: 500px; border-radius: 40px; padding: 5px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.08); margin-bottom: 2rem; }
.toggle-bg { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); background: var(--color-primary); border-radius: 35px; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--shadow-sm); z-index: 1;}
.toggle-btn { flex: 1; position: relative; z-index: 2; background: transparent; border: none; padding: 14px 20px; font-size: 1.05rem; font-weight: 600; font-family: var(--font-heading); color: #64748B; cursor: pointer; transition: color 0.4s ease; }
.toggle-btn.active { color: white; }

.comparison-interactive-view { background: white; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; max-width: 900px; margin: 0 auto; border: 1px solid rgba(0,0,0,0.05); }
.comp-view { display: none; animation: fadeIn 0.4s ease forwards; }
.comp-view.active { display: flex; align-items: stretch; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.comp-image { flex: 1; position: relative; padding: 2rem; display: flex; align-items: center; justify-content: center; min-height: 350px; border-right: 1px solid rgba(0,0,0,0.05); }
.comp-image img { max-width: 100%; max-height: 300px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); }
.comp-details { flex: 1.2; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.comp-details h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.negative-details h3 { color: #555; }
.positive-details h3 { color: var(--color-primary); }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.2rem; font-size: 1.1rem; color: #444; line-height: 1.5; }
.benefit-list i { font-size: 1.4rem; margin-top: 3px; }
.benefit-list i.fa-circle-check { color: var(--color-primary); }
.bad-list li { color: #777; }
.bad-list i.fa-circle-xmark { color: #EF4444; }
.badge-icon { position: absolute; top: 1.5rem; left: 1.5rem; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; z-index: 2; box-shadow: var(--shadow-sm); }
.badge-good { background: var(--color-primary); }
.badge-bad { background: #EF4444; }

.product-card p.product-benefit { font-size: 0.9rem; color: #666; margin-bottom: 1rem; font-style: italic; }

.process-flow { display: flex; align-items: center; justify-content: space-between; max-width: 1000px; margin: 0 auto; }
.process-step { flex: 1; text-align: center; padding: 2rem; position: relative;}
.process-icon { width: 90px; height: 90px; background: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--color-primary); margin: 0 auto 1.5rem auto; box-shadow: var(--shadow-sm); border: 3px solid rgba(46,125,50,0.1); transition: var(--transition); }
.process-step:hover .process-icon { transform: translateY(-5px); border-color: var(--color-accent); background: var(--color-accent); color: white;}
.process-step h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--color-text-brown); }
.process-step p { font-size: 0.95rem; color: #666; }
.process-arrow { color: var(--color-accent); font-size: 2rem; padding: 0 1rem; opacity: 0.5;}

/* --- INFINITE REVIEWS CAROUSEL --- */
.reviews-slider-wrapper { overflow: hidden; white-space: nowrap; position: relative; padding: 1rem 0; width: 100%; display: flex; align-items: center; }
.reviews-slider-track { display: inline-flex; gap: 2rem; animation: scroll-carousel 40s linear infinite; padding-left: 2rem; }
.reviews-slider-track:hover { animation-play-state: paused; }
.review-card-item { width: 380px; white-space: normal; background: var(--color-white); padding: 2.5rem 2rem; border-radius: 16px; box-shadow: var(--shadow-md); flex-shrink: 0; position: relative; text-align: left; display: flex; flex-direction: column; min-height: 250px; border: 1px solid rgba(46,125,50,0.05); }
.review-card-item .quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: rgba(46,125,50,0.1); }
.review-card-item p.review-text { font-style: italic; color: #555; margin-bottom: 2rem; position: relative; z-index: 2; flex-grow: 1; line-height: 1.6; }
@keyframes scroll-carousel { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 1rem)); } }
.review-divider { border: none; border-top: 2px solid var(--color-primary); max-width: 60px; margin: 3rem auto 1.5rem auto; opacity: 0.3; }
.review-trust-note { color: #666; font-size: 0.95rem; max-width: 700px; margin: 0 auto 2rem auto; line-height: 1.6; font-style: italic; }

/* --- PRODUCTS PAGE --- */
.products-banner { position: relative; width: 100%; margin-top: 80px; display: block; overflow: hidden; }
.products-banner img { width: 100%; height: auto; display: block; object-fit: cover; }
.banner-overlay { position: absolute; inset: 0; z-index: 2; color: #fff; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.banner-overlay h2 { color: #fff !important; font-size: 3.5rem; margin-bottom: 0.5rem; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.banner-overlay p { font-size: 1.25rem; opacity: 0.95; max-width: 600px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); font-weight: 500;}

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.product-card { background: var(--color-white); border-radius: 16px; padding: 2.5rem 1.5rem; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid rgba(46,125,50,0.05); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(251,192,45,0.4); }
.product-icon-box { width: 80px; height: 80px; border-radius: 50%; background: rgba(251,192,45,0.1); color: var(--color-accent); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 1.5rem; transition: var(--transition); }
.product-card:hover .product-icon-box { background: var(--color-accent); color: var(--color-white); transform: scale(1.1);}
.product-card h3 { font-size: 1.25rem; margin-bottom: 1.5rem; flex-grow: 1; color: var(--color-text-brown); }
.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.95rem; border-width: 2px;}
.product-divider { border: none; border-top: 2px solid var(--color-primary); max-width: 150px; margin: 4rem auto 1.5rem auto; opacity: 0.3; }
.trust-line { color: var(--color-text-brown); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.5px; opacity: 0.9; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; }
    .about-block-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-block-grid.reverse .about-img-box { grid-row: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .services-two-grid { grid-template-columns: 1fr; }
    .square-card { aspect-ratio: auto; min-height: 300px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .process-flow { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); margin: 1rem 0; }
}

@media (max-width: 768px) {
    .section-padding { padding: 3.5rem 0; }
    .page-content { padding-top: 90px; padding-bottom: 1.5rem; }
    .section-title { margin-bottom: 1.5rem; }
    
    /* Interactive Toggle Mobile Constraints */
    .comp-view.active { flex-direction: column; }
    .comp-image { padding: 1.5rem; min-height: 220px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .comp-image img { max-height: 200px; }
    .comp-details { padding: 2rem 1.5rem; }
    .comp-details h3 { font-size: 1.5rem; text-align: center; }
    .custom-toggle { max-width: 100%; border-radius: 20px; }
    .toggle-bg { border-radius: 15px; }
    .toggle-btn { font-size: 0.95rem; padding: 12px 10px; }
    .benefit-list li { font-size: 0.95rem; margin-bottom: 1rem; }
    .badge-icon { width: 35px; height: 35px; top: 1rem; left: 1rem; font-size: 1.1rem; }
    
    /* Swipable Mobile Process Teaser UX instead of excessive vertical scrolling */
    .process-flow { flex-direction: row !important; overflow-x: auto; padding-bottom: 1.5rem; gap: 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-left: 1rem; padding-right: 1rem;}
    .process-step { min-width: 85%; scroll-snap-align: center; background: white; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 1.5rem; }
    .process-icon { width: 60px; height: 60px; font-size: 1.5rem; border-width: 2px; }
    .process-arrow { display: none !important; } 
    
    .hero-subtitle { font-size: 1.05rem; padding: 0 10px; margin-bottom: 1.5rem; }
    .hero-title { font-size: 2.1rem; }
    .section-title h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
    .section-title .subtitle { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; }

    .nav-list {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        padding-top: 3rem;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-list.active { right: 0; }
    .hamburger { display: block; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .review-card-item { width: 300px; padding: 1.5rem; }
    
    /* Multi-column condensed flow */
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .products-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
    .product-card { padding: 1rem 0.5rem; }
    .product-icon-box { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 0.8rem;}
    .product-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
    .product-benefit { font-size: 0.8rem !important; margin-bottom: 0.8rem !important;}
    .btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem;}

    .products-banner { height: 250px; }
    .banner-overlay h2 { font-size: 2.5rem; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
}
