:root {
      --blue:#CC1B1B; --blue-dark:#A51414; --blue-light:#FDECEA; --blue-mid:#F5BFBF;
      --teal:#00A89D; --teal-dark:#008880; --teal-light:#E0F5F4; --teal-mid:#80D4CF;
      --white:#FFFFFF; --off-white:#F7FAFD; --gray-50:#F0F4F8; --gray-100:#E2E8F0;
      --gray-200:#CBD5E1; --gray-400:#94A3B8; --gray-600:#475569;
      --dark:#0F1C2E; --text:#1A2B3C; --text-muted:#607080;
      --green:#10B981; --orange:#F97316; --red:#EF4444;
      --radius-sm:4px; --radius:8px; --radius-lg:14px; --radius-xl:20px;
      --shadow-sm:0 1px 3px rgba(0,0,0,0.07);
      --shadow:0 4px 16px rgba(204,27,27,0.1);
      --shadow-lg:0 12px 36px rgba(0,0,0,0.1);
      --nav-h:68px; --topbar-h:38px;
    }
    *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{font-family:"Inter",sans-serif;font-optical-sizing:auto;color:var(--text);background:var(--white);overflow-x:hidden;line-height:1.6;}
    a{text-decoration:none;color:inherit;} ul{list-style:none;}
    button{border:none;background:none;cursor:pointer;font-family:inherit;}

    /* ── TOPBAR ── */
    .topbar{height:var(--topbar-h);background:var(--dark);display:flex;align-items:center;justify-content:space-between;padding:0 48px;}
    .topbar-left{display:flex;align-items:center;gap:20px;font-size:12px;color:rgba(255,255,255,0.65);}
    .topbar-left svg{width:13px;height:13px;flex-shrink:0;}
    .topbar-sep{width:1px;height:14px;background:rgba(255,255,255,0.12);}
    .topbar-right{display:flex;align-items:center;gap:12px;}
    .topbar-phone{font-size:13px;font-weight:700;color:#fff;display:flex;align-items:center;gap:7px;}
    .topbar-phone svg{width:13px;height:13px;color:var(--teal);}
    
    .topbar-social{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:var(--radius-sm);color:rgba(255,255,255,0.65);transition:all .2s;}
    .topbar-social:hover{color:#fff;background:rgba(255,255,255,0.12);}
    .topbar-badge{font-size:11px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:var(--dark);background:var(--teal);padding:3px 9px;border-radius:var(--radius-sm);}

    /* ── NAV ── */
    nav{position:sticky;top:0;z-index:100;height:var(--nav-h);background:var(--white);border-bottom:1px solid var(--gray-100);box-shadow:var(--shadow-sm);display:flex;align-items:center;justify-content:space-between;padding:0 48px;gap:20px;}
    .nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;}
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-search{display:flex;align-items:center;background:var(--gray-50);border:1.5px solid var(--gray-100);border-radius:var(--radius);overflow:hidden;width:280px;}
    .nav-search:focus-within{border-color:var(--blue);}
    .nav-search-input{flex:1;padding:10px 14px;font-size:13px;border:none;background:transparent;color:var(--text);outline:none;}
    .nav-search-input::placeholder{color:var(--gray-400);}
    .nav-search-btn{width:40px;height:40px;background:var(--blue);display:flex;align-items:center;justify-content:center;}
    .nav-search-btn svg{width:16px;height:16px;color:#fff;}
    .nav-links{display:flex;align-items:center;gap:2px;}
    .nav-link{padding:8px 13px;font-size:13px;font-weight:500;color:var(--gray-600);border-radius:var(--radius-sm);transition:all .2s;white-space:nowrap;}
    .nav-link:hover,.nav-link.active{background:var(--blue-light);color:var(--blue);}
    .nav-link.active{font-weight:600;}
    .nav-cta{display:flex;align-items:center;gap:10px;flex-shrink:0;}
    .btn-primary{padding:9px 16px;font-size:13px;font-weight:600;background:var(--blue);color:#fff;border-radius:var(--radius);display:inline-flex;align-items:center;gap:7px;transition:all .2s;}
    .btn-primary:hover{background:var(--blue-dark);}
    .btn-primary svg{width:14px;height:14px;}
    .btn-teal{padding:9px 16px;font-size:13px;font-weight:600;background:var(--teal);color:#fff;border-radius:var(--radius);display:inline-flex;align-items:center;gap:7px;transition:all .2s;}
    .btn-teal:hover{background:var(--teal-dark);}
    .btn-teal svg{width:14px;height:14px;}

    /* ── HERO ── */
    .about-hero{
      background:linear-gradient(135deg,#1a0505 0%,#5c0000 45%,#8b0000 100%);
      padding:72px 48px 0;
      position:relative;
      overflow:hidden;
    }
    .about-hero::before{content:'';position:absolute;top:-100px;right:-80px;width:500px;height:500px;border-radius:50%;background:rgba(255,255,255,0.03);}
    .about-hero::after{content:'';position:absolute;bottom:-80px;left:25%;width:320px;height:320px;border-radius:50%;background:rgba(0,168,157,0.06);}
    .about-hero-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:flex-end;position:relative;z-index:1;}
    .about-hero-left{padding-bottom:60px;}
    .breadcrumb{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,0.45);margin-bottom:20px;}
    .breadcrumb a{color:rgba(255,255,255,0.65);}
    .breadcrumb a:hover{color:#fff;}
    .breadcrumb svg{width:12px;height:12px;}
    .hero-tag{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,0.85);background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);padding:5px 14px;border-radius:20px;margin-bottom:18px;}
    .hero-dot{width:7px;height:7px;background:var(--teal);border-radius:50%;animation:pulse 2s infinite;}
    @keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)}}
    .about-hero h1{font-size:44px;font-weight:900;color:#fff;letter-spacing:-1px;line-height:1.1;margin-bottom:18px;}
    .about-hero h1 em{color:var(--teal-mid);font-style:normal;}
    .about-hero-desc{font-size:15px;color:rgba(255,255,255,0.68);line-height:1.8;margin-bottom:32px;max-width:480px;}
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;}
    .btn-hero-white{padding:12px 24px;font-size:14px;font-weight:700;background:#fff;color:var(--dark);border-radius:var(--radius);display:inline-flex;align-items:center;gap:8px;transition:all .2s;}
    .btn-hero-white:hover{background:var(--blue-light);transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,0.2);}
    .btn-hero-white svg{width:15px;height:15px;color:var(--blue);}
    .btn-hero-outline{padding:12px 22px;font-size:14px;font-weight:600;color:rgba(255,255,255,0.85);border:1.5px solid rgba(255,255,255,0.25);border-radius:var(--radius);transition:all .2s;}
    .btn-hero-outline:hover{border-color:rgba(255,255,255,0.6);color:#fff;}

    /* Hero right — stat cards */
    .hero-stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding-bottom:0;}
    .hero-stat{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-lg);padding:22px;backdrop-filter:blur(8px);transition:background .25s;}
    .hero-stat:hover{background:rgba(255,255,255,0.11);}
    .hero-stat-num{font-size:40px;font-weight:900;color:#fff;letter-spacing:-1.5px;line-height:1;}
    .hero-stat-label{font-size:12px;color:rgba(255,255,255,0.55);margin-top:6px;line-height:1.4;}
    .hero-stat-icon{width:36px;height:36px;border-radius:var(--radius-sm);background:rgba(0,168,157,0.2);display:flex;align-items:center;justify-content:center;margin-bottom:12px;}
    .hero-stat-icon svg{width:18px;height:18px;color:var(--teal);}

    /* ── MISSION SECTION ── */
    .mission-section{padding:72px 48px;background:var(--white);}
    .mission-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
    .mission-visual{position:relative;}
    .mission-img-main{width:100%;aspect-ratio:4/3;background:linear-gradient(135deg,var(--blue-light) 0%,var(--blue-mid) 100%);border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;}
    .mission-img-main svg{width:120px;height:120px;color:var(--blue);opacity:.4;}
    .mission-img-badge{position:absolute;bottom:-18px;right:-18px;background:var(--white);border:2px solid var(--gray-100);border-radius:var(--radius-lg);padding:16px 20px;box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:12px;}
    .mission-badge-icon{width:44px;height:44px;background:var(--blue);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;}
    .mission-badge-icon svg{width:22px;height:22px;color:#fff;}
    .mission-badge-num{font-size:22px;font-weight:900;color:var(--dark);letter-spacing:-0.5px;}
    .mission-badge-label{font-size:11px;color:var(--text-muted);}
    .section-label{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue);margin-bottom:6px;}
    .section-title{font-size:28px;font-weight:800;color:var(--dark);letter-spacing:-0.3px;line-height:1.2;}
    .mission-text{display:flex;flex-direction:column;gap:16px;margin-top:16px;}
    .mission-text p{font-size:15px;color:var(--text-muted);line-height:1.8;}
    .mission-text p strong{color:var(--dark);}
    .mission-values{display:flex;flex-direction:column;gap:12px;margin-top:8px;}
    .mission-value{display:flex;align-items:flex-start;gap:12px;}
    .mv-icon{width:36px;height:36px;border-radius:var(--radius);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
    .mv-icon svg{width:18px;height:18px;}
    .mv-title{font-size:14px;font-weight:700;color:var(--dark);margin-bottom:2px;}
    .mv-desc{font-size:13px;color:var(--text-muted);line-height:1.6;}

    /* ── STORY TIMELINE ── */
    .story-section{padding:72px 48px;background:var(--off-white);}
    .story-inner{max-width:900px;margin:0 auto;}
    .story-header{text-align:center;margin-bottom:52px;}
    .timeline{position:relative;display:flex;flex-direction:column;gap:0;}
    .timeline::before{content:'';position:absolute;left:120px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--blue-light),var(--blue),var(--teal),var(--teal-light));}
    .tl-item{display:flex;gap:0;position:relative;}
    .tl-year{width:120px;padding:28px 20px 28px 0;text-align:right;flex-shrink:0;}
    .tl-year-num{font-size:20px;font-weight:900;color:var(--blue);letter-spacing:-0.5px;}
    .tl-dot{position:absolute;left:112px;top:32px;width:18px;height:18px;border-radius:50%;background:var(--blue);border:3px solid var(--white);box-shadow:0 0 0 2px var(--blue);z-index:1;}
    .tl-dot.teal{background:var(--teal);box-shadow:0 0 0 2px var(--teal);}
    .tl-content{flex:1;padding:20px 0 28px 36px;}
    .tl-title{font-size:16px;font-weight:700;color:var(--dark);margin-bottom:6px;}
    .tl-desc{font-size:13px;color:var(--text-muted);line-height:1.75;}
    .tl-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:2px 9px;border-radius:4px;margin-bottom:8px;}

    /* ── TEAM ── */
    .team-section{padding:72px 48px;background:var(--white);}
    .team-inner{max-width:1100px;margin:0 auto;}
    .team-header{text-align:center;margin-bottom:48px;}
    .team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
    .team-card{background:var(--white);border:1.5px solid var(--gray-100);border-radius:var(--radius-xl);overflow:hidden;transition:all .25s;}
    .team-card:hover{border-color:var(--blue-mid);box-shadow:var(--shadow-lg);transform:translateY(-4px);}
    .team-card-img{height:220px;display:flex;align-items:flex-end;justify-content:center;padding:0;overflow:hidden;position:relative;}
    .team-avatar{width:100%;height:100%;display:flex;align-items:center;justify-content:center;}
    .team-avatar-circle{width:110px;height:110px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:38px;font-weight:900;color:#fff;border:4px solid rgba(255,255,255,0.3);}
    .team-card-body{padding:20px 24px 24px;}
    .team-name{font-size:17px;font-weight:800;color:var(--dark);letter-spacing:-0.2px;}
    .team-role{font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--blue);margin:4px 0 10px;}
    .team-bio{font-size:13px;color:var(--text-muted);line-height:1.7;}
    .team-socials{display:flex;gap:8px;margin-top:14px;}
    .team-social{width:30px;height:30px;border-radius:var(--radius-sm);background:var(--gray-50);border:1px solid var(--gray-100);display:flex;align-items:center;justify-content:center;transition:all .2s;}
    .team-social:hover{background:var(--blue-light);border-color:var(--blue-mid);}
    .team-social svg{width:14px;height:14px;color:var(--gray-600);}

    /* ── WHAT MAKES US DIFFERENT ── */
    .diff-section{padding:72px 48px;background:linear-gradient(135deg,#1a0505 0%,#5c0000 50%,#8b0000 100%);position:relative;overflow:hidden;}
    .diff-section::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border-radius:50%;background:rgba(0,168,157,0.06);}
    .diff-inner{max-width:1100px;margin:0 auto;position:relative;z-index:1;}
    .diff-header{text-align:center;margin-bottom:52px;}
    .diff-header .section-label{color:var(--teal-mid);}
    .diff-header .section-title{color:#fff;}
    .diff-header p{font-size:15px;color:rgba(255,255,255,0.6);margin-top:8px;}
    .diff-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
    .diff-card{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-xl);padding:28px 24px;transition:all .25s;backdrop-filter:blur(8px);}
    .diff-card:hover{background:rgba(255,255,255,0.1);border-color:rgba(255,255,255,0.2);transform:translateY(-3px);}
    .diff-card-icon{width:52px;height:52px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
    .diff-card-icon svg{width:26px;height:26px;}
    .diff-card-title{font-size:17px;font-weight:700;color:#fff;margin-bottom:8px;}
    .diff-card-desc{font-size:13px;color:rgba(255,255,255,0.58);line-height:1.75;}

    /* ── COMMUNITY ── */
    .community-section{padding:72px 48px;background:var(--off-white);}
    .community-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
    .community-img{background:linear-gradient(135deg,var(--teal-light) 0%,var(--teal-mid) 100%);border-radius:var(--radius-xl);aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
    .community-img svg{width:120px;height:120px;color:var(--teal);opacity:.4;}
    .community-img-tag{position:absolute;bottom:20px;left:20px;background:var(--white);border-radius:var(--radius);padding:10px 16px;display:flex;align-items:center;gap:10px;box-shadow:var(--shadow);}
    .community-img-tag svg{width:16px;height:16px;color:var(--teal);}
    .community-img-tag span{font-size:13px;font-weight:700;color:var(--dark);}
    .community-content{display:flex;flex-direction:column;gap:18px;}
    .community-content p{font-size:15px;color:var(--text-muted);line-height:1.8;}
    .partners-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px;}
    .partner-tag{font-size:12px;font-weight:600;color:var(--blue);background:var(--blue-light);border:1px solid var(--blue-mid);padding:5px 12px;border-radius:20px;}

    /* ── CTA BANNER ── */
    .about-cta{background:var(--blue);padding:56px 48px;text-align:center;}
    .about-cta h2{font-size:32px;font-weight:800;color:#fff;letter-spacing:-0.5px;margin-bottom:12px;}
    .about-cta p{font-size:15px;color:rgba(255,255,255,0.7);max-width:480px;margin:0 auto 28px;line-height:1.7;}
    .cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
    .btn-cta-white{padding:13px 28px;font-size:14px;font-weight:700;background:#fff;color:var(--blue-dark);border-radius:var(--radius);transition:all .2s;display:inline-flex;align-items:center;gap:8px;}
    .btn-cta-white:hover{background:var(--blue-light);transform:translateY(-1px);}
    .btn-cta-white svg{width:15px;height:15px;}
    .btn-cta-outline{padding:13px 24px;font-size:14px;font-weight:600;border:1.5px solid rgba(255,255,255,0.35);color:rgba(255,255,255,0.9);border-radius:var(--radius);transition:all .2s;}
    .btn-cta-outline:hover{border-color:#fff;color:#fff;}

    /* ── FOOTER ── */
    footer{background:var(--dark);}
    .footer-bottom{padding:20px 48px;border-top:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:space-between;}
    .footer-bottom p{font-size:12px;color:rgba(255,255,255,.35);}
    .footer-links-row{display:flex;gap:20px;}
    .footer-link-sm{font-size:12px;color:rgba(255,255,255,.4);transition:color .2s;}
    .footer-link-sm:hover{color:rgba(255,255,255,.8);}

    /* ── REVEAL ── */
    .reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease;}
    .reveal.visible{opacity:1;transform:translateY(0);}
    .reveal-delay-1{transition-delay:.1s;}
    .reveal-delay-2{transition-delay:.2s;}
    .reveal-delay-3{transition-delay:.3s;}

    /* ── BACK TO TOP ── */
    .back-top{position:fixed;bottom:28px;right:28px;width:44px;height:44px;background:var(--blue);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 16px rgba(204,27,27,.4);opacity:0;transform:translateY(10px);transition:all .3s;z-index:90;}
    .back-top.visible{opacity:1;transform:translateY(0);}
    .back-top svg{width:18px;height:18px;color:#fff;}

    /* ── MOBILE NAV TOGGLE ── */
    .nav-toggle{display:none;width:40px;height:40px;align-items:center;justify-content:center;border-radius:var(--radius-sm);flex-shrink:0;}
    .nav-toggle svg{width:22px;height:22px;color:var(--dark);}

    /* ── RESPONSIVE ── */
    @media(max-width:1024px){
      nav,.topbar,.about-hero,.mission-section,.story-section,.team-section,.diff-section,.community-section,.about-cta,.footer-bottom{padding-left:24px;padding-right:24px;}
      .about-hero-inner{grid-template-columns:1fr;gap:36px;}
      .hero-stats-grid{grid-template-columns:repeat(4,1fr);}
      .mission-inner,.community-inner{grid-template-columns:1fr;gap:40px;}
      .diff-grid{grid-template-columns:1fr 1fr;}
      .nav-search{width:200px;}
    }
    @media(max-width:900px){
      .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:var(--white);flex-direction:column;align-items:stretch;gap:0;padding:8px;border-bottom:1px solid var(--gray-100);box-shadow:var(--shadow-lg);}
      .nav-links.mobile-open{display:flex;}
      .nav-link{padding:12px 14px;border-radius:var(--radius-sm);}
      .nav-toggle{display:flex;}
      .nav-search{display:none;}
    }
    @media(max-width:768px){
      .topbar{display:none;}
      .about-hero{padding-top:48px;padding-left:24px;padding-right:24px;}
      .about-hero h1{font-size:32px;}
      .hero-stats-grid{grid-template-columns:1fr 1fr;}
      .team-grid{grid-template-columns:1fr;}
      .diff-grid{grid-template-columns:1fr;}
      .timeline::before{left:16px;}
      .tl-year{display:none;}
      .tl-dot{left:8px;}
      .tl-content{padding-left:40px;}
      .footer-bottom{flex-direction:column;gap:10px;text-align:center;}
      .mission-img-badge,.why-badge{position:static;margin-top:-40px;margin-left:auto;width:fit-content;}
    }
    @media(max-width:480px){
      nav,.about-hero,.mission-section,.story-section,.team-section,.diff-section,.community-section,.about-cta{padding-left:16px;padding-right:16px;}
      .nav-logo img{height:34px;}
      .about-hero h1{font-size:26px;}
      .about-hero-desc{font-size:14px;}
      .hero-actions{flex-direction:column;align-items:stretch;}
      .hero-actions a,.hero-actions button{justify-content:center;}
      .hero-stats-grid{grid-template-columns:1fr;}
      .hero-stat-num{font-size:32px;}
      .cta-actions{flex-direction:column;align-items:stretch;}
      .about-cta h2{font-size:24px;}
      .footer-links-row{flex-wrap:wrap;justify-content:center;gap:12px;}
    }