/* ═══════════════════════════════════════════════
   UTOPIA AGRO — Brand Design System
   Primary: #7bc142 (leaf)  |  Support: #2d7a3a (green)
═══════════════════════════════════════════════ */

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

:root {
  --leaf:         #7bc142;
  --leaf-light:   #9dd45e;
  --leaf-pale:    #e8f5d6;
  --leaf-dark:    #5f9a30;
  --green:        #2d7a3a;
  --green-deep:   #1e5228;
  --green-mid:    #3a9e4b;
  --white:        #ffffff;
  --off-white:    #f5f9f0;
  --light:        #eaf2e3;
  --border:       #c8ddb8;
  --text:         #1a2b1c;
  --text-muted:   #4a6350;
  --font:         'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --max-w:        1320px;
  --section-py:   96px;
  --nav-h:        80px;
  --top-h:        44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar { background: var(--green-deep); height: var(--top-h); position: relative; z-index: 100; }
.topbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar-contact { display: flex; gap: 28px; }
.topbar-contact span, .topbar a { font-size: 0.78rem; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-contact span i, .topbar a i { color: var(--leaf); font-size: 0.7rem; }
.topbar a:hover { color: var(--leaf); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { font-size: 0.78rem; font-weight: 700; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 200; background: var(--white); height: var(--nav-h); border-bottom: 4px solid var(--leaf); box-shadow: 0 2px 16px rgba(123,193,66,0.15); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links li a { font-size: 0.76rem; font-weight: 700; color: var(--text); padding: 8px 13px; text-transform: uppercase; letter-spacing: 0.9px; position: relative; transition: color 0.2s; }
.nav-links li a::after { content: ''; position: absolute; bottom: 4px; left: 13px; right: 13px; height: 2px; background: var(--leaf); transform: scaleX(0); transition: transform 0.22s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--green); }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--leaf) !important; color: var(--text) !important; padding: 10px 22px !important; font-weight: 800 !important; margin-left: 8px; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--leaf-light) !important; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: var(--font); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.9px; text-transform: uppercase; cursor: pointer; transition: all 0.22s; border: none; line-height: 1; }
.btn-primary { background: var(--leaf); color: var(--text); }
.btn-primary:hover { background: var(--leaf-light); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); }
.btn-dark { background: var(--green-deep); color: var(--white); }
.btn-dark:hover { background: var(--text); }
.btn-navy { background: var(--green-deep); color: var(--white); }
.btn-navy:hover { background: var(--text); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ── LAYOUT ── */
section { padding: var(--section-py) 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.bg-off   { background: var(--off-white); }
.bg-light { background: var(--light); }
.bg-green { background: var(--green); }
.bg-deep  { background: var(--green-deep); }
.bg-leaf  { background: var(--leaf); }

/* ── TYPOGRAPHY ── */
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--green); margin-bottom: 12px; }
.section-title { font-family: var(--font-cond); font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text); line-height: 1.1; letter-spacing: -0.5px; }
.section-title em { color: var(--green); font-style: normal; }
.divider { width: 48px; height: 4px; background: var(--leaf); margin: 18px 0 24px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--green-deep); padding: 80px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 50%, rgba(123,193,66,0.22) 0%, transparent 60%), radial-gradient(ellipse at 10% 90%, rgba(123,193,66,0.12) 0%, transparent 40%); z-index: 0; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb a { color: var(--leaf); }
.page-hero h1 { font-family: var(--font-cond); font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.05; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 640px; font-weight: 300; }

/* ── PRODUCT LIST ── */
.product-list { list-style: none; margin: 0 0 26px; }
.product-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 10px; }
.product-list li::before { content: ''; width: 8px; height: 8px; min-width: 8px; background: var(--leaf); }

/* ── CTA BAND ── */
.cta-band { background: var(--green); padding: 72px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--leaf); }
.cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 90% 50%, rgba(123,193,66,0.18) 0%, transparent 55%); }
.cta-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-family: var(--font-cond); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--white); letter-spacing: -0.3px; }
.cta-inner h2 em { color: var(--leaf); font-style: normal; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--green-deep); padding-top: 72px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.footer-brand .logo img { height: 52px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.82; margin-bottom: 24px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-contact-list li i { color: var(--leaf); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.38); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 0.88rem; color: rgba(255,255,255,0.58); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--leaf); }
.footer-links li a::before { content: '→'; font-size: 0.7rem; opacity: 0.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 40px; max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.32); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; --nav-h: 68px; }
  .topbar-contact span:not(:first-child) { display: none; }
  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px 40px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 18px 20px; }
  .nav-links li a { padding: 8px 9px; font-size: 0.7rem; }
  .logo img { height: 46px; }
  .page-hero { padding: 56px 0; }
  .page-hero-inner { padding: 0 20px; }
  .cta-inner { padding: 0 20px; }
}
