/* JP Home Solutions Group — Static Landing (no build needed) */
:root{
  --bg:#0a0a0a;
  --panel:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.10);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --green:#22C55E;
  --green2:#16A34A;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 22px}

/* Topbar */
.topbar{
  position:fixed;top:0;left:0;right:0;
  z-index:999;
  padding:14px 18px;
  display:flex;align-items:center;justify-content:space-between;
  background:linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.35));
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.brand{display:flex;align-items:center;gap:10px}
.dot{width:10px;height:10px;border-radius:999px;background:var(--green);box-shadow:0 0 0 6px rgba(34,197,94,.15)}
.brand-name{font-weight:800;letter-spacing:.2px}
.actions{display:flex;align-items:center;gap:14px}

.lang-toggle{
  display:flex;align-items:center;gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
}
.lang-btn{
  background:transparent;border:0;cursor:pointer;
  color:rgba(255,255,255,.7);
  font-weight:800;font-size:13px;
  padding:3px 6px;
}
.lang-btn.active{color:var(--green)}
.sep{color:rgba(255,255,255,.35)}

.mini-cta{
  display:flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background:rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
  text-decoration:none;
  transition:.2s transform, .2s background;
}
.mini-cta:hover{transform:translateY(-1px);background:rgba(34,197,94,.26)}

/* Hero */
.hero{position:relative;min-height:100vh;display:flex;align-items:center}
.hero-bg{
  position:absolute;inset:0;
  background-image:
    radial-gradient(800px 600px at 20% 30%, rgba(34,197,94,.20), transparent 60%),
    radial-gradient(900px 700px at 80% 20%, rgba(34,197,94,.10), transparent 55%),
    url('https://images.unsplash.com/photo-1527030280862-64139fba04ca?auto=format&fit=crop&w=2100&q=70');
  background-size:cover;
  background-position:center;
  filter:saturate(1.15) contrast(1.05);
}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom, rgba(0,0,0,.70), rgba(0,0,0,.55), rgba(0,0,0,.82))}
.hero-inner{
  position:relative;z-index:2;
  max-width:980px;
  margin:0 auto;
  padding:120px 22px 70px;
  text-align:center;
}
.hero-title{
  font-size:56px;
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:900;
  margin-bottom:18px;
}
.hero-subtitle{
  font-size:19px;
  color:var(--muted);
  max-width:860px;
  margin:0 auto 28px;
}
.hero-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:8px}
.cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 22px;border-radius:12px;
  text-decoration:none;
  font-weight:850;
  border:1px solid rgba(255,255,255,.10);
  transition:.2s transform, .2s box-shadow, .2s background, .2s border;
}
.cta-primary{
  background:linear-gradient(135deg, var(--green), var(--green2));
  border-color:rgba(34,197,94,.45);
  box-shadow:0 14px 38px rgba(34,197,94,.22);
}
.cta-primary:hover{transform:translateY(-2px);box-shadow:0 18px 55px rgba(34,197,94,.30)}
.cta-ghost{
  background:rgba(255,255,255,.05);
}
.cta-ghost:hover{transform:translateY(-2px);background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18)}

.trustline{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:26px}
.pill{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.85);
  font-weight:700;
  backdrop-filter: blur(10px);
}

/* Sections */
.section{padding:92px 0;background:#0b0b0b}
.section-alt{background:#0f0f0f}
.section-head{text-align:center;max-width:900px;margin:0 auto 42px}
.section-head h2{font-size:40px;line-height:1.15;font-weight:900;margin-bottom:12px}
.section-head p{color:var(--muted);font-size:17px}

.grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px 22px;
  box-shadow:0 10px 35px rgba(0,0,0,.35);
  transition:.2s transform, .2s border;
  text-align:left;
}
.card:hover{transform:translateY(-3px);border-color:rgba(34,197,94,.35)}
.card i{font-size:32px;color:var(--green)}
.card h3{margin-top:10px;font-size:18px;font-weight:900}
.card p{margin-top:8px;color:var(--muted2)}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.tile{
  border-radius:18px;
  overflow:hidden;
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:.2s transform,.2s border;
}
.tile:hover{transform:translateY(-5px);border-color:rgba(34,197,94,.30)}
.tile-img{height:220px;background-size:cover;background-position:center}
.tile-body{padding:18px 18px 22px}
.tile-body h3{font-weight:900}
.tile-body p{margin-top:6px;color:var(--muted2)}

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.step{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:24px 22px;
  text-align:center;
}
.num{
  width:56px;height:56px;margin:0 auto 12px;border-radius:999px;
  background:linear-gradient(135deg, var(--green), var(--green2));
  display:grid;place-items:center;
  font-weight:900;font-size:22px;
  box-shadow:0 14px 40px rgba(34,197,94,.22);
}
.step h3{font-weight:900}
.step p{color:var(--muted2);margin-top:8px}

/* Final */
.final{
  padding:110px 0;
  background:
    radial-gradient(900px 700px at 20% 20%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(900px 700px at 80% 0%, rgba(34,197,94,.10), transparent 55%),
    linear-gradient(135deg, #0a0a0a, #141414);
  border-top:1px solid rgba(255,255,255,.08);
}
.final-inner{text-align:center;max-width:900px}
.final h2{font-size:46px;line-height:1.1;font-weight:950;margin-bottom:12px}
.final p{color:var(--muted);font-size:17px;margin-bottom:20px}
.smallnote{margin-top:14px;color:rgba(255,255,255,.55);font-size:13px}

/* Footer */
.footer{padding:54px 0;background:#050505;border-top:1px solid rgba(255,255,255,.08)}
.footer-inner{text-align:center}
.footbrand strong{display:block;font-size:18px;font-weight:950}
.footbrand span{display:block;color:rgba(255,255,255,.55);margin-top:6px}
.disclaimer{margin-top:16px;color:rgba(255,255,255,.45);font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero-title{font-size:44px}
}
@media (max-width: 520px){
  .hero-inner{padding-top:105px}
  .hero-title{font-size:34px}
  .hero-subtitle{font-size:16px}
  .section-head h2{font-size:30px}
  .final h2{font-size:32px}
}
