/* ============================
   ICANGO v2 — Multi-page Website
   Cores: #0D3B2E, #1B6B4D, #D4A843, #FAFAF8
   ============================ */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr)!important;gap:24px;margin-top:40px}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Manrope',system-ui,-apple-system,sans-serif;background:#FAFAF8;color:#1A1A1A;line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer}

/* ====== TOP BAR ====== */
.topbar{background:#0D3B2E;color:#A8D5BA;font-size:12px;padding:6px 0;text-align:center;letter-spacing:.5px}
.topbar a{color:#A8D5BA}.topbar a:hover{color:#D4A843}

/* ====== NAV ====== */
.nav{background:#fff;border-bottom:1px solid #E8E6E1;padding:0 40px;display:flex;align-items:center;justify-content:space-between;height:72px;position:sticky;top:0;z-index:100;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.nav-logo{display:flex;align-items:center;gap:8px;text-decoration:none}
.nav-icon{width:42px;height:42px;border-radius:10px;background:linear-gradient(135deg,#0D3B2E,#1B6B4D);display:flex;align-items:center;justify-content:center;font-size:20px;color:#fff;font-weight:800}
.nav-brand h2{font-size:18px;color:#0D3B2E;letter-spacing:-.5px;line-height:1;font-weight:800}
.nav-brand span{font-size:9px;color:#7A8B7E;letter-spacing:1.5px;text-transform:uppercase;display:block}
.nav-links{display:flex;gap:28px;font-size:13.5px;font-weight:500;color:#4A5A4E}
.nav-links a{padding:4px 0;border-bottom:2px solid transparent;transition:all .2s}
.nav-links a:hover,.nav-links a.active{color:#0D3B2E;border-bottom-color:#1B6B4D}
.nav-cta{background:#D4A843;color:#0D3B2E;border:none;padding:10px 22px;border-radius:8px;font-weight:700;font-size:13px;letter-spacing:.3px;transition:all .2s;display:inline-block}
.nav-cta:hover{background:#C49A38;transform:translateY(-1px)}
.nav-toggle{display:none;background:none;border:none;font-size:24px;color:#0D3B2E}
@media(max-width:900px){
  .nav-links{display:none}.nav-toggle{display:block}.nav{padding:0 20px}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:72px;left:0;right:0;background:#fff;padding:20px;border-bottom:1px solid #E8E6E1;box-shadow:0 4px 12px rgba(0,0,0,.08);z-index:200}
}

/* ====== BUTTONS ====== */
.btn-primary{background:#D4A843;color:#0D3B2E;border:none;padding:14px 28px;border-radius:8px;font-weight:700;font-size:15px;transition:all .2s;display:inline-block}
.btn-primary:hover{background:#C49A38;transform:translateY(-1px)}
.btn-secondary{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.3);padding:14px 28px;border-radius:8px;font-weight:600;font-size:15px;transition:all .2s;display:inline-block}
.btn-secondary:hover{border-color:rgba(255,255,255,.6);background:rgba(255,255,255,.05)}
.btn-outline{background:transparent;color:#0D3B2E;border:2px solid #0D3B2E;padding:12px 24px;border-radius:8px;font-weight:700;font-size:14px;transition:all .2s;display:inline-block}
.btn-outline:hover{background:#0D3B2E;color:#fff}

/* ============================
   HOMEPAGE — FULLSCREEN HERO
   ============================ */
.hero-fullscreen{
  background:linear-gradient(135deg,#0D3B2E 0%,#134D3A 40%,#1B6B4D 100%);
  min-height:calc(100vh - 72px - 30px); /* minus nav and topbar */
  padding:50px 60px 0;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:center;
}
.hero-deco{position:absolute;top:0;right:0;width:50%;height:100%;background:linear-gradient(135deg,transparent 30%,rgba(212,168,67,.08) 100%);border-radius:0 0 0 200px}
.hero-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto;width:100%;display:grid;grid-template-columns:55% 45%;gap:40px;align-items:center}
.hero-tag{color:#D4A843;font-size:12px;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin-bottom:16px}
.hero h1{color:#fff;font-size:44px;font-weight:800;line-height:1.1;margin-bottom:20px;letter-spacing:-1px}
.hero h1 .accent{color:#D4A843}
.hero-desc{color:#A8D5BA;font-size:16px;line-height:1.7;margin-bottom:28px;max-width:500px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}

/* 4 Navigation Cards */
.hero-nav-cards{display:flex;flex-direction:column;gap:10px}
.hero-card{
  display:flex;align-items:center;gap:16px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:12px;padding:16px 20px;
  transition:all .3s;color:#fff;text-decoration:none;
}
.hero-card:hover{
  background:rgba(255,255,255,.12);
  border-color:var(--card-color,#D4A843);
  transform:translateX(-4px);
}
.hero-card-icon{font-size:28px;flex-shrink:0}
.hero-card h3{font-weight:700;font-size:15px;line-height:1.2}
.hero-card p{color:#A8D5BA;font-size:12px;margin-top:2px}
.hero-card-arrow{margin-left:auto;font-size:18px;opacity:0;transition:all .3s;color:var(--card-color,#D4A843)}
.hero-card:hover .hero-card-arrow{opacity:1;transform:translateX(4px)}

/* Impact bar at bottom */
.hero-impact{
  position:relative;z-index:2;
  max-width:1200px;margin:30px auto 0;width:100%;
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  padding:20px 0 30px;
  border-top:1px solid rgba(255,255,255,.1);
}
.hero-impact .impact-item{text-align:center}
.hero-impact .number{display:block;font-size:28px;font-weight:800;color:#fff;letter-spacing:-1px}
.hero-impact .label{display:block;font-size:11px;color:#A8D5BA;font-weight:500;margin-top:2px}

@media(max-width:900px){
  .hero-fullscreen{padding:30px 20px 0;min-height:auto}
  .hero-inner{grid-template-columns:1fr;gap:24px}
  .hero h1{font-size:30px}
  .hero-impact{grid-template-columns:repeat(2,1fr);gap:12px}
}

/* ============================
   INTERIOR PAGE HERO (smaller)
   ============================ */
.page-hero{background:linear-gradient(135deg,#0D3B2E,#1B6B4D);padding:48px 60px 40px}
.page-hero-inner{max-width:1200px;margin:0 auto}
.page-hero .breadcrumb{color:#A8D5BA;font-size:12px;margin-bottom:12px}
.page-hero .breadcrumb a{color:#A8D5BA;border-bottom:1px solid rgba(168,213,186,.3)}
.page-hero .breadcrumb a:hover{color:#D4A843}
.page-hero h1{color:#fff;font-size:36px;font-weight:800;letter-spacing:-.5px;margin-bottom:10px}
.page-hero p{color:#A8D5BA;font-size:15px;max-width:700px;line-height:1.7}
.page-hero .tag{color:#D4A843;font-size:11px;font-weight:700;letter-spacing:3px;margin-bottom:8px;display:block}
@media(max-width:700px){.page-hero{padding:30px 20px}}

/* ============================
   SECTION STYLES (interior pages)
   ============================ */
.section{padding:64px 60px}
.section.alt{background:#F5F3EE}
.section-inner{max-width:1200px;margin:0 auto}
.section-tag{color:#D4A843;font-size:12px;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin-bottom:8px}
.section-title{font-size:32px;font-weight:800;color:#0D3B2E;letter-spacing:-.5px;margin-bottom:16px}
.section-desc{font-size:15px;color:#5A6A5E;line-height:1.7;max-width:700px;margin-bottom:32px}
@media(max-width:700px){.section{padding:40px 20px}}

/* ====== Grid layouts ====== */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media(max-width:900px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

/* ====== Content cards (services, sectors, etc) ====== */
.content-card{background:#fff;border-radius:12px;padding:28px;border:1px solid #E8E6E1;transition:all .25s}
.content-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(13,59,46,.08);border-color:#D4A843}
.content-card .icon{font-size:32px;margin-bottom:12px}
.content-card h3{font-size:18px;font-weight:700;color:#0D3B2E;margin-bottom:8px}
.content-card p{font-size:13px;color:#5A6A5E;line-height:1.6}
.content-card ul{list-style:none;margin-top:12px}
.content-card li{font-size:13px;color:#5A6A5E;margin-bottom:6px;padding-left:20px;position:relative}
.content-card li:before{content:"→";position:absolute;left:0;color:#D4A843;font-weight:700}

/* Feature card (bigger, with highlight) */
.feature-card{background:#fff;border-radius:16px;padding:32px;border:1px solid #E8E6E1;transition:all .25s}
.feature-card:hover{box-shadow:0 12px 32px rgba(13,59,46,.1)}
.feature-card .badge{display:inline-block;padding:4px 12px;border-radius:4px;font-size:11px;font-weight:700;letter-spacing:.5px;margin-bottom:12px}
.feature-card h3{font-size:22px;font-weight:800;color:#0D3B2E;margin-bottom:8px}
.feature-card .desc{font-size:14px;color:#5A6A5E;line-height:1.7;margin-bottom:16px}

/* Stat card */
.stat-card{background:#fff;border-radius:12px;padding:24px;text-align:center;border:1px solid #E8E6E1}
.stat-card .number{font-size:36px;font-weight:800;color:#0D3B2E;letter-spacing:-1px}
.stat-card .label{font-size:13px;color:#7A8B7E;font-weight:500;margin-top:4px}

/* Sector card with icon */
.sector-card{background:#fff;border-radius:10px;padding:20px;border:1px solid #E8E6E1;display:flex;gap:14px;align-items:flex-start;transition:all .2s}
.sector-card:hover{border-color:#D4A843;box-shadow:0 4px 12px rgba(13,59,46,.06)}
.sector-card .icon{font-size:28px;flex-shrink:0}
.sector-card h3{font-size:14px;font-weight:700;color:#0D3B2E;margin-bottom:4px}
.sector-card p{font-size:12px;color:#7A8B7E;line-height:1.5}

/* Case study card */
.case-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #E8E6E1;transition:all .25s}
.case-card:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(13,59,46,.06)}
.case-card .thumb{height:160px;background:linear-gradient(135deg,#0D3B2E,#1B6B4D);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.3);font-size:12px;font-style:italic}
.case-card .body{padding:20px}
.case-card .type{font-size:10px;color:#D4A843;font-weight:700;letter-spacing:1px;margin-bottom:4px}
.case-card h3{font-size:16px;font-weight:700;color:#0D3B2E;margin-bottom:6px}
.case-card .metric{font-size:13px;color:#5A6A5E;margin-bottom:8px}
.case-card .status{display:inline-block;font-size:10px;font-weight:700;padding:3px 10px;border-radius:4px}
.case-card .status.done{background:#D1FAE5;color:#065F46}
.case-card .status.progress{background:#FEF3C7;color:#92400E}
.case-card .status.ops{background:#DBEAFE;color:#1E40AF}
.case-card .status.planned{background:#F3E8FF;color:#6B21A8}

/* Partner grid */
.partner-card{background:#fff;border-radius:12px;padding:24px 16px;text-align:center;border:1px solid #E8E6E1}
.partner-card .logo-ph{width:56px;height:56px;border-radius:12px;background:#F5F3EE;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;font-size:10px;color:#999}
.partner-card h4{font-size:13px;font-weight:700;color:#0D3B2E;margin-bottom:2px}
.partner-card p{font-size:11px;color:#7A8B7E}

/* ====== CTA section ====== */
.cta-section{background:linear-gradient(135deg,#0D3B2E,#1B6B4D);padding:64px 60px;text-align:center}
.cta-section h2{color:#fff;font-size:32px;font-weight:800;margin-bottom:12px}
.cta-section p{color:#A8D5BA;font-size:15px;line-height:1.7;margin-bottom:28px;max-width:600px;margin-left:auto;margin-right:auto}
.cta-section .btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ====== FOOTER ====== */
.footer{background:#091F18;padding:60px 60px 30px;color:#7A8B7E}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:40px}
.footer-brand p{font-size:13px;line-height:1.7;max-width:280px;margin-top:16px}
.footer-col h4{color:#fff;font-weight:700;font-size:13px;margin-bottom:16px;text-transform:uppercase;letter-spacing:1px}
.footer-col a{display:block;font-size:13px;margin-bottom:8px;color:#7A8B7E;transition:color .2s}
.footer-col a:hover{color:#D4A843}
.footer-bottom{border-top:1px solid #1B3028;padding-top:20px;display:flex;justify-content:space-between;font-size:12px}
@media(max-width:900px){
  .footer-inner{grid-template-columns:1fr 1fr;gap:30px}.footer{padding:40px 20px 20px}
  .footer-bottom{flex-direction:column;gap:8px}
}

/* ============================
   CATALOG PAGE (kept from v1)
   ============================ */
.cat-hero{background:linear-gradient(135deg,#0D3B2E,#1B6B4D);padding:48px 40px 40px}
.cat-hero-inner{max-width:1300px;margin:0 auto}
.cat-hero .label{color:#D4A843;font-size:11px;font-weight:700;letter-spacing:3px;margin-bottom:8px}
.cat-hero h1{color:#fff;font-size:36px;font-weight:800;letter-spacing:-.5px;margin-bottom:10px}
.cat-hero p{color:#A8D5BA;font-size:14px;max-width:700px}
.filters{background:#fff;border-bottom:1px solid #E5E2DB;padding:14px 40px}
.filters-inner{max-width:1300px;margin:0 auto;display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.fbtn{border:none;padding:7px 14px;border-radius:20px;font-size:11px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s}
.fbtn.on{background:#0D3B2E;color:#fff}.fbtn.off{background:#F5F3EE;color:#5A6A5E}.fbtn:hover{opacity:.85}
.fcount{font-size:10px;opacity:.5}
.fsep{width:1px;height:24px;background:#E5E2DB;margin:0 8px}
.fsel{border:1px solid #E5E2DB;border-radius:6px;padding:7px 12px;font-size:12px;font-weight:600;color:#0D3B2E;background:#fff;cursor:pointer;font-family:inherit}
.ftotal{margin-left:auto;background:#0D3B2E;color:#fff;border-radius:6px;padding:7px 14px;font-size:13px;font-weight:800}
.cat-grid-wrap{padding:28px 40px 60px;max-width:1380px;margin:0 auto}
.cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:18px}
.card{background:#fff;border-radius:12px;border:1px solid #E8E5DE;overflow:hidden;transition:all .25s;cursor:pointer}
.card:hover{transform:translateY(-4px);box-shadow:0 10px 28px rgba(13,59,46,.08);border-color:#D4A843}
.card-img{height:180px;background:#FAFAF8;display:flex;align-items:center;justify-content:center;padding:16px;position:relative}
.card-img img{max-height:148px;max-width:85%;object-fit:contain}
.cat-tag{position:absolute;top:8px;left:8px;color:#fff;font-size:8.5px;font-weight:700;padding:2px 7px;border-radius:3px;letter-spacing:.3px}
.brand-badge{position:absolute;top:8px;right:8px;height:18px;object-fit:contain;opacity:.35}
.card-body{padding:14px 16px 12px}
.card-body h3{font-size:13px;font-weight:700;color:#1A1A1A;line-height:1.3;margin-bottom:4px;min-height:34px}
.card-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.card-brand{font-size:11px;color:#7A8B7E;font-weight:500}
.card-spec{font-size:12px;font-weight:700}
.card-actions{display:flex;gap:6px;flex-wrap:wrap}
.btn-detail{background:#0D3B2E;color:#fff;border:none;padding:5px 12px;border-radius:5px;font-size:11px;font-weight:600;font-family:inherit;cursor:pointer}
.btn-ds,.btn-doc{background:#F5F3EE;color:#0D3B2E;border:1px solid #E5E2DB;padding:4px 10px;border-radius:5px;font-size:10px;font-weight:600;display:inline-block;font-family:inherit}
.btn-ds:hover,.btn-doc:hover{background:#E8E6E1}
.seedlings-section{padding:40px;max-width:1380px;margin:0 auto}
.seedlings-card{background:linear-gradient(135deg,#f0fdf4,#dcfce7);border:2px dashed #86efac;border-radius:16px;padding:40px;text-align:center}
.seedlings-card .badge{display:inline-block;background:#fef3c7;color:#92400e;padding:4px 12px;border-radius:4px;font-size:11px;font-weight:700;letter-spacing:.5px;margin-bottom:16px}
.seedlings-card h2{font-size:28px;font-weight:800;color:#0D3B2E;margin-bottom:8px}
.seedlings-card p{font-size:14px;color:#5A6A5E;line-height:1.7;max-width:600px;margin:0 auto 20px}
.seedling-species{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.seedling-species span{background:rgba(255,255,255,.7);padding:6px 14px;border-radius:8px;font-size:12px;font-weight:600;color:#0D3B2E}
.seedlings-card .cta{background:#0D3B2E;color:#fff;border:none;padding:12px 24px;border-radius:8px;font-weight:700;font-size:14px;font-family:inherit;display:inline-block}

/* Modal */
.modal-bg{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:200;align-items:flex-start;justify-content:center;padding:20px;overflow-y:auto}
.modal-bg.open{display:flex}
.modal-content{background:#fff;border-radius:16px;max-width:1100px;width:100%;padding:40px;position:relative;margin-top:20px}
.modal-close{position:absolute;top:16px;right:16px;background:#F5F3EE;border:none;width:36px;height:36px;border-radius:50%;font-size:18px;cursor:pointer;z-index:10}
.modal-back{margin-bottom:20px}
.modal-back button{background:none;border:none;color:#5A6A5E;font-size:14px;font-weight:500;cursor:pointer;font-family:inherit}
.modal-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.modal-cat{display:inline-block;color:#fff;font-size:10px;font-weight:700;padding:4px 12px;border-radius:4px;letter-spacing:.5px;margin-bottom:8px}
.modal-content h2{font-size:24px;font-weight:800;color:#1A1A1A;margin-bottom:4px;line-height:1.2}
.modal-spec{font-size:18px;font-weight:700;color:#D4A843;margin-bottom:16px}
.modal-desc{font-size:13px;color:#5A6A5E;line-height:1.7;margin-bottom:16px}
.mfr-box{background:#FAFAF8;border-radius:10px;padding:16px;margin-bottom:16px;border:1px solid #E8E6E1}
.mfr-box img{height:28px;margin-bottom:8px}
.mfr-box p{font-size:12px;color:#5A6A5E;line-height:1.6}
.label-sm{font-size:10px;font-weight:700;color:#7A8B7E;letter-spacing:1.5px;margin-bottom:8px;text-transform:uppercase}
.docs-section{margin-bottom:16px}
.doc-link{display:block;padding:12px 16px;border-radius:8px;font-size:13px;font-weight:600;margin-bottom:6px;transition:all .2s}
.doc-link.primary{background:#D4A843;color:#0D3B2E}.doc-link.primary:hover{background:#C49A38}
.doc-link.secondary{background:#F5F3EE;color:#0D3B2E;border:1px solid #E8E6E1}.doc-link.secondary:hover{background:#E8E6E1}
.cta-box{background:linear-gradient(135deg,#0D3B2E,#1B6B4D);border-radius:12px;padding:20px;color:#fff}
.cta-box .title{font-weight:700;margin-bottom:8px}
.cta-box .info{font-size:13px;color:#A8D5BA;margin-bottom:2px}
.modal-main-img{background:#FAFAF8;border-radius:12px;padding:20px;display:flex;align-items:center;justify-content:center;min-height:300px;border:1px solid #E8E6E1}
.modal-main-img img{max-height:300px;object-fit:contain}
.modal-gallery{display:grid;gap:8px;margin-top:12px}
.modal-gallery div{background:#FAFAF8;border-radius:8px;padding:10px;border:1px solid #E8E6E1;display:flex;align-items:center;justify-content:center}
.modal-gallery img{max-height:100px;object-fit:contain}
.related{margin-top:16px}
.rel-item{display:flex;gap:12px;align-items:center;padding:10px;border-radius:8px;border:1px solid #E8E6E1;margin-bottom:6px;cursor:pointer;transition:all .2s;background:#fff}
.rel-item:hover{border-color:#D4A843;box-shadow:0 2px 8px rgba(13,59,46,.06)}
.rel-item img{width:48px;height:48px;object-fit:contain}
.rel-item h4{font-size:12px;font-weight:700;color:#1A1A1A}
.rel-item span{font-size:11px;color:#7A8B7E}
.empty{text-align:center;padding:60px 20px;grid-column:1/-1}
@media(max-width:700px){
  .modal-grid{grid-template-columns:1fr}
  .cat-grid-wrap,.filters{padding-left:16px;padding-right:16px}
}

/* ============================
   NEW HOMEPAGE SECTIONS
   ============================ */

/* Mission Section - 4 cards with background images */
.mission-section{padding:80px 60px;background:#fff}
.mission-section h2{font-size:36px;font-weight:800;color:#1A1A1A;margin-bottom:48px}
.mission-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.mission-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  min-height:380px;
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background-size:cover;
  background-position:center;
}
.mission-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.15) 0%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.75) 100%);
  z-index:1;
}
.mission-card-content{position:relative;z-index:2}
.mission-card h3{color:#fff;font-size:20px;font-weight:700;margin-bottom:12px;line-height:1.3}
.mission-card p{color:rgba(255,255,255,.85);font-size:13px;line-height:1.6}
@media(max-width:1100px){.mission-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.mission-grid{grid-template-columns:1fr}.mission-section{padding:50px 20px}}

/* About Section - Numbered cards */
.about-section{padding:80px 60px;background:#F5F5F5}
.about-header{display:grid;grid-template-columns:1fr 2fr;gap:40px;margin-bottom:0}
.about-intro h2{font-size:40px;font-weight:800;color:#1A1A1A;line-height:1.15;margin-bottom:24px}
.about-intro p{font-size:15px;color:#5A6A5E;line-height:1.7}
.about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.about-card{background:#fff;border-radius:16px;padding:32px;transition:all .25s}
.about-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.08)}
.about-card .number{font-size:48px;font-weight:800;color:#1A1A1A;line-height:1;margin-bottom:20px}
.about-card h3{font-size:18px;font-weight:700;color:#1A1A1A;margin-bottom:12px}
.about-card p{font-size:13px;color:#5A6A5E;line-height:1.7}
@media(max-width:900px){
  .about-header{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .about-section{padding:50px 20px}
}
