:root{
    --green-900:#0a4a34;
    --green-700:#0e6b4f;
    --green-600:#128a63;
    --green-100:#e6f3ed;
    --green-050:#f5faf8;
    --red-600:#e2231a;
    --ink:#16241d;
    --ink-soft:#5c6d65;
    --line:#e1ebe5;
    --white:#ffffff;
    --radius:14px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }

  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}

  .wrap{
    max-width:1120px;
    margin:0 auto;
    padding:0 28px;
  }

  /* ---------- Top bar ---------- */
  .topbar{
    border-bottom:1px solid var(--line);
  }
  .topbar .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-top:18px;
    padding-bottom:18px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .brand-logo{
    height:46px;
    width:auto;
  }
  .brand-name{
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .brand-name strong{
    font-size:15px;
    font-weight:800;
    color:var(--green-900);
    letter-spacing:.2px;
  }
  .brand-name span{
    font-size:12.5px;
    color:var(--ink-soft);
  }
  .topbar-links{
    display:flex;
    gap:26px;
  }
  .topbar-links a{
    font-size:14px;
    font-weight:600;
    color:var(--ink-soft);
    transition:color .15s ease;
  }
  .topbar-links a:hover{color:var(--green-700);}

  /* ---------- Hero ---------- */
  .hero{
    padding:64px 0 44px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-160px;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%);
    z-index:0;
  }
  .hero .wrap{position:relative;z-index:1;}
  .hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color:var(--white);
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.28);
    padding:7px 14px;
    border-radius:100px;
    margin-bottom:22px;
  }
  .hero-tag .dot{
    width:6px;height:6px;border-radius:50%;
    background:var(--red-600);
  }
  .hero h1{
    font-size:clamp(32px, 4.6vw, 48px);
    font-weight:800;
    line-height:1.12;
    margin:0 0 18px;
    max-width:760px;
    color:var(--white);
  }
  .hero p{
    font-size:17px;
    color:rgba(255,255,255,.88);
    max-width:560px;
    margin:0 0 0;
  }

  .hero-mark{
    margin-top:36px;
    height:3px;
    width:64px;
    background:linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.25));
    border-radius:4px;
  }

  /* ---------- Section heading ---------- */
  .section-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:16px;
    margin:0 0 28px;
  }
  .section-head h2{
    font-size:22px;
    font-weight:800;
    color:var(--green-900);
    margin:0;
  }
  .section-head p{
    font-size:14px;
    color:var(--ink-soft);
    margin:0;
  }

  /* ---------- Link grid ---------- */
  .links{
    padding:20px 0 70px;
  }
  .grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
  }
  .card{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:24px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:linear-gradient(180deg, var(--green-050) 0%, var(--white) 58%);
    overflow:hidden;
    transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .card::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:3px;
    background:linear-gradient(90deg, var(--green-600), var(--green-900));
    opacity:0;
    transition:opacity .18s ease;
  }
  .card:hover{
    transform:translateY(-3px);
    border-color:var(--green-600);
    box-shadow:0 14px 30px -14px rgba(10,74,52,.35);
  }
  .card:hover::before{opacity:1;}
  .card:focus-visible{
    outline:3px solid var(--green-600);
    outline-offset:2px;
  }
  .card-icon{
    width:44px;
    height:44px;
    border-radius:11px;
    background:var(--green-100);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .card-icon svg{width:22px;height:22px;stroke:var(--green-700);}
  .card.accent .card-icon{background:var(--green-700);}
  .card.accent .card-icon svg{stroke:var(--white);}
  .card-body h3{
    font-size:16px;
    font-weight:700;
    margin:0 0 6px;
    color:var(--green-900);
  }
  .card-body p{
    font-size:13.5px;
    color:var(--ink-soft);
    margin:0;
    line-height:1.5;
  }
  .card-foot{
    margin:auto -24px -24px;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:700;
    color:var(--white);
    padding:10px 24px;
    border-top:1px solid rgba(255,255,255,.15);
    background:var(--green-700);
  }
  .card-foot svg{width:14px;height:14px;stroke:var(--white);transition:transform .18s ease;}
  .card:hover .card-foot svg{transform:translateX(3px);}

  /* ---------- Footer ---------- */
  footer{
    background:linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  }
  .footer-top{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:36px 56px;
    align-items:start;
    justify-items:start;
    padding:48px 28px 40px;
  }
  .footer-brand img{
    width:180px;
    height:120px;
    object-fit:contain;
    object-position:left center;
  }
  .footer-brand p{
    margin:12px 0 0;
    font-size:13px;
    line-height:1.5;
    color:rgba(255,255,255,.75);
    max-width:200px;
  }
  .footer-address{
    margin:0 0 14px;
    font-size:14px;
    line-height:1.6;
    color:rgba(255,255,255,.9);
    max-width:440px;
  }
  .contact-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .contact-list a{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-size:13.5px;
    color:rgba(255,255,255,.82);
    transition:color .15s ease;
  }
  .contact-list a:hover{color:var(--white);}
  .contact-list svg{
    width:16px;height:16px;
    flex-shrink:0;
    color:var(--green-100);
  }
  .footer-social{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .social-title{
    font-size:13px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
    color:rgba(255,255,255,.85);
  }
  .social-links{
    display:flex;
    gap:12px;
  }
  .footer-social a{
    width:36px;height:36px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.3);
    display:flex;align-items:center;justify-content:center;
    color:rgba(255,255,255,.85);
    background:transparent;
    transition:background .15s ease, color .15s ease, border-color .15s ease;
  }
  .footer-social a svg{width:18px;height:18px;}
  .footer-social a:hover{
    background:var(--white);
    color:var(--green-700);
    border-color:var(--white);
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.14);
  }
  .footer-bottom .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:18px 28px;
    font-size:13.5px;
    color:rgba(255,255,255,.75);
  }

  /* ---------- Responsive ---------- */
  @media (max-width:860px){
    .grid{grid-template-columns:repeat(2, 1fr);}
    .topbar-links{display:none;}
    .footer-top{grid-template-columns:1fr 1fr;gap:32px 40px;}
    .footer-social{grid-column:1 / -1;flex-direction:row;align-items:center;}
  }
  @media (max-width:560px){
    .grid{grid-template-columns:1fr;}
    .wrap{padding:0 20px;}
    .hero{padding:44px 0 30px;}
    .footer-top{
      grid-template-columns:1fr;
      gap:28px;
      padding:44px 20px 30px;
      justify-items:center;
    }
    .footer-brand,
    .footer-contact,
    .footer-social{
      text-align:center;
      align-items:center;
    }
    .footer-brand img{
      width:104px;
      height:104px;
      object-position:center;
      margin-left:auto;
      margin-right:auto;
    }
    .footer-brand p{margin-left:auto;margin-right:auto;}
    .footer-address{margin-left:auto;margin-right:auto;}
    .footer-social{grid-column:auto;}
    .social-links{justify-content:center;}
    .contact-list{align-items:center;}
    .footer-bottom .wrap{padding:16px 20px;justify-content:center;text-align:center;}
  }

  /* By Dzul */