/* YMJ EXPORTS — Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --white:#ffffff;--off-white:#f8f6f2;--green-deep:#1e4228;--green-mid:#2b5d34;--green-light:#3a7d44;
  --gold:#c9a84c;--gold-light:#e0c56a;--gold-muted:#a8893a;
  --text-dark:#1a1a1a;--text-mid:#3d3d3d;--text-muted:#717171;
  --border:rgba(43,93,52,0.12);--shadow-sm:0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:0 8px 32px rgba(0,0,0,0.10);--shadow-lg:0 20px 60px rgba(0,0,0,0.14);
  --radius:12px;--radius-lg:20px;--transition:0.35s cubic-bezier(0.4,0,0.2,1);
  --font-body:'Inter',sans-serif;--font-display:'Playfair Display',Georgia,serif;
  --max-width:1200px;--section-pad:100px 24px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--text-dark);background:var(--white);line-height:1.7;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}

.section-eyebrow{display:inline-block;font-size:0.72rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold);margin-bottom:14px}
.section-title{font-family:var(--font-display);font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--green-deep);line-height:1.22;margin-bottom:20px}
.section-subtitle{font-size:1.05rem;color:var(--text-muted);max-width:620px;line-height:1.75}
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.text-center .section-subtitle{margin:0 auto}
.gold-line{width:56px;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:4px;margin-bottom:24px}
.text-center .gold-line{margin:0 auto 24px}

.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:6px;font-size:0.92rem;font-weight:600;letter-spacing:0.04em;transition:var(--transition);cursor:pointer}
.btn-primary{background:var(--gold);color:var(--green-deep)}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(201,168,76,0.35)}
.btn-outline{border:2px solid rgba(255,255,255,0.75);color:var(--white)}
.btn-outline:hover{background:rgba(255,255,255,0.12);transform:translateY(-2px)}
.btn-green{background:var(--green-mid);color:var(--white)}
.btn-green:hover{background:var(--green-deep);transform:translateY(-2px);box-shadow:0 8px 24px rgba(43,93,52,0.25)}
.btn-outline-green{border:2px solid var(--green-mid);color:var(--green-mid);padding:12px 30px}
.btn-outline-green:hover{background:var(--green-mid);color:var(--white);transform:translateY(-2px)}

[data-reveal]{opacity:0;transform:translateY(32px);transition:opacity 0.7s ease,transform 0.7s ease}
[data-reveal].visible{opacity:1;transform:translateY(0)}

/* NAV */
#navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:0 24px;height:72px;display:flex;align-items:center;justify-content:space-between;transition:background var(--transition),box-shadow var(--transition)}
#navbar.scrolled{background:rgba(255,255,255,0.96);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 2px 20px rgba(0,0,0,0.08)}
.nav-logo{display:flex;flex-direction:column;line-height:1.1}
.nav-logo .logo-main{font-family:var(--font-display);font-size:1.35rem;font-weight:700;color:var(--white);transition:color var(--transition)}
.nav-logo .logo-sub{font-size:0.62rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold-light);transition:color var(--transition)}
#navbar.scrolled .logo-main{color:var(--green-deep)}
#navbar.scrolled .logo-sub{color:var(--gold-muted)}
.nav-links{display:flex;align-items:center;gap:36px}
.nav-links a{font-size:0.82rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:rgba(255,255,255,0.88);transition:color var(--transition);position:relative}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--gold);border-radius:2px;transition:width var(--transition)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a:hover{color:var(--white)}
#navbar.scrolled .nav-links a{color:var(--text-mid)}
#navbar.scrolled .nav-links a:hover{color:var(--green-deep)}
.nav-cta{background:var(--gold)!important;color:var(--green-deep)!important;padding:9px 22px;border-radius:6px;font-size:0.82rem!important;font-weight:700!important}
.nav-cta::after{display:none!important}
.nav-cta:hover{background:var(--gold-light)!important}
.hamburger{display:none;flex-direction:column;gap:5px;padding:6px;z-index:1100;cursor:pointer;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:var(--transition)}
#navbar.scrolled .hamburger span{background:var(--green-deep)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.nav-drawer{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--white);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:32px}
.nav-drawer.open{display:flex}
.nav-drawer a{font-size:1.35rem;font-weight:600;color:var(--green-deep);letter-spacing:0.06em}
.nav-drawer a:hover{color:var(--gold)}

/* HERO */
#hero{position:relative;width:100%;height:100vh;min-height:640px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:url('../assets/hero-bg2.png') center center/cover no-repeat;transform:scale(1.04);animation:heroZoom 18s ease-in-out infinite alternate}
@keyframes heroZoom{from{transform:scale(1.04)}to{transform:scale(1.00)}}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(160deg,rgba(15,35,20,0.72) 0%,rgba(25,58,32,0.60) 50%,rgba(10,25,14,0.80) 100%)}
.hero-content{position:relative;z-index:2;text-align:center;padding:0 24px;max-width:840px;animation:heroFadeIn 1.2s ease both}
@keyframes heroFadeIn{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-badge{display:inline-flex;align-items:center;gap:10px;background:rgba(201,168,76,0.15);border:1px solid rgba(201,168,76,0.45);border-radius:40px;padding:8px 20px;font-size:0.75rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold-light);margin-bottom:28px}
.hero-badge span{width:6px;height:6px;border-radius:50%;background:var(--gold);display:inline-block}
.hero-title{font-family:var(--font-display);font-size:clamp(2.2rem,6vw,4.2rem);color:var(--white);line-height:1.12;margin-bottom:22px;text-shadow:0 2px 24px rgba(0,0,0,0.3)}
.hero-title em{font-style:italic;color:var(--gold-light)}
.hero-sub{font-size:clamp(0.95rem,2vw,1.15rem);color:rgba(255,255,255,0.82);max-width:580px;margin:0 auto 14px;line-height:1.65}
.hero-tags{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:40px}
.hero-tag{font-size:0.75rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold-light);border:1px solid rgba(201,168,76,0.4);border-radius:40px;padding:5px 16px}
.hero-buttons{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-bottom:44px}
.hero-phone{display:inline-flex;align-items:center;gap:10px;color:rgba(255,255,255,0.92);font-size:1.05rem;font-weight:600;transition:color var(--transition)}
.hero-phone:hover{color:var(--gold-light)}
.hero-phone .phone-icon{width:40px;height:40px;border-radius:50%;background:rgba(201,168,76,0.18);border:1px solid rgba(201,168,76,0.4);display:flex;align-items:center;justify-content:center}
.hero-scroll{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,0.5);font-size:0.7rem;letter-spacing:0.14em;text-transform:uppercase;animation:scrollBounce 2.4s ease-in-out infinite}
@keyframes scrollBounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}
.hero-scroll::before{content:'';display:block;width:1px;height:40px;background:linear-gradient(to bottom,transparent,rgba(255,255,255,0.4));margin-bottom:4px}

/* WHATSAPP FLOAT */
#whatsapp-float{position:fixed;bottom:28px;right:28px;z-index:2000;width:58px;height:58px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 24px rgba(37,211,102,0.45);transition:transform var(--transition),box-shadow var(--transition)}
#whatsapp-float:hover{transform:scale(1.1);box-shadow:0 10px 32px rgba(37,211,102,0.55)}
#whatsapp-float svg{width:30px;height:30px;fill:#fff}

/* TRUST BAR */
#trust-bar{background:var(--green-deep);padding:18px 24px}
.trust-bar-inner{max-width:var(--max-width);margin:0 auto;display:flex;align-items:center;justify-content:space-around;flex-wrap:wrap;gap:20px}
.trust-item{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,0.88);font-size:0.85rem;font-weight:500}
.trust-item .t-icon{color:var(--gold);font-size:1.4rem}
.trust-item strong{color:var(--white)}

/* LEGACY */
#legacy{padding:var(--section-pad);background:var(--white)}
.legacy-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;max-width:var(--max-width);margin:0 auto}
.legacy-stat-block{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:40px}
.stat-card{background:var(--off-white);border:1px solid var(--border);border-radius:var(--radius);padding:28px 24px;transition:box-shadow var(--transition)}
.stat-card:hover{box-shadow:var(--shadow-md)}
.stat-number{font-family:var(--font-display);font-size:2.4rem;font-weight:700;color:var(--green-mid);line-height:1;margin-bottom:6px}
.stat-number .gold{color:var(--gold)}
.stat-label{font-size:0.8rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-muted)}
.legacy-image-wrap{position:relative}
.legacy-image-wrap img{border-radius:var(--radius-lg);width:100%;object-fit:cover;aspect-ratio:4/5;box-shadow:var(--shadow-lg)}
.legacy-badge{position:absolute;bottom:28px;left:-24px;background:var(--gold);color:var(--green-deep);border-radius:var(--radius);padding:18px 24px;font-size:0.8rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;box-shadow:var(--shadow-md);line-height:1.4}
.legacy-badge .badge-year{font-family:var(--font-display);font-size:2rem;font-weight:700;display:block;line-height:1}

/* PRODUCTS */
#products{padding:var(--section-pad);background:var(--off-white)}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px;margin-top:56px}
.product-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:34px 28px;transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);display:flex;flex-direction:column;gap:14px}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:rgba(43,93,52,0.25)}
.product-icon{font-size:2rem;line-height:1}
.product-name{font-family:var(--font-display);font-size:1.18rem;font-weight:700;color:var(--green-deep)}
.product-desc{font-size:0.88rem;color:var(--text-muted);line-height:1.7;flex:1}
.product-tags{display:flex;flex-wrap:wrap;gap:6px}
.product-tag{font-size:0.68rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;padding:4px 12px;border-radius:40px;background:rgba(201,168,76,0.12);color:var(--gold-muted);border:1px solid rgba(201,168,76,0.25)}
.product-card.featured{border-color:var(--gold-muted);background:linear-gradient(145deg,rgba(201,168,76,0.04),#fff)}
.product-card.featured .product-name{color:var(--gold-muted)}
.featured-badge{display:inline-block;font-size:0.62rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;background:var(--gold);color:var(--green-deep);border-radius:40px;padding:4px 12px}

/* PROCESS */
#process{padding:var(--section-pad);background:var(--white)}
.process-steps{display:flex;align-items:flex-start;margin-top:64px;overflow-x:auto;padding-bottom:12px}
.process-step{flex:1;min-width:160px;text-align:center;position:relative;padding:0 16px}
.process-step::before{content:'';position:absolute;top:28px;left:50%;width:100%;height:2px;background:linear-gradient(90deg,var(--gold),rgba(201,168,76,0.2))}
.process-step:last-child::before{display:none}
.step-circle{width:56px;height:56px;border-radius:50%;background:var(--green-deep);border:3px solid var(--gold);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;position:relative;z-index:1;font-size:1.3rem;transition:transform var(--transition),box-shadow var(--transition)}
.process-step:hover .step-circle{transform:scale(1.12);box-shadow:0 6px 24px rgba(201,168,76,0.35)}
.step-number{position:absolute;top:-8px;right:-8px;width:22px;height:22px;background:var(--gold);border-radius:50%;font-size:0.65rem;font-weight:800;color:var(--green-deep);display:flex;align-items:center;justify-content:center}
.step-title{font-size:0.88rem;font-weight:700;color:var(--green-deep);margin-bottom:8px;line-height:1.3}
.step-desc{font-size:0.78rem;color:var(--text-muted);line-height:1.55}

/* GLOBAL REACH */
#global-reach{padding:var(--section-pad);background:var(--green-deep);overflow:hidden}
#global-reach .section-title{color:var(--white)}
#global-reach .section-subtitle{color:rgba(255,255,255,0.7)}
#global-reach .gold-line{background:linear-gradient(90deg,var(--gold),var(--gold-light))}
.globe-wrapper{display:grid;grid-template-columns:1fr 420px;gap:60px;align-items:center;margin-top:56px;max-width:var(--max-width);margin-left:auto;margin-right:auto}
#globe-canvas{width:100%;aspect-ratio:1;max-width:520px;margin:0 auto;display:block;cursor:grab;border-radius:50%;box-shadow:0 0 80px rgba(201,168,76,0.12)}
#globe-canvas:active{cursor:grabbing}
.globe-countries{color:var(--white)}
.globe-countries h3{font-family:var(--font-display);font-size:1.15rem;color:var(--gold-light);margin-bottom:20px}
.countries-list{display:flex;flex-wrap:wrap;gap:8px}
.country-pill{font-size:0.75rem;font-weight:500;padding:6px 14px;border-radius:40px;border:1px solid rgba(255,255,255,0.18);color:rgba(255,255,255,0.8);transition:var(--transition);cursor:default}
.country-pill:hover,.country-pill.origin{background:rgba(201,168,76,0.18);border-color:var(--gold-muted);color:var(--gold-light)}
.country-pill.origin{font-weight:700}
#globe-tooltip{position:fixed;pointer-events:none;z-index:5000;background:rgba(15,35,20,0.92);color:var(--gold-light);border:1px solid rgba(201,168,76,0.35);border-radius:8px;padding:8px 16px;font-size:0.82rem;font-weight:600;opacity:0;transition:opacity 0.2s;white-space:nowrap}

/* BUY & SELL */
.buy-sell-section{padding:var(--section-pad)}
#buy-from-us{background:var(--white)}
#sell-to-us{background:var(--off-white)}
.buy-sell-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;max-width:var(--max-width);margin:0 auto}
.buy-sell-grid.reverse{direction:rtl}
.buy-sell-grid.reverse>*{direction:ltr}
.buy-sell-features{display:flex;flex-direction:column;gap:20px;margin-top:36px;margin-bottom:40px}
.feature-item{display:flex;gap:16px;align-items:flex-start}
.feature-icon{width:44px;height:44px;border-radius:var(--radius);background:rgba(43,93,52,0.08);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.feature-text h4{font-size:0.92rem;font-weight:700;color:var(--green-deep);margin-bottom:4px}
.feature-text p{font-size:0.83rem;color:var(--text-muted);line-height:1.6}
.buy-sell-visual{position:relative}
.buy-sell-visual img{width:100%;border-radius:var(--radius-lg);object-fit:cover;aspect-ratio:4/5;box-shadow:var(--shadow-lg)}

/* CONTACT */
#contact{padding:var(--section-pad);background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:80px;max-width:var(--max-width);margin:0 auto}
.contact-info{display:flex;flex-direction:column;gap:28px}
.contact-info-header p{font-size:1rem;color:var(--text-muted);margin-top:12px;line-height:1.75}
.contact-items{display:flex;flex-direction:column;gap:20px}
.contact-item{display:flex;gap:16px;align-items:flex-start}
.contact-item-icon{width:46px;height:46px;border-radius:var(--radius);background:rgba(43,93,52,0.08);display:flex;align-items:center;justify-content:center;font-size:1.15rem;flex-shrink:0}
.contact-item-text{display:flex;flex-direction:column;gap:4px}
.contact-item-text strong{font-size:0.8rem;text-transform:uppercase;letter-spacing:0.1em;color:var(--green-mid)}
.contact-item-text a,.contact-item-text span{font-size:1rem;color:var(--text-dark);font-weight:500;transition:color var(--transition)}
.contact-item-text a:hover{color:var(--green-mid)}
.whatsapp-cta{display:inline-flex;align-items:center;gap:10px;background:#25d366;color:#fff!important;padding:12px 24px;border-radius:8px;font-weight:700;font-size:0.92rem;transition:var(--transition);width:fit-content}
.whatsapp-cta:hover{background:#1da851;transform:translateY(-2px);box-shadow:0 6px 20px rgba(37,211,102,0.35)}
.contact-form-wrap{background:var(--off-white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:48px 40px}
.contact-form-wrap h3{font-family:var(--font-display);font-size:1.4rem;color:var(--green-deep);margin-bottom:8px}
.contact-form-wrap>p{font-size:0.88rem;color:var(--text-muted);margin-bottom:32px}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:0.78rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-mid);margin-bottom:8px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:14px 16px;border:1.5px solid rgba(0,0,0,0.1);border-radius:8px;font-family:var(--font-body);font-size:0.95rem;color:var(--text-dark);background:var(--white);transition:border-color var(--transition),box-shadow var(--transition);outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--green-mid);box-shadow:0 0 0 3px rgba(43,93,52,0.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-success{display:none;background:rgba(43,93,52,0.08);border:1px solid rgba(43,93,52,0.25);border-radius:8px;padding:16px 20px;color:var(--green-deep);font-size:0.9rem;font-weight:600;margin-top:16px}

/* FOOTER */
#footer{background:var(--green-deep);color:rgba(255,255,255,0.7);padding:64px 24px 32px}
.footer-inner{max-width:var(--max-width);margin:0 auto}
.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.08)}
.footer-brand .logo-main{font-family:var(--font-display);font-size:1.6rem;color:var(--white)}
.footer-brand .logo-sub{font-size:0.68rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold-muted)}
.footer-brand p{font-size:0.85rem;line-height:1.7;margin-top:16px;max-width:260px}
.footer-col h4{font-size:0.78rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold-light);margin-bottom:20px}
.footer-col ul{display:flex;flex-direction:column;gap:12px}
.footer-col ul li a{font-size:0.85rem;color:rgba(255,255,255,0.65);transition:color var(--transition)}
.footer-col ul li a:hover{color:var(--gold-light)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:0.78rem}
.footer-bottom .gold{color:var(--gold-muted)}
.footer-tagline{font-style:italic;font-size:0.78rem;color:rgba(255,255,255,0.4)}

/* RESPONSIVE */
@media(max-width:1024px){
  .globe-wrapper{grid-template-columns:1fr}
  .globe-countries{order:-1}
  #globe-canvas{max-width:360px}
  .legacy-badge{left:12px}
}
@media(max-width:768px){
  :root{--section-pad:72px 20px}
  .nav-links{display:none}
  .hamburger{display:flex}
  .hero-title{font-size:2.1rem}
  .legacy-grid,.buy-sell-grid,.contact-grid{grid-template-columns:1fr;gap:48px}
  .buy-sell-grid.reverse{direction:ltr}
  .legacy-image-wrap,.buy-sell-visual{order:-1}
  .legacy-badge{left:12px}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px}
  .contact-form-wrap{padding:32px 24px}
  .form-row{grid-template-columns:1fr}
  .legacy-stat-block{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .hero-title{font-size:1.8rem}
  .hero-buttons{flex-direction:column;align-items:center}
  .footer-top{grid-template-columns:1fr}
  .trust-bar-inner{flex-direction:column;gap:12px}
  .buy-sell-grid{gap:36px}
  .legacy-stat-block{grid-template-columns:1fr}
}

/* NEW ABOUT SECTION STYLES */
.about-top-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-bottom: 80px; align-items: start; }
.about-title { font-family: var(--font-display); font-size: 2.8rem; color: var(--green-deep); margin-bottom: 32px; line-height: 1.2; }
.about-p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; max-width: 600px; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; border-left: 1px solid rgba(0,0,0,0.05); padding-left: 60px; }
.about-feature h4 { font-size: 0.85rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px; font-weight: 700; text-transform: uppercase; }
.about-feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 60px; border-top: 1px solid rgba(0,0,0,0.05); }
.about-stat-item { background: #fdfdfd; border: 1px solid rgba(0,0,0,0.04); border-radius: 8px; padding: 40px 24px; text-align: center; transition: transform 0.3s; }
.about-stat-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.about-stat-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 24px; opacity: 0.9; }
.about-stat-value { font-size: 2.2rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; font-family: var(--font-body); }
.about-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; line-height: 1.4; }

@media (max-width: 1024px) {
  .about-top-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-features-grid { padding-left: 0; border-left: none; }
}
@media (max-width: 768px) {
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .about-title { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .about-stats-row { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* LOGO REFINEMENT */
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-circle { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .logo-main { letter-spacing: 0.05em; font-weight: 800; font-size: 1.2rem; }
.logo-text .logo-sub { font-size: 0.55rem; letter-spacing: 0.1em; color: var(--gold); }
#navbar.scrolled .logo-text .logo-main { color: var(--green-deep); }
