/*
Theme Name: Product Bank Compliance
Theme URI: https://productbankbd.com
Author: Product Bank BD
Description: A lightweight compliance landing page for Hostinger review.
Version: 1.0
*/

/* --- YOUR CSS STARTS HERE --- */

:root{
  --orange:#ff8a00;
  --orange2:#ff5a1f;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --soft:rgba(255,138,0,.12);
  --line:rgba(15,23,42,.12);
  --shadow: 0 18px 45px rgba(2,6,23,.10);
  --radius: 18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(255,138,0,.18), transparent 60%),
    radial-gradient(700px 500px at 90% 10%, rgba(255,90,31,.12), transparent 55%),
    #fff;
  overflow-x:hidden;
}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
.review-banner{
  background:#fff7ed;
  border-bottom:1px solid #fed7aa;
  padding:10px 14px;
  text-align:center;
  font-size:14px;
  color:#7c2d12;
  font-weight:650;
}
.review-banner b{font-weight:800}

/* Top bar */
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(255,255,255,.78);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:12px;text-decoration:none;
  font-weight:900;letter-spacing:.2px;
  color:var(--ink);
}
.mark{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 14px 30px rgba(255,138,0,.22);
  flex:0 0 auto;
}
.mark svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.brand small{display:block;font-weight:700;color:var(--muted);font-size:12px;margin-top:2px}
.cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 16px;border-radius:999px;
  background:var(--ink);color:#fff;text-decoration:none;
  font-weight:800;font-size:14px;border:1px solid rgba(15,23,42,.10);
  transition:transform .15s ease;
  box-shadow: 0 12px 30px rgba(2,6,23,.14);
  white-space:nowrap;
  cursor:default;
}
.cta svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round}

/* Hero */
.hero{ padding:44px 0 22px; }
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:rgba(255,138,0,.10);
  border:1px solid rgba(255,138,0,.22);
  font-weight:800;font-size:13px;color:#8a3b00;
}
.pill svg{width:16px;height:16px;stroke:var(--orange);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
  margin-top:14px;
}
h1{
  margin:14px 0 12px;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height:1.03;
  letter-spacing:-.03em;
}
.grad{
  background:linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}
.lead{
  margin:0 0 18px;
  font-size:18px;
  color:var(--muted);
  line-height:1.6;
  max-width:58ch;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 18px;border-radius:999px;
  text-decoration:none;font-weight:900;font-size:14px;
  border:1px solid rgba(15,23,42,.10);
  transition:transform .15s ease, box-shadow .15s ease;
  cursor:default;
  user-select:none;
}
.btn-primary{
  color:#fff;background:linear-gradient(135deg,var(--orange),var(--orange2));
  box-shadow: 0 18px 35px rgba(255,138,0,.20);
}
.btn-ghost{
  background:#fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round}

.disclaimer{
  margin-top:14px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.10);
  border-left:5px solid var(--orange);
  border-radius:14px;
  padding:12px 14px;
  color:#334155;
  font-size:14px;
  line-height:1.45;
}

/* Right card */
.card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,138,0,.22), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(255,90,31,.14), transparent 55%);
  transform: rotate(15deg);
  pointer-events:none;
}
.card-inner{position:relative;z-index:2}
.mini-title{font-weight:900;margin:0 0 10px;font-size:15px}
.stats{
  display:grid;grid-template-columns: repeat(2,1fr);gap:10px;
}
.stat{
  border-radius:16px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.08);
  padding:14px;
}
.stat strong{display:block;font-size:20px;letter-spacing:-.02em}
.stat span{display:block;color:var(--muted);font-size:13px;margin-top:4px}

/* Wave icons bar */
.features{
  margin-top:16px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
  padding:14px 12px;
}
.fgrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.fitem{
  display:flex;align-items:center;gap:12px;
  padding:12px 10px;border-radius:14px;
  background:linear-gradient(180deg, rgba(255,138,0,.06), #fff);
}
.ficon{
  width:50px;height:50px;border-radius:16px;
  display:grid;place-items:center;
  background:var(--soft);
  border:1px solid rgba(255,138,0,.30);
  position:relative;overflow:hidden;
  flex:0 0 auto;
}
.ficon svg{
  width:28px;height:28px;
  stroke:var(--orange);fill:none;stroke-width:2.4;
  stroke-linecap:round;stroke-linejoin:round;
  filter: drop-shadow(0 0 10px rgba(255,138,0,.45))
          drop-shadow(0 14px 22px rgba(255,138,0,.20));
  animation: pb-wave 2.35s cubic-bezier(.4,0,.2,1) infinite;
  animation-delay: calc(var(--phase) * -0.24s);
  will-change: transform;
}
.ficon::before{
  content:"";
  position:absolute;inset:-40%;
  background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.55) 45%, transparent 55%);
  transform:translateX(-70%) rotate(18deg);
  opacity:0;
  animation: pb-shine 2.35s ease-in-out infinite;
  animation-delay: calc(var(--phase) * -0.24s);
}
@keyframes pb-wave{
  0%{transform:translateY(0) scale(1)}
  18%{transform:translateY(-15px) scale(1.08)}
  45%{transform:translateY(8px) scale(1.12)}
  70%{transform:translateY(-10px) scale(1.06)}
  100%{transform:translateY(0) scale(1)}
}
@keyframes pb-shine{
  0%{opacity:0;transform:translateX(-70%) rotate(18deg)}
  30%{opacity:.26}
  55%{opacity:0;transform:translateX(70%) rotate(18deg)}
  100%{opacity:0;transform:translateX(70%) rotate(18deg)}
}
.ftxt b{display:block;font-size:14px}
.ftxt small{display:block;color:var(--muted);margin-top:3px;font-size:12.5px;line-height:1.2}

/* Single-page sections (no anchor links needed) */
.section{padding:34px 0 54px}
.split{
  display:grid;grid-template-columns: 1fr 1fr;gap:20px;align-items:start;
  margin-top:18px;
}
.panel{
  background:#fff;border:1px solid var(--line);
  border-radius:20px;padding:20px;
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
}
.panel h2{margin:0 0 8px;font-size:22px;letter-spacing:-.02em}
.panel p{margin:0;color:var(--muted);line-height:1.7}
.list{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.li{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px;border-radius:16px;
  background:rgba(15,23,42,.03);
  border:1px solid rgba(15,23,42,.06);
}
.li svg{width:18px;height:18px;stroke:var(--orange);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;margin-top:2px}
.li div{font-weight:800}
.li div span{display:block;font-weight:650;color:var(--muted);font-size:13px;margin-top:3px}

footer{
  padding:26px 0 44px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
}
.foot{
  display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap;
}
.foot small{color:var(--muted);line-height:1.6;max-width:80ch}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background:rgba(15,23,42,.03);
  border:1px solid rgba(15,23,42,.08);
  color:#334155;font-weight:800;font-size:13px;
}

/* Mobile */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero{padding:32px 0 18px}
  .split{grid-template-columns:1fr}
  .fgrid{grid-template-columns:repeat(2,1fr)}
  .hide-mobile{display:none !important;}
  .cta{display:none;} /* cleaner on mobile */
}
@media (max-width: 420px){
  .fgrid{grid-template-columns:1fr}
}