@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #152E20;
  --green-mid: #1F3D2B;
  --green-accent: #3B7A57;
  --green-light: #5A9E6F;
  --green-pale: #A8D5BA;
  --cream: #F7F3ED;
  --cream-dark: #EDE8DF;
  --brown: #6B4226;
  --brown-light: #A0785A;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6E6E6E;
  --text-light: #F7F3ED;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(21,46,32,0.08);
  --shadow-md: 0 4px 20px rgba(21,46,32,0.12);
  --shadow-lg: 0 8px 40px rgba(21,46,32,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Lora', serif;
  --font-body: 'Nunito', sans-serif;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--text-body);background:var(--cream);line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;border:none;background:none;font-family:inherit}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* HEADER */
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(21,46,32,0.95);backdrop-filter:blur(12px);border-bottom:1px solid rgba(90,158,111,0.15)}
.header-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:12px;cursor:pointer;transition:opacity var(--transition);text-decoration:none}
.logo:hover{opacity:0.85}
.logo-icon svg{width:42px;height:42px}
.logo-name{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--cream);letter-spacing:3px;display:block;line-height:1.1}
.main-nav{display:flex;gap:8px}
.nav-link{font-family:var(--font-body);font-size:0.875rem;font-weight:500;color:var(--cream-dark);padding:8px 18px;border-radius:100px;transition:all var(--transition);letter-spacing:0.3px;text-decoration:none;display:inline-block}
.nav-link:hover{color:var(--white);background:rgba(168,213,186,0.12)}
.nav-link.active{color:var(--green-dark);background:var(--green-pale);font-weight:600}
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;background:none;border:none}
.hamburger .bar{width:24px;height:2px;background:var(--cream);transition:all var(--transition);border-radius:2px}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 32px;font-family:var(--font-body);font-size:0.9rem;font-weight:600;border-radius:100px;transition:all var(--transition);letter-spacing:0.5px;text-decoration:none;border:none;cursor:pointer}
.btn-primary{background:var(--green-accent);color:var(--white)}
.btn-primary:hover{background:var(--green-light);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-outline{border:1.5px solid rgba(247,243,237,0.4);color:var(--cream);background:transparent}
.btn-outline:hover{border-color:var(--cream);background:rgba(247,243,237,0.1);transform:translateY(-2px)}
.btn-light{background:var(--cream);color:var(--green-dark)}
.btn-light:hover{background:var(--white);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-outline-dark{border:1.5px solid var(--green-accent);color:var(--green-accent);padding:14px 32px;border-radius:100px;font-weight:600;font-size:0.9rem;transition:all var(--transition);background:transparent}
.btn-outline-dark:hover{background:var(--green-accent);color:var(--white);transform:translateY(-2px)}

/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,var(--green-dark) 0%,#0D1F14 100%);overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:800px;height:800px;background:radial-gradient(circle,rgba(59,122,87,0.15) 0%,transparent 70%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-30%;left:-10%;width:600px;height:600px;background:radial-gradient(circle,rgba(107,66,38,0.1) 0%,transparent 70%);border-radius:50%}
.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:120px 24px 80px}
.hero-badge{display:inline-block;font-family:var(--font-body);font-size:0.75rem;font-weight:600;color:var(--green-pale);letter-spacing:3px;text-transform:uppercase;margin-bottom:24px;padding:8px 20px;border:1px solid rgba(168,213,186,0.3);border-radius:100px;animation:fadeInUp 0.8s ease-out}
.hero-title{font-family:var(--font-heading);font-size:4rem;font-weight:700;color:var(--cream);line-height:1.15;margin-bottom:24px;animation:fadeInUp 0.8s ease-out 0.1s both}
.hero-accent{color:var(--green-pale);font-style:italic}
.hero-desc{font-size:1.1rem;color:rgba(247,243,237,0.7);max-width:560px;line-height:1.8;margin-bottom:40px;animation:fadeInUp 0.8s ease-out 0.2s both}
.hero-actions{display:flex;gap:16px;animation:fadeInUp 0.8s ease-out 0.3s both}
@keyframes fadeInUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* SECTION COMMON */
.section-header{text-align:center;margin-bottom:56px}
.section-label{display:inline-block;font-family:var(--font-body);font-size:0.75rem;font-weight:600;color:var(--green-accent);letter-spacing:3px;text-transform:uppercase;margin-bottom:12px}
.section-title{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--text-dark);line-height:1.2}

/* FEATURES */
.features-section{padding:100px 0;background:var(--white)}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.feature-card{padding:36px 28px;border-radius:var(--radius-lg);border:1px solid var(--cream-dark);background:var(--cream);transition:all var(--transition)}
.feature-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--green-pale)}
.feature-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:12px;margin-bottom:20px;color:var(--green-pale)}
.feature-icon svg{width:22px;height:22px}
.feature-card h3{font-family:var(--font-heading);font-size:1.25rem;font-weight:600;color:var(--text-dark);margin-bottom:10px}
.feature-card p{font-size:0.875rem;color:var(--text-muted);line-height:1.7}

/* PRODUCTS PREVIEW */
.products-preview{padding:100px 0;background:var(--cream)}
.preview-grid{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:20px}
.preview-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;height:320px;cursor:pointer}
.preview-card-large{grid-row:span 2;height:100%}
.preview-img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s cubic-bezier(0.4,0,0.2,1)}
.preview-card:hover .preview-img{transform:scale(1.05)}
.preview-overlay{position:absolute;bottom:0;left:0;right:0;padding:32px 24px;background:linear-gradient(to top,rgba(21,46,32,0.95) 0%,transparent 100%);color:var(--cream)}
.preview-tag{font-size:0.7rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--green-pale);margin-bottom:8px;display:block}
.preview-overlay h3{font-family:var(--font-heading);font-size:1.35rem;font-weight:600;margin-bottom:6px}
.preview-overlay p{font-size:0.82rem;color:rgba(247,243,237,0.75);line-height:1.5}
.preview-cta{text-align:center;margin-top:40px}

/* LAB SECTION */
.lab-section{padding:100px 0;background:var(--white)}
.lab-content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.lab-text .section-label{display:block;text-align:left;margin-bottom:12px}
.lab-text .section-title{text-align:left;font-size:2rem;margin-bottom:20px}
.lab-text p{color:var(--text-muted);margin-bottom:24px;line-height:1.8}
.lab-list{display:flex;flex-direction:column;gap:16px}
.lab-list li{display:flex;align-items:center;gap:12px;font-size:0.95rem;color:var(--text-body);font-weight:500}
.lab-check{width:28px;height:28px;min-width:28px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:50%;color:var(--green-pale)}
.lab-check svg{width:14px;height:14px}
.lab-image{border-radius:var(--radius-lg);overflow:hidden}
.lab-image img{width:100%;height:480px;object-fit:cover}

/* CTA SECTION */
.cta-section{padding:80px 0;background:var(--green-dark);text-align:center}
.cta-section h2{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--cream);margin-bottom:16px}
.cta-section p{color:rgba(247,243,237,0.7);font-size:1.05rem;margin-bottom:32px}

/* PAGE HERO (INTERNAL) */
.page-hero{position:relative;padding:160px 24px 80px;background:var(--green-dark);text-align:center;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:-40%;right:-15%;width:500px;height:500px;background:radial-gradient(circle,rgba(59,122,87,0.12) 0%,transparent 70%);border-radius:50%}
.page-hero-content{position:relative;z-index:2}
.page-hero h1{font-family:var(--font-heading);font-size:3rem;font-weight:700;color:var(--cream);margin-bottom:12px;animation:fadeInUp 0.7s ease-out}
.page-hero p{color:rgba(247,243,237,0.65);font-size:1.05rem;animation:fadeInUp 0.7s ease-out 0.1s both}
.page-hero .hero-badge{animation:fadeInUp 0.7s ease-out}

/* ABOUT */
.about-mission{padding:100px 0;background:var(--white)}
.mission-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.mission-image{border-radius:var(--radius-lg);overflow:hidden}
.mission-image img{width:100%;height:450px;object-fit:cover}
.mission-text .section-label{text-align:left;display:block}
.mission-text .section-title{text-align:left;font-size:2rem;margin-bottom:20px}
.mission-text p{color:var(--text-muted);margin-bottom:16px;line-height:1.8}
.about-values{padding:100px 0;background:var(--cream)}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.value-card{background:var(--white);padding:40px 32px;border-radius:var(--radius-lg);border:1px solid var(--cream-dark);transition:all var(--transition)}
.value-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--green-pale)}
.value-number{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--green-pale);margin-bottom:16px;line-height:1}
.value-card h3{font-family:var(--font-heading);font-size:1.35rem;font-weight:600;color:var(--text-dark);margin-bottom:12px}
.value-card p{font-size:0.9rem;color:var(--text-muted);line-height:1.7}
.about-lab{padding:80px 0;background:var(--white)}
.lab-banner{background:var(--green-dark);border-radius:var(--radius-lg);padding:56px 48px}
.lab-banner h2{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--cream);margin-bottom:16px}
.lab-banner p{color:rgba(247,243,237,0.7);font-size:0.95rem;line-height:1.8;max-width:700px;margin-bottom:36px}
.lab-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.lab-stat{background:rgba(168,213,186,0.1);padding:24px;border-radius:var(--radius);border:1px solid rgba(168,213,186,0.15);text-align:center}
.stat-label{display:block;font-size:0.75rem;font-weight:600;color:var(--green-pale);letter-spacing:1.5px;text-transform:uppercase;margin-bottom:8px}
.stat-value{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--cream)}
.about-benefits{padding:100px 0;background:var(--cream)}
.benefits-list{max-width:700px;margin:0 auto;display:flex;flex-direction:column;gap:20px}
.benefit-item{display:flex;align-items:flex-start;gap:16px;padding:24px;background:var(--white);border-radius:var(--radius);border:1px solid var(--cream-dark);transition:all var(--transition)}
.benefit-item:hover{border-color:var(--green-pale);box-shadow:var(--shadow-sm)}
.benefit-icon{width:36px;height:36px;min-width:36px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:50%;color:var(--green-pale)}
.benefit-icon svg{width:16px;height:16px}
.benefit-text h4{font-family:var(--font-heading);font-size:1.1rem;font-weight:600;color:var(--text-dark);margin-bottom:4px}
.benefit-text p{font-size:0.875rem;color:var(--text-muted)}

/* PRODUCTS */
.products-category{padding:100px 0;background:var(--white)}
.products-category-alt{background:var(--cream)}
.category-header{text-align:center;margin-bottom:56px}
.category-desc{color:var(--text-muted);font-size:0.95rem;max-width:650px;margin:16px auto 0;line-height:1.7}
.product-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.product-card{background:var(--cream);border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--cream-dark);transition:all var(--transition)}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.product-card-clickable{cursor:pointer;text-decoration:none;color:inherit;display:block}
.product-card-header{padding:28px 24px 20px;border-bottom:1px solid var(--cream-dark)}
.product-badge{display:inline-block;font-size:0.7rem;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--green-accent);background:rgba(59,122,87,0.1);padding:4px 14px;border-radius:100px;margin-bottom:10px}
.product-badge-dark{color:var(--brown);background:rgba(107,66,38,0.1)}
.product-badge-mid{color:var(--brown-light);background:rgba(160,120,90,0.12)}
.product-card-header h3{font-family:var(--font-heading);font-size:1.35rem;font-weight:600;color:var(--text-dark)}
.product-card-body{padding:24px}
.product-desc{font-size:0.875rem;color:var(--text-muted);line-height:1.7;margin-bottom:20px}
.product-specs{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:20px}
.spec-item{background:var(--white);padding:12px 14px;border-radius:var(--radius);border:1px solid var(--cream-dark)}
.spec-label{display:block;font-size:0.68rem;font-weight:600;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;margin-bottom:4px}
.spec-value{font-size:0.85rem;font-weight:600;color:var(--text-dark)}
.product-view-more{margin-top:16px;font-size:0.85rem;font-weight:600;color:var(--green-accent);transition:all var(--transition)}
.product-card-clickable:hover .product-view-more{color:var(--green-light)}
.products-mixes{padding:40px 0;background:var(--white)}
.mix-banner{background:var(--green-mid);border-radius:var(--radius-lg);padding:48px 40px}
.mix-banner-text h3{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;color:var(--cream);margin-bottom:12px}
.mix-banner-text p{color:rgba(247,243,237,0.7);font-size:0.95rem;line-height:1.7;max-width:600px}
.fertilizer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.fertilizer-card{background:var(--white);padding:36px 28px;border-radius:var(--radius-lg);border:1px solid var(--cream-dark);transition:all var(--transition)}
.fertilizer-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--green-pale)}
.fertilizer-card-clickable{cursor:pointer;text-decoration:none;color:inherit;display:block}
.fertilizer-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:14px;margin-bottom:20px;color:var(--green-pale)}
.fertilizer-icon svg{width:24px;height:24px}
.fertilizer-card h3{font-family:var(--font-heading);font-size:1.25rem;font-weight:600;color:var(--text-dark);margin-bottom:12px}
.fertilizer-card p{font-size:0.875rem;color:var(--text-muted);line-height:1.7;margin-bottom:20px}
.fertilizer-tags{display:flex;flex-wrap:wrap;gap:8px}
.f-tag{font-size:0.72rem;font-weight:600;color:var(--green-accent);background:rgba(59,122,87,0.08);padding:5px 14px;border-radius:100px;letter-spacing:0.3px}

/* CONTACT */
.contact-content{padding:80px 0 100px;background:var(--white)}
.contact-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:60px}
.contact-info h2,.contact-form-wrapper h2{font-family:var(--font-heading);font-size:1.75rem;font-weight:700;color:var(--text-dark);margin-bottom:16px}
.contact-intro{color:var(--text-muted);font-size:0.9rem;line-height:1.7;margin-bottom:32px}
.contact-details{display:flex;flex-direction:column;gap:24px;margin-bottom:36px}
.contact-detail-item{display:flex;align-items:flex-start;gap:16px}
.contact-icon{width:44px;height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:12px;color:var(--green-pale)}
.contact-icon svg{width:20px;height:20px}
.contact-detail-item h4{font-size:0.9rem;font-weight:600;color:var(--text-dark);margin-bottom:2px}
.contact-detail-item p{font-size:0.875rem;color:var(--text-muted)}
.contact-cta-text{padding:24px;background:var(--cream);border-radius:var(--radius);border-left:3px solid var(--green-accent)}
.contact-cta-text p{font-size:0.88rem;color:var(--text-body);font-style:italic;line-height:1.7}
.contact-form-wrapper{background:var(--cream);padding:40px;border-radius:var(--radius-lg)}
.form-success{background:rgba(59,122,87,0.1);color:var(--green-accent);padding:14px 20px;border-radius:var(--radius);margin-bottom:20px;font-size:0.9rem;font-weight:500;border:1px solid rgba(59,122,87,0.2);display:none}
.form-success.show{display:block}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{margin-bottom:16px}
.form-row .form-group{margin-bottom:0}
.form-group label{display:block;font-size:0.8rem;font-weight:600;color:var(--text-dark);margin-bottom:6px;letter-spacing:0.3px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;font-family:var(--font-body);font-size:0.9rem;color:var(--text-dark);background:var(--white);border:1.5px solid var(--cream-dark);border-radius:var(--radius);transition:all var(--transition);outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--green-accent);box-shadow:0 0 0 3px rgba(59,122,87,0.1)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-muted);opacity:0.6}
.form-group textarea{resize:vertical;min-height:120px}
.btn-submit{width:100%;padding:16px;font-size:0.95rem}

/* FAQ */
.faq-content{padding:80px 0 60px;background:var(--white)}
.faq-category{margin-bottom:48px}
.faq-category:last-child{margin-bottom:0}
.faq-category-title{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--text-dark);margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--green-pale)}
.faq-items{display:flex;flex-direction:column;gap:8px}
.faq-item{background:var(--cream);border-radius:var(--radius);border:1px solid var(--cream-dark);overflow:hidden;transition:all var(--transition)}
.faq-item:hover{border-color:var(--green-pale)}
.faq-item.open{border-color:var(--green-accent);box-shadow:var(--shadow-sm)}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;padding:18px 24px;font-family:var(--font-body);font-size:0.95rem;font-weight:600;color:var(--text-dark);text-align:left;gap:16px;cursor:pointer;background:none;border:none}
.faq-question:hover{color:var(--green-accent)}
.faq-arrow{width:20px;height:20px;min-width:20px;color:var(--text-muted);transition:transform var(--transition)}
.faq-item.open .faq-arrow{transform:rotate(180deg);color:var(--green-accent)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s ease-out}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer-inner{padding:0 24px 20px}
.faq-answer p{font-size:0.9rem;color:var(--text-muted);line-height:1.8}
.faq-cta{padding:60px 0 80px;background:var(--white)}
.faq-cta-box{background:var(--green-dark);border-radius:var(--radius-lg);padding:56px 48px;text-align:center}
.faq-cta-box h2{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--cream);margin-bottom:12px}
.faq-cta-box p{color:rgba(247,243,237,0.7);font-size:0.95rem;margin-bottom:28px}

/* PRODUCT DETAIL */
.detail-breadcrumb{padding:20px 0;background:var(--cream);border-bottom:1px solid var(--cream-dark)}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:0.85rem}
.breadcrumb a{color:var(--green-accent);font-weight:500;transition:color var(--transition);text-decoration:none}
.breadcrumb a:hover{color:var(--green-light)}
.breadcrumb-sep{color:var(--text-muted)}
.breadcrumb-current{color:var(--text-muted);font-weight:500}
.detail-main{padding:60px 0;background:var(--white)}
.detail-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:flex-start}
.detail-image{border-radius:var(--radius-lg);overflow:hidden;position:sticky;top:92px}
.detail-image img{width:100%;height:420px;object-fit:cover}
.detail-info .product-badge{margin-bottom:16px}
.detail-info h2{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--text-dark);margin-bottom:16px}
.detail-desc{font-size:0.95rem;color:var(--text-muted);line-height:1.8;margin-bottom:32px}
.detail-specs h3{font-family:var(--font-heading);font-size:1.2rem;font-weight:600;color:var(--text-dark);margin-bottom:16px}
.detail-specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.detail-spec-item{background:var(--cream);padding:16px;border-radius:var(--radius);border:1px solid var(--cream-dark)}
.detail-spec-label{display:block;font-size:0.7rem;font-weight:600;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;margin-bottom:6px}
.detail-spec-value{font-size:0.9rem;font-weight:600;color:var(--text-dark)}
.detail-extra{padding:60px 0;background:var(--cream)}
.detail-extra-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.detail-block{background:var(--white);padding:32px 28px;border-radius:var(--radius-lg);border:1px solid var(--cream-dark)}
.detail-block h3{font-family:var(--font-heading);font-size:1.15rem;font-weight:600;color:var(--text-dark);margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--green-pale)}
.detail-list{display:flex;flex-direction:column;gap:12px}
.detail-list li{display:flex;align-items:flex-start;gap:10px;font-size:0.88rem;color:var(--text-body);line-height:1.6}
.detail-dot{width:6px;height:6px;min-width:6px;background:var(--green-accent);border-radius:50%;margin-top:8px}
.detail-check{width:22px;height:22px;min-width:22px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:50%;color:var(--green-pale);margin-top:2px}
.detail-check svg{width:11px;height:11px}
.detail-tags{display:flex;flex-wrap:wrap;gap:8px}
.detail-tag{font-size:0.8rem;font-weight:500;color:var(--green-accent);background:rgba(59,122,87,0.08);padding:8px 16px;border-radius:100px;border:1px solid rgba(59,122,87,0.15)}
.detail-tips{padding:40px 0;background:var(--cream)}
.tips-box{display:flex;align-items:flex-start;gap:20px;background:var(--white);padding:28px 32px;border-radius:var(--radius-lg);border:1px solid var(--green-pale);border-left:4px solid var(--green-accent)}
.tips-icon{width:44px;height:44px;min-width:44px;display:flex;align-items:center;justify-content:center;background:var(--green-dark);border-radius:12px;color:var(--green-pale)}
.tips-icon svg{width:22px;height:22px}
.tips-text h3{font-family:var(--font-heading);font-size:1.1rem;font-weight:600;color:var(--text-dark);margin-bottom:8px}
.tips-text p{font-size:0.9rem;color:var(--text-muted);line-height:1.7}
.detail-back-section{padding:40px 0 80px;background:var(--cream)}
.detail-back-actions{display:flex;gap:16px;justify-content:center}

/* FOOTER */
.site-footer{background:var(--green-dark);padding:60px 0 0}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 24px}
.footer-brand{margin-bottom:40px}
.footer-logo-text{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--cream);letter-spacing:3px;margin-bottom:8px}
.footer-tagline{color:rgba(247,243,237,0.5);font-size:0.9rem}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(168,213,186,0.1)}
.footer-col h4{font-family:var(--font-body);font-size:0.75rem;font-weight:600;color:var(--green-pale);letter-spacing:2px;text-transform:uppercase;margin-bottom:16px}
.footer-col a,.footer-col p{display:block;font-size:0.875rem;color:rgba(247,243,237,0.55);margin-bottom:10px;transition:color var(--transition);text-decoration:none}
.footer-col a:hover{color:var(--cream)}
.footer-bottom{padding:20px 0;text-align:center}
.footer-bottom p{font-size:0.78rem;color:rgba(247,243,237,0.35)}

/* RESPONSIVE */
@media(max-width:1024px){
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .product-cards{grid-template-columns:repeat(2,1fr)}
  .fertilizer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .hamburger{display:flex}
  .main-nav{position:fixed;top:72px;left:0;right:0;background:rgba(21,46,32,0.98);backdrop-filter:blur(12px);flex-direction:column;padding:20px 24px;gap:4px;transform:translateY(-120%);opacity:0;transition:all var(--transition)}
  .main-nav.nav-open{transform:translateY(0);opacity:1}
  .nav-link{text-align:left;padding:12px 18px;border-radius:var(--radius);display:block}
  .hero-title{font-size:2.5rem}
  .hero-desc{font-size:0.95rem}
  .hero-actions{flex-direction:column;gap:12px}
  .hero-content{padding:120px 24px 60px}
  .features-grid,.values-grid,.product-cards,.fertilizer-grid{grid-template-columns:1fr}
  .preview-grid{grid-template-columns:1fr}
  .preview-card-large{grid-row:span 1;height:320px}
  .lab-content,.mission-layout,.contact-layout,.detail-layout{grid-template-columns:1fr;gap:40px}
  .lab-image img,.mission-image img{height:300px}
  .section-title{font-size:2rem}
  .page-hero h1{font-size:2.2rem}
  .lab-stats{grid-template-columns:1fr;gap:12px}
  .form-row{grid-template-columns:1fr}
  .contact-form-wrapper{padding:28px 20px}
  .footer-links{grid-template-columns:1fr;gap:28px}
  .lab-banner,.mix-banner,.faq-cta-box{padding:36px 24px}
  .cta-section h2,.faq-cta-box h2{font-size:1.8rem}
  .detail-image{position:static}
  .detail-image img{height:260px}
  .detail-extra-grid,.detail-specs-grid{grid-template-columns:1fr}
  .detail-back-actions{flex-direction:column;align-items:center}
  .tips-box{flex-direction:column;padding:24px 20px}
  .faq-question{padding:16px 18px;font-size:0.88rem}
  .faq-answer-inner{padding:0 18px 16px}
}
@media(max-width:480px){
  .hero-title{font-size:2rem}
  .section-title{font-size:1.6rem}
  .page-hero h1{font-size:1.8rem}
  .product-specs{grid-template-columns:1fr}
  .stat-value{font-size:1.2rem}
}
