:root{
  --navy:#082b57;
  --navy2:#061f40;
  --green:#0a8a36;
  --green2:#08732f;
  --red:#d93b38;
  --shopee:#ee4d2d;
  --text:#10233f;
  --muted:#60708a;
  --line:#dbe5f1;
  --card:#ffffff;
  --bg:#f7faff;
  --shadow:0 15px 35px rgba(25,55,95,.11);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
  transition:.25s;
}

body.dark{
  --text:#edf4ff;
  --muted:#aab8cc;
  --line:#29405d;
  --card:#10243d;
  --bg:#07182b;
  --shadow:0 15px 35px rgba(0,0,0,.28);
}

.wrap{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}

.topbar{
  background:linear-gradient(90deg,var(--navy2),var(--navy));
  color:#fff;
  font-size:13px;
}

.topbar-content{
  min-height:40px;
  display:flex;
  align-items:center;
  gap:28px;
}

.topbar-right{margin-left:auto}

.header{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(12px);
}

.dark .header{background:rgba(10,29,50,.95)}

.header-content{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--navy);
  text-decoration:none;
}

.dark .brand{color:#fff}

.brand-icon{
  width:50px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:linear-gradient(160deg,#2878ef,#0c55c5);
  color:#fff;
  font-size:35px;
}

.brand strong{
  display:block;
  font-size:29px;
}

.brand strong span{color:var(--green)}

.brand small{
  display:block;
  color:var(--muted);
  margin-top:7px;
}

.nav{
  display:flex;
  align-items:center;
  gap:7px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  padding:12px;
  border-radius:9px;
}

.nav a:hover,
.nav a.active{
  color:var(--red);
  background:rgba(217,59,56,.08);
}

.theme-button,
.menu-button{
  border:1px solid var(--line);
  background:var(--card);
  color:var(--text);
  width:44px;
  height:44px;
  border-radius:50%;
  cursor:pointer;
}

.menu-button{display:none}

.hero{
  padding:65px 0;
  background:linear-gradient(135deg,#eef5ff,#fff5f5);
}

.dark .hero{
  background:linear-gradient(135deg,#10243d,#26191b);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:55px;
}

.eyebrow,
.section-heading>span{
  font-size:12px;
  font-weight:900;
  letter-spacing:1.5px;
  color:var(--red);
}

.hero h1{
  font-size:clamp(40px,6vw,64px);
  line-height:1.04;
  margin:15px 0;
  color:var(--navy);
}

.dark .hero h1{color:#fff}

.hero-subtitle{
  font-size:clamp(22px,3vw,31px);
  line-height:1.25;
  margin:0 0 20px;
}

.project-badge{
  display:inline-flex;
  flex-wrap:wrap;
  gap:10px;
  padding:13px 17px;
  margin-bottom:18px;
  border:1px solid #b8ccec;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:#254873;
  font-size:13px;
  font-weight:900;
}

.dark .project-badge{
  background:rgba(255,255,255,.08);
  color:#dceaff;
  border-color:#355273;
}

.hero p{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:27px 0;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:51px;
  padding:0 21px;
  border-radius:9px;
  text-decoration:none;
  font-weight:900;
}

.primary{
  background:linear-gradient(135deg,var(--red),#b9272b);
  color:#fff;
}

.secondary{
  background:var(--card);
  color:var(--shopee);
  border:1px solid #efb4a8;
}

.trust-list{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:#745050;
  font-weight:700;
  font-size:13px;
}

.dark .trust-list{color:#e7b7b7}

.hero-panel{
  background:var(--card);
  border:1px solid #efc3c3;
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow);
  text-align:center;
}

.hero-icon{font-size:76px}

.hero-panel>span{
  display:block;
  font-size:12px;
  color:var(--red);
  font-weight:900;
}

.hero-panel strong{
  display:block;
  font-size:26px;
  margin:10px 0;
}

.hero-panel p{
  color:var(--muted);
  line-height:1.55;
}

.mission-section{
  padding:36px 0;
  background:var(--navy);
}

.mission-card{
  display:flex;
  align-items:center;
  gap:25px;
  color:#fff;
}

.mission-icon{font-size:58px}

.mission-card h2{
  margin:7px 0;
  font-size:32px;
}

.mission-card p{
  margin:0;
  color:#c6d7ea;
  line-height:1.6;
}

.support-section{padding:65px 0}

.section-heading h2{
  font-size:clamp(31px,4vw,44px);
  margin:8px 0;
}

.section-heading p{
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}

.centered{text-align:center}

.cost-grid,
.commitment-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:32px;
}

.cost-grid article,
.commitment-grid article{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:15px;
  padding:24px;
  box-shadow:var(--shadow);
}

.cost-grid article>span,
.commitment-grid article>span{
  font-size:38px;
}

.cost-grid p,
.commitment-grid p{
  color:var(--muted);
  line-height:1.55;
}

.pix-section{
  padding:65px 0;
  background:linear-gradient(135deg,#eaf8ef,#eef5ff);
}

.dark .pix-section{background:#0b2037}

.pix-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:42px;
}

.pix-section h2{
  font-size:clamp(31px,4vw,44px);
  margin:8px 0;
}

.pix-section p{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}

.value-list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:22px 0;
}

.value-list span{
  padding:11px 15px;
  border-radius:999px;
  background:var(--card);
  border:1px solid #bcdcc7;
  font-weight:900;
  color:var(--green);
}

.important-message{
  padding:16px;
  border-radius:12px;
  background:rgba(10,138,54,.10);
  border-left:5px solid var(--green);
  color:var(--green2);
  font-weight:800;
  line-height:1.5;
}

.dark .important-message{color:#b9efca}

.pix-card{
  background:var(--card);
  border:2px solid #75c38f;
  border-radius:20px;
  padding:30px;
  text-align:center;
  box-shadow:var(--shadow);
}

.pix-card-icon{
  font-size:56px;
  color:var(--green);
}

.pix-card>span{
  display:block;
  color:var(--green);
  font-weight:900;
}

.pix-key{
  margin:18px 0 8px;
  padding:17px;
  border:2px dashed #67b882;
  border-radius:10px;
  background:#effaf2;
  color:#125829;
  font-size:21px;
  font-weight:900;
  word-break:break-all;
}

.dark .pix-key{
  background:#153924;
  color:#b7efc9;
}

.pix-type{
  font-size:13px!important;
}

.copy-button{
  width:100%;
  min-height:50px;
  border:0;
  border-radius:9px;
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.copy-feedback{
  min-height:22px;
  margin-top:8px;
  color:var(--green);
  font-weight:800;
}

.qr-placeholder{
  margin-top:18px;
  padding:20px;
  border:1px dashed var(--line);
  border-radius:12px;
  color:var(--muted);
}

.qr-placeholder span{
  display:grid;
  place-items:center;
  width:86px;
  height:86px;
  margin:auto;
  background:#fff;
  border:5px solid #111;
  color:#111;
  font-size:26px;
  font-weight:900;
}

.shopee-section{padding:55px 0}

.shopee-card{
  display:flex;
  align-items:center;
  gap:28px;
  padding:32px;
  border:1px solid #f0b8aa;
  border-radius:18px;
  background:linear-gradient(135deg,#fff0eb,#fff);
  box-shadow:var(--shadow);
}

.dark .shopee-card{background:#2f211e}

.shopee-icon{font-size:75px}

.shopee-card h2{
  font-size:34px;
  margin:8px 0;
}

.shopee-card p{
  color:var(--muted);
  line-height:1.6;
}

.shopee-button{
  display:inline-flex;
  margin-top:8px;
  padding:14px 20px;
  border-radius:9px;
  background:linear-gradient(135deg,var(--shopee),#d83c1e);
  color:#fff;
  text-decoration:none;
  font-weight:900;
}

.commitment{
  padding:60px 0;
  background:#edf5ff;
}

.dark .commitment{background:#0b2037}

.commitment-grid{grid-template-columns:repeat(4,1fr)}

.other-help{padding:60px 0}

.help-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  max-width:900px;
  margin:30px auto;
}

.help-list div{
  padding:17px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:10px;
  font-weight:700;
}

.thank-you{
  text-align:center;
  margin-bottom:50px;
  padding:40px;
  background:linear-gradient(135deg,#fff0f0,#fff);
  border:1px solid #efc8c8;
  border-radius:18px;
}

.dark .thank-you{background:#2d1f22}

.thank-you>span{font-size:58px}

.thank-you p{
  color:var(--muted);
  line-height:1.6;
}

footer{
  background:linear-gradient(135deg,var(--navy2),var(--navy));
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:35px;
  padding:45px 0;
}

.footer-brand{
  color:#fff;
  text-decoration:none;
  font-size:24px;
  font-weight:900;
}

.footer-slogan{
  color:#fff!important;
  font-weight:800;
}

.footer-grid p{color:#bed0e5}

.footer-grid strong{
  display:block;
  margin-bottom:12px;
}

.footer-grid div>a:not(.footer-brand){
  display:block;
  color:#c6d7ea;
  text-decoration:none;
  padding:6px 0;
}

.independent-message{
  padding:18px 0;
  background:rgba(255,255,255,.06);
  color:#d9e7f6;
  text-align:center;
  line-height:1.5;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.13);
  padding:18px 0;
  color:#bcd0e5;
  font-size:13px;
  text-align:center;
}

@media(max-width:950px){
  .hero-grid,
  .pix-grid{
    grid-template-columns:1fr;
  }

  .cost-grid{
    grid-template-columns:1fr 1fr;
  }

  .commitment-grid{
    grid-template-columns:1fr 1fr;
  }

  .nav{
    display:none;
    position:absolute;
    top:96px;
    left:0;
    right:0;
    background:var(--card);
    padding:14px;
    border-bottom:1px solid var(--line);
    flex-direction:column;
  }

  .nav.open{display:flex}
  .menu-button{display:block}
  .theme-button{margin-left:auto}
}

@media(max-width:650px){
  .topbar-right{display:none}

  .topbar-content{
    justify-content:center;
    font-size:11px;
  }

  .brand strong{font-size:21px}
  .brand small{font-size:11px}

  .hero{padding:42px 0}

  .project-badge{
    border-radius:14px;
  }

  .hero-actions,
  .shopee-card,
  .mission-card{
    flex-direction:column;
    text-align:center;
  }

  .button{width:100%}

  .cost-grid,
  .commitment-grid,
  .help-list,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .pix-card{padding:22px}
  .pix-key{font-size:17px}
}
