@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

:root {
  --green-primary: #2d8a2d;
  --green-dark: #1a5c1a;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --blue-accent: #1565a8;
  --text-dark: #1a2332;
  --text-gray: #5a6472;
  --bg-light: #f7faf7;
  --bg-white: #ffffff;
  --border: #dde8dd;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --nav-height: 76px;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text-dark);background:var(--bg-white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

html[dir="rtl"] body{font-family:'Noto Kufi Arabic','Barlow',sans-serif}
html[dir="rtl"] .navbar-nav{flex-direction:row-reverse}
html[dir="rtl"] .dropdown-menu{left:auto;right:0;text-align:right}
html[dir="rtl"] .hero-content{left:40%;right:80px}
html[dir="rtl"] .why-item:hover{transform:translateX(-4px)}
html[dir="rtl"] .navbar-brand{margin-right:0;margin-left:40px}
html[dir="rtl"] .navbar-right{margin-left:0;margin-right:auto}
html[dir="rtl"] .whatsapp-float{left:auto;right:32px}
html[dir="rtl"] .footer-col ul li a:hover{padding-left:0;padding-right:4px}
html[dir="rtl"] .dropdown-item:hover{border-left-color:transparent;border-right-color:var(--green-primary)}
html[dir="rtl"] .dropdown-item{border-left:none;border-right:3px solid transparent}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-thumb{background:var(--green-primary);border-radius:3px}

/* NAVBAR */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;height:var(--nav-height);background:rgba(255,255,255,0.97);backdrop-filter:blur(12px);border-bottom:2px solid var(--border);display:flex;align-items:center;padding:0 40px;box-shadow:0 2px 12px rgba(0,0,0,0.07);transition:var(--transition)}
.navbar-brand{display:flex;align-items:center;flex-shrink:0;margin-right:40px}
.navbar-brand img{height:52px;width:auto;object-fit:contain}
.navbar-nav{display:flex;align-items:center;gap:4px;flex:1}
.nav-item{position:relative}
.nav-link{display:flex;align-items:center;gap:4px;padding:8px 14px;font-size:14px;font-weight:600;color:var(--text-dark);border-radius:var(--radius);transition:var(--transition);white-space:nowrap}
.nav-link:hover,.nav-link.active{color:var(--green-primary);background:var(--green-pale)}
.chevron{font-size:10px;transition:transform 0.2s;display:inline-block}
.nav-item:hover .chevron{transform:rotate(180deg)}
.dropdown-menu{position:absolute;top:calc(100% + 8px);left:0;background:var(--bg-white);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);min-width:180px;padding:8px 0;opacity:0;visibility:hidden;transform:translateY(-8px);transition:var(--transition);z-index:100}
.nav-item:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-item{display:block;padding:10px 20px;font-size:13px;font-weight:500;color:var(--text-dark);transition:var(--transition);border-left:3px solid transparent}
.dropdown-item:hover{color:var(--green-primary);background:var(--green-pale);border-left-color:var(--green-primary)}
.navbar-right{display:flex;align-items:center;gap:12px;margin-left:auto;flex-shrink:0}
.lang-toggle{display:flex;align-items:center;gap:6px;padding:6px 14px;border:2px solid var(--green-primary);border-radius:20px;font-size:13px;font-weight:700;color:var(--green-primary);cursor:pointer;transition:var(--transition)}
.lang-toggle:hover{background:var(--green-primary);color:white}
.cta-btn-nav{padding:8px 20px;background:var(--green-primary);color:white;border-radius:20px;font-size:13px;font-weight:700;transition:var(--transition);white-space:nowrap}
.cta-btn-nav:hover{background:var(--green-dark);transform:translateY(-1px);box-shadow:0 4px 12px rgba(45,138,45,0.4)}
.hamburger{display:none;flex-direction:column;gap:5px;padding:4px;cursor:pointer}
.hamburger span{display:block;width:24px;height:2px;background:var(--text-dark);border-radius:2px;transition:var(--transition)}
.mobile-nav{display:none;position:fixed;top:var(--nav-height);left:0;right:0;background:white;border-top:1px solid var(--border);z-index:999;max-height:calc(100vh - var(--nav-height));overflow-y:auto;box-shadow:var(--shadow)}
.mobile-nav.open{display:block}
.mobile-nav-item{border-bottom:1px solid var(--border)}
.mobile-nav-link{display:flex;justify-content:space-between;align-items:center;padding:16px 24px;font-weight:600;font-size:15px;cursor:pointer}
.mobile-subnav{display:none;background:var(--bg-light)}
.mobile-subnav.open{display:block}
.mobile-subnav a{display:block;padding:12px 36px;font-size:14px;color:var(--text-gray);border-bottom:1px solid var(--border)}
.mobile-nav-actions{display:flex;gap:12px;padding:20px 24px}
.mobile-lang-btn{flex:1;padding:12px;border:2px solid var(--green-primary);border-radius:8px;font-weight:700;color:var(--green-primary);text-align:center;cursor:pointer;font-family:var(--font-body);font-size:14px}
.mobile-cta-btn{flex:2;padding:12px;background:var(--green-primary);color:white;border-radius:8px;font-weight:700;text-align:center;display:block}

/* HERO */
.hero{margin-top:var(--nav-height);position:relative;height:calc(100vh - var(--nav-height));min-height:560px;max-height:800px;overflow:hidden}
.hero-slides{display:flex;height:100%;transition:transform 0.8s cubic-bezier(0.77,0,0.175,1)}
.hero-slide{flex-shrink:0;width:100%;height:100%;position:relative;overflow:hidden}
.hero-slide img{width:100%;height:100%;object-fit:cover;transition:transform 8s ease;transform:scale(1.04)}
.hero-slide.active img{transform:scale(1.0)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,92,26,0.72) 0%,rgba(0,0,0,0.35) 60%,transparent 100%)}
.hero-content{position:absolute;bottom:80px;left:80px;right:40%;color:white}
.hero-badge{display:inline-block;background:rgba(255,255,255,0.18);border:1px solid rgba(255,255,255,0.4);backdrop-filter:blur(8px);padding:6px 16px;border-radius:20px;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:20px;color:#a8f0a8}
.hero-title{font-family:var(--font-heading);font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;text-shadow:0 2px 16px rgba(0,0,0,0.3);margin-bottom:16px;letter-spacing:-1px}
.hero-subtitle{font-size:clamp(15px,2vw,19px);opacity:0.9;margin-bottom:32px;max-width:480px;line-height:1.5}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn-hero-primary{padding:14px 32px;background:var(--green-light);color:white;border-radius:30px;font-size:15px;font-weight:700;transition:var(--transition);box-shadow:0 4px 20px rgba(76,175,80,0.5)}
.btn-hero-primary:hover{background:white;color:var(--green-dark);transform:translateY(-2px)}
.btn-hero-outline{padding:14px 32px;background:transparent;color:white;border:2px solid rgba(255,255,255,0.7);border-radius:30px;font-size:15px;font-weight:700;transition:var(--transition)}
.btn-hero-outline:hover{background:rgba(255,255,255,0.15);border-color:white}
.hero-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.2);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.3);color:white;width:48px;height:48px;border-radius:50%;font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:var(--transition);z-index:10}
.hero-nav:hover{background:rgba(255,255,255,0.35)}
.hero-nav-prev{left:24px}
.hero-nav-next{right:24px}
.hero-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.hero-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.45);cursor:pointer;transition:var(--transition)}
.hero-dot.active{width:28px;border-radius:4px;background:white}

/* SOLUTIONS STRIP */
.solutions-strip{background:white;border-bottom:1px solid var(--border);box-shadow:0 4px 20px rgba(0,0,0,0.06)}
.solutions-strip-inner{display:flex;max-width:1200px;margin:0 auto}
.solution-tile{flex:1;display:flex;flex-direction:column;align-items:center;gap:10px;padding:24px 16px;text-align:center;border-right:1px solid var(--border);cursor:pointer;transition:var(--transition);color:var(--text-dark)}
.solution-tile:last-child{border-right:none}
.solution-tile:hover{background:var(--green-pale)}
.solution-tile:hover .solution-icon-wrap{background:var(--green-primary)}
.solution-tile:hover .solution-icon-wrap svg{stroke:white}
.solution-icon-wrap{width:52px;height:52px;border-radius:12px;background:var(--bg-light);display:flex;align-items:center;justify-content:center;transition:var(--transition);border:1px solid var(--border)}
.solution-icon-wrap svg{width:26px;height:26px;stroke:var(--green-primary);stroke-width:1.8;fill:none}
.solution-name{font-size:12px;font-weight:700;letter-spacing:0.8px;text-transform:uppercase}

/* SECTION BASE */
.section{padding:90px 40px;max-width:1200px;margin:0 auto}
.section-full{padding:90px 40px}
.section-label{display:inline-block;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--green-primary);margin-bottom:12px;padding:4px 12px;background:var(--green-pale);border-radius:20px}
.section-title{font-family:var(--font-heading);font-size:clamp(28px,4vw,46px);font-weight:800;color:var(--text-dark);line-height:1.1;letter-spacing:-0.5px;margin-bottom:16px}
.section-subtitle{font-size:17px;color:var(--text-gray);max-width:560px;line-height:1.6;margin-bottom:48px}
.text-center{text-align:center}
.text-center .section-subtitle{margin-left:auto;margin-right:auto}

/* WHY SECTION */
.why-section{background:var(--text-dark);padding:90px 40px;position:relative;overflow:hidden}
.why-section::before{content:'';position:absolute;top:-100px;right:-100px;width:500px;height:500px;background:radial-gradient(circle,rgba(45,138,45,0.2) 0%,transparent 70%);pointer-events:none}
.why-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.why-content .section-label{background:rgba(76,175,80,0.2);color:#80e880}
.why-content .section-title{color:white}
.why-content .section-subtitle{color:rgba(255,255,255,0.65)}
.why-list{display:flex;flex-direction:column;gap:20px}
.why-item{display:flex;align-items:flex-start;gap:16px;padding:20px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:12px;transition:var(--transition)}
.why-item:hover{background:rgba(45,138,45,0.15);border-color:rgba(76,175,80,0.3);transform:translateX(4px)}
.why-number{font-family:var(--font-heading);font-size:28px;font-weight:800;color:var(--green-light);line-height:1;flex-shrink:0;width:36px}
.why-text h4{font-size:15px;font-weight:700;color:white;margin-bottom:4px}
.why-text p{font-size:13px;color:rgba(255,255,255,0.6);line-height:1.5}
.why-image{position:relative;border-radius:16px;overflow:hidden;aspect-ratio:4/5}
.why-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.why-image:hover img{transform:scale(1.04)}
.why-image-badge{position:absolute;bottom:24px;left:24px;right:24px;background:rgba(255,255,255,0.12);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,0.2);padding:16px 20px;border-radius:12px;color:white}
.big-stat{font-family:var(--font-heading);font-size:48px;font-weight:800;color:var(--green-light);line-height:1}

/* STATS BAR */
.stats-bar{background:var(--green-primary);padding:48px 40px}
.stats-bar-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.stat-item{text-align:center;color:white;padding:16px;border-right:1px solid rgba(255,255,255,0.2)}
.stat-item:last-child{border-right:none}
.stat-number{font-family:var(--font-heading);font-size:52px;font-weight:800;line-height:1;margin-bottom:8px;letter-spacing:-1px}
.stat-label{font-size:13px;font-weight:600;opacity:0.85;letter-spacing:0.5px;text-transform:uppercase}

/* PRODUCTS */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:28px}
.product-card{background:white;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:var(--transition);cursor:pointer}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-strong);border-color:var(--green-light)}
.product-card-img{height:220px;background:var(--bg-light);overflow:hidden;display:flex;align-items:center;justify-content:center;padding:20px}
.product-card-img img{height:100%;width:100%;object-fit:contain;transition:transform 0.5s ease}
.product-card:hover .product-card-img img{transform:scale(1.08)}
.product-card-body{padding:24px}
.product-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--green-primary);background:var(--green-pale);padding:3px 10px;border-radius:10px;margin-bottom:10px}
.product-card-body h3{font-family:var(--font-heading);font-size:22px;font-weight:700;color:var(--text-dark);margin-bottom:6px}
.product-capacity{font-size:14px;color:var(--green-primary);font-weight:600;font-style:italic;margin-bottom:12px}
.product-card-body p{font-size:14px;color:var(--text-gray);line-height:1.5;margin-bottom:20px}
.product-card-link{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:var(--green-primary);transition:var(--transition)}
.product-card-link:hover{gap:10px;color:var(--green-dark)}

/* DISTRIBUTOR BANNER */
.distributor-banner{background:linear-gradient(135deg,var(--green-pale) 0%,#e3f2fd 100%);border-top:3px solid var(--green-primary);border-bottom:3px solid var(--green-primary);padding:60px 40px}
.distributor-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap}
.distributor-text h2{font-family:var(--font-heading);font-size:32px;font-weight:800;color:var(--text-dark);margin-bottom:8px}
.distributor-text p{font-size:16px;color:var(--text-gray);max-width:500px}
.distributor-logos{display:flex;align-items:center;gap:32px;flex-wrap:wrap}
.distributor-logos img{height:48px;width:auto;object-fit:contain;opacity:0.85;transition:opacity 0.2s}
.distributor-logos img:hover{opacity:1}
.official-badge{display:flex;align-items:center;gap:10px;background:var(--green-primary);color:white;padding:10px 20px;border-radius:8px;font-size:13px;font-weight:700}

/* SUSTAINABILITY */
.sustainability-section{background:var(--bg-light);padding:90px 40px}
.sustainability-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.sustainability-img{border-radius:16px;overflow:hidden}
.sustainability-img img{width:100%;height:500px;object-fit:cover}
.sustainability-points{display:flex;flex-direction:column;gap:24px}
.sustain-point{display:flex;gap:16px;align-items:flex-start}
.sustain-icon{width:48px;height:48px;background:var(--green-pale);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:22px}
.sustain-point h4{font-size:16px;font-weight:700;color:var(--text-dark);margin-bottom:4px}
.sustain-point p{font-size:14px;color:var(--text-gray);line-height:1.5}

/* CTA */
.cta-section{background:var(--green-dark);padding:80px 40px;text-align:center;position:relative;overflow:hidden}
.cta-section .section-title{color:white;position:relative}
.cta-section .section-subtitle{color:rgba(255,255,255,0.7);margin-bottom:36px;position:relative}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;position:relative}
.btn-cta-primary{padding:16px 40px;background:white;color:var(--green-dark);border-radius:30px;font-size:15px;font-weight:700;transition:var(--transition)}
.btn-cta-primary:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2)}
.btn-cta-outline{padding:16px 40px;border:2px solid rgba(255,255,255,0.6);color:white;border-radius:30px;font-size:15px;font-weight:700;transition:var(--transition)}
.btn-cta-outline:hover{background:rgba(255,255,255,0.12);border-color:white}

/* FOOTER */
footer{background:#111a11;padding:72px 40px 0;color:rgba(255,255,255,0.7)}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;padding-bottom:60px}
.footer-brand-logo img{height:48px;margin-bottom:16px}
.footer-brand-text{font-size:14px;line-height:1.7;color:rgba(255,255,255,0.5);margin-bottom:24px}
.footer-social{display:flex;gap:10px}
.social-icon{width:38px;height:38px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:16px;transition:var(--transition);color:rgba(255,255,255,0.6)}
.social-icon:hover{background:var(--green-primary);border-color:var(--green-primary);color:white}
.footer-col h4{font-family:var(--font-heading);font-size:14px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:white;margin-bottom:20px}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul li a{font-size:14px;color:rgba(255,255,255,0.5);transition:var(--transition)}
.footer-col ul li a:hover{color:var(--green-light);padding-left:4px}
.footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;font-size:14px;color:rgba(255,255,255,0.5)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:24px 0;max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:13px;color:rgba(255,255,255,0.35)}
.footer-bottom a{color:var(--green-light)}

/* WHATSAPP */
.whatsapp-float{position:fixed;bottom:32px;left:32px;z-index:9999;width:58px;height:58px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.5);transition:var(--transition);animation:pulse-wa 2s infinite}
html[dir="rtl"] .whatsapp-float{left:auto;right:32px}
.whatsapp-float:hover{transform:scale(1.1);animation:none}
.whatsapp-float svg{width:30px;height:30px;fill:white}
@keyframes pulse-wa{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5)}50%{box-shadow:0 4px 32px rgba(37,211,102,0.75)}}

/* PAGE HERO */
.page-hero{margin-top:var(--nav-height);background:linear-gradient(135deg,var(--green-dark) 0%,var(--text-dark) 100%);padding:80px 40px;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:url('../images/hero2.jpg') center/cover;opacity:0.12}
.page-hero-inner{position:relative}
.page-hero h1{font-family:var(--font-heading);font-size:clamp(36px,5vw,64px);font-weight:800;color:white;margin-bottom:16px}
.page-hero p{font-size:18px;color:rgba(255,255,255,0.7);max-width:560px;margin:0 auto}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:13px;color:rgba(255,255,255,0.5);margin-bottom:20px}
.breadcrumb a{color:rgba(255,255,255,0.5)}
.breadcrumb a:hover{color:white}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:60px;align-items:start}
.contact-info-card{background:var(--text-dark);border-radius:16px;padding:40px;color:white}
.contact-info-card h3{font-family:var(--font-heading);font-size:26px;font-weight:700;color:white;margin-bottom:8px}
.contact-info-card>p{color:rgba(255,255,255,0.6);margin-bottom:32px;font-size:14px}
.contact-detail{display:flex;gap:14px;align-items:flex-start;margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,0.08)}
.contact-detail:last-of-type{border-bottom:none}
.contact-detail-icon{width:44px;height:44px;background:rgba(45,138,45,0.25);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.contact-detail-text label{font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--green-light);display:block;margin-bottom:4px}
.contact-detail-text p{font-size:15px;color:rgba(255,255,255,0.85)}
.contact-form-card{background:white;border-radius:16px;padding:40px;border:1px solid var(--border);box-shadow:var(--shadow)}
.contact-form-card h3{font-family:var(--font-heading);font-size:26px;font-weight:700;margin-bottom:8px}
.contact-form-card>p{color:var(--text-gray);font-size:14px;margin-bottom:32px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-size:13px;font-weight:600;color:var(--text-dark)}
.form-control{padding:12px 16px;border:1.5px solid var(--border);border-radius:8px;font-size:14px;font-family:var(--font-body);color:var(--text-dark);transition:var(--transition);background:var(--bg-light);width:100%}
.form-control:focus{outline:none;border-color:var(--green-primary);background:white;box-shadow:0 0 0 3px rgba(45,138,45,0.12)}
textarea.form-control{min-height:130px;resize:vertical}
.btn-submit{width:100%;padding:14px;background:var(--green-primary);color:white;border-radius:8px;font-size:15px;font-weight:700;transition:var(--transition);cursor:pointer;border:none;font-family:var(--font-body);margin-top:8px}
.btn-submit:hover{background:var(--green-dark);transform:translateY(-1px)}

/* REVEAL */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.7s ease,transform 0.7s ease}
.reveal.visible{opacity:1;transform:none}

/* RESPONSIVE */
@media(max-width:1024px){.navbar{padding:0 24px}.footer-inner{grid-template-columns:1fr 1fr;gap:36px}.why-inner,.sustainability-inner{gap:48px}}
@media(max-width:768px){:root{--nav-height:62px}.navbar-nav,.cta-btn-nav{display:none}.hamburger{display:flex}.brand-sub{display:none}.hero-content{left:24px;right:24px;bottom:60px}.solutions-strip-inner{flex-wrap:wrap}.solution-tile{flex-basis:33.33%;border-bottom:1px solid var(--border)}.section{padding:60px 24px}.why-section,.sustainability-section,.distributor-banner,.cta-section,.stats-bar,footer{padding-left:24px;padding-right:24px}.why-inner,.sustainability-inner,.contact-grid{grid-template-columns:1fr;gap:40px}.why-image{aspect-ratio:16/9}.stats-bar-inner{grid-template-columns:repeat(2,1fr)}.stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.2);padding:20px 0}.footer-inner{grid-template-columns:1fr;gap:32px}.footer-bottom{flex-direction:column;text-align:center}.form-row{grid-template-columns:1fr}.products-grid{grid-template-columns:1fr}.hero{max-height:600px}}
@media(max-width:480px){.solution-tile{flex-basis:50%}.hero-actions,.cta-actions{flex-direction:column;align-items:center}}
