
/* ArumaMaman — Styles */
:root{
  --bg:#ffffff;
  --panel:#fff6f8;
  --text:#1e1e1e;
  --muted:#6a6a6a;
  --pink:#ff7aa8;
  --pink-2:#ffd1df;
  --border:#f2d7df;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, var(--pink-2), transparent 55%),
    radial-gradient(1000px 600px at 85% 0%, #ffe9f1, transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  background: #fff;
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  color:var(--muted);
  font-size:14px;
}
.badge .dot{width:10px; height:10px; border-radius:999px; background:var(--pink)}
/* Header */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(242,215,223,.75);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:10px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:42px; width:auto}
.brand .name{font-weight:800; letter-spacing:.2px}
.navlinks{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  font-weight:600;
  color:#333;
  border:1px solid transparent;
}
.navlinks a.active,
.navlinks a:hover{
  background: #fff;
  border-color: var(--border);
}

/* Hero */
.hero{
  padding:44px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: rgba(255,255,255,.9);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroCard{
  padding:22px;
}
.heroCard h1{
  margin:10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.1;
}
.heroCard p{margin:0 0 16px; color:var(--muted); font-size:16px}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  font-weight:800;
  border: 1px solid var(--border);
  background: #fff;
  cursor:pointer;
}
.btn.primary{
  background: linear-gradient(135deg, var(--pink), #ff9dbd);
  color:#fff;
  border-color: transparent;
}
.btn.primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn.ghost:hover{background:#fff; border-color:var(--border)}
.small{font-size:14px; font-weight:700; color:var(--muted)}

.sideCard{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.kpi{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  padding:12px 14px;
}
.kpi strong{display:block; font-size:18px}
.kpi span{color:var(--muted); font-size:14px}

/* Sections */
.section{padding:18px 0 44px}
.section h2{margin:0 0 10px; font-size:26px}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:16px;
}
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: #fff;
  border:1px solid var(--border);
  margin-bottom:10px;
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:var(--muted)}
/* Content pages */
.pageTitle{
  padding:26px 0 14px;
}
.pageTitle h1{margin:0; font-size:34px; line-height:1.1}
.pageTitle p{margin:8px 0 0; color:var(--muted)}
.content{
  padding:0 0 44px;
}
.content .card{padding:18px}
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.list{
  margin:0; padding-left:18px; color:var(--muted)
}
hr.sep{
  border:0;
  height:1px;
  background: rgba(242,215,223,.9);
  margin:18px 0;
}
.note{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:12px 14px;
  color:#5a3342;
  font-weight:700;
}
.formRow{display:grid; gap:10px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.95);
  font: inherit;
}
textarea{min-height:120px; resize:vertical}
.footer{
  padding:22px 0 26px;
  color:var(--muted);
  border-top:1px solid rgba(242,215,223,.85);
  background: rgba(255,255,255,.6);
}
.footerGrid{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.footer a{font-weight:800; color:#333}

/* Responsive */
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
  .brand img{height:38px}
}


/* --- v4 polish --- */
:root{
  --shadow: 0 12px 34px rgba(0,0,0,.07);
}

.container{padding:0 20px}

header .nav{padding:12px 0}
.navlinks a{font-weight:700}
.navlinks{gap:6px}

.brand img{display:block}

.hero{padding:56px 0 24px}
.heroCard{padding:26px}
.heroCard p{max-width: 62ch}

.card{border-radius: 20px}
.kpi{padding:14px 16px}
.kpi strong{font-size:18px}
.kpi span{line-height:1.45}

.grid3 .feature{padding:18px}
.feature h3{font-size:18px}

.btn{padding:12px 18px}
.btn.primary{box-shadow: 0 10px 24px rgba(255,122,168,.22)}
.btn.primary:active{transform: translateY(1px)}

.pageTitle{padding:34px 0 18px}
.content .card{padding:20px}

.twoCol{align-items:start}

input, textarea, select{outline:none}
input:focus, textarea:focus, select:focus{
  border-color: rgba(255,122,168,.55);
  box-shadow: 0 0 0 4px rgba(255,122,168,.16);
}

.footer{padding:26px 0 30px}

/* Better mobile spacing */
@media (max-width: 900px){
  .hero{padding:42px 0 18px}
  .heroCard{padding:20px}
  .navlinks a{padding:10px 10px}
}


/* --- checklist layout --- */
[data-checklist] .formRow{gap:10px}
[data-checklist] label{
  display:flex;
  flex-direction: row-reverse; /* checkbox on the right */
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid rgba(242,215,223,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
}
[data-checklist] label:hover{
  background: rgba(255,246,248,.95);
}
[data-checklist] input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
  accent-color: var(--pink);
  flex:0 0 auto;
}
[data-checklist] h3{
  margin:6px 0 10px;
  font-size:16px;
}


/* --- unified checklist --- */
[data-checklist]{
  display:grid;
  gap:14px;
}
[data-checklist] .formRow{
  display:grid;
  gap:10px;
}
[data-checklist] label{
  display:flex;
  flex-direction: row-reverse;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid rgba(242,215,223,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  transition: background .2s, transform .1s;
}
[data-checklist] label:hover{
  background: rgba(255,246,248,1);
}
[data-checklist] input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
  accent-color: var(--pink);
}


/* --- checklistCols unified --- */
.checklistCols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
@media (max-width: 900px){
  .checklistCols{grid-template-columns:1fr}
}

/* Strong unified checklist item look (same everywhere) */
.checklistCols .formRow{display:grid; gap:10px}
.checklistCols label{
  display:flex;
  flex-direction: row-reverse; /* checkbox on right */
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid rgba(242,215,223,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
}
.checklistCols label:hover{background: rgba(255,246,248,1)}
.checklistCols input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
  accent-color: var(--pink);
  flex:0 0 auto;
}


/* --- PDF panel redesign --- */
.pdfMeta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:10px;
}
@media (max-width: 900px){
  .pdfMeta{grid-template-columns:1fr}
}
.pdfMeta .field{
  background: rgba(255,255,255,.85);
  border:1px solid rgba(242,215,223,.95);
  border-radius: 16px;
  padding:12px;
}
.pdfMeta .field label{
  display:block;
  font-size:13px;
  color:var(--muted);
  font-weight:800;
  margin-bottom:8px;
}
.pdfMeta .field input{
  border-radius: 14px;
}
.pdfActions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}
.sectionCardTitle{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 8px;
}
.sectionCardTitle .emoji{
  width:34px;
  height:34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(242,215,223,.95);
}
.sectionCardDesc{margin:0 0 14px; color:var(--muted)}


/* --- PDF PAGE V13 --- */
.pdfPage{padding:0 0 44px;}
.pdfHero{
  margin-top:18px; padding:18px;
  background: linear-gradient(135deg, rgba(255,122,168,.22), rgba(255,255,255,.85));
  border:1px solid rgba(242,215,223,.95);
  border-radius:22px;
  box-shadow: var(--shadow);
}
.pdfHeroTop{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;}
.pdfHero h1{margin:0;font-size:34px;line-height:1.1}
.pdfHero p{margin:8px 0 0;color:var(--muted)}
.pdfQuick{display:flex;gap:8px;flex-wrap:wrap;align-items:center;}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(242,215,223,.95);
  font-weight:900;
}
.pill small{font-weight:900;color:var(--muted)}
.pdfLayout{display:grid;grid-template-columns:320px 1fr;gap:14px;align-items:start;margin-top:14px;}
@media (max-width:980px){.pdfLayout{grid-template-columns:1fr}}
.pdfSidebar{
  position:sticky; top:84px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(242,215,223,.95);
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:14px;
}
.pdfSidebar h3{margin:0 0 10px;font-size:16px}
.pdfNav{display:grid;gap:8px}
.pdfNav a{
  padding:12px 12px;border-radius:16px;
  border:1px solid rgba(242,215,223,.95);
  background: rgba(255,246,248,.55);
  font-weight:900;
  display:flex;align-items:center;justify-content:space-between;
}
.pdfNav a:hover{background: rgba(255,246,248,.95)}
.pdfNav a span{display:flex;align-items:center;gap:10px}
.pdfNav a .k{color:var(--muted);font-weight:900;font-size:12px}
.pdfMain{display:grid;gap:14px}
.pdfCard{
  border-radius:22px; overflow:hidden;
  border:1px solid rgba(242,215,223,.95);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.pdfCardHeader{
  padding:16px 18px;
  background: linear-gradient(135deg, rgba(255,122,168,.18), rgba(255,255,255,.92));
  border-bottom:1px solid rgba(242,215,223,.95);
  display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.pdfCardHeader .left{display:flex;align-items:center;gap:12px}
.pdfIcon{
  width:40px;height:40px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(242,215,223,.95);
}
.pdfCardHeader h2{margin:0;font-size:20px}
.pdfCardHeader p{margin:6px 0 0;color:var(--muted)}
.pdfProgress{min-width:190px}
.bar{
  height:10px;border-radius:999px;
  background: rgba(242,215,223,.7);
  overflow:hidden;
  border:1px solid rgba(242,215,223,.95);
}
.bar > i{display:block;height:100%;width:0%;background: linear-gradient(135deg, var(--pink), #ff9dbd);}
.pdfProgress small{display:block;margin-top:6px;color:var(--muted);font-weight:900;text-align:right}
.pdfCardBody{padding:16px 18px}
.pdfDivider{height:1px;background: rgba(242,215,223,.9);margin:14px 0}

/* checklist in cards */
.pdfCardBody .checklistCols{gap:12px}
.pdfCardBody .checklistCols label{
  background: rgba(255,246,248,.55);
  border-radius:18px;
}
.pdfCardBody .checklistCols label:hover{background: rgba(255,246,248,.95)}

/* meta + actions */
.pdfMeta{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:900px){.pdfMeta{grid-template-columns:1fr}}
.pdfMeta .field{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(242,215,223,.95);
  border-radius:18px;
  padding:12px;
}
.pdfActions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:12px}
.pdfActions .btn{border-radius:16px}


/* --- Clean modern list design --- */
.listGrid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
}
@media(max-width:900px){
  .listGrid{grid-template-columns:1fr}
}
.listCard{
  background: linear-gradient(135deg,#fff,#fff6f9);
  border:1px solid rgba(242,215,223,.9);
  border-radius:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  padding:20px;
}
.listHeader{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.listIcon{
  width:46px;
  height:46px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(242,215,223,.9);
  display:grid;
  place-items:center;
  font-size:22px;
}
.listHeader h2{margin:0;font-size:20px}
.listCard p{margin:6px 0 14px;color:var(--muted)}


/* --- v18 listes premium --- */
.listsHero{
  background: linear-gradient(135deg, rgba(255,122,168,.22), rgba(255,255,255,.92));
  border:1px solid rgba(242,215,223,.95);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 18px;
}
.listsHeroTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.listsHero h1{margin:0; font-size:34px; line-height:1.1}
.listsHero p{margin:8px 0 0; color:var(--muted); max-width: 70ch}
.metaBar{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top: 14px;
}
@media(max-width:900px){ .metaBar{grid-template-columns:1fr} }
.metaField{
  background: rgba(255,255,255,.9);
  border:1px solid rgba(242,215,223,.95);
  border-radius: 18px;
  padding:12px;
}
.metaField label{
  display:block;
  font-size:13px;
  color:var(--muted);
  font-weight:900;
  margin-bottom:8px;
}
.metaField input{
  width:100%;
  border-radius: 14px;
}
.listGrid{gap:18px}
.listCard{
  border-radius: 26px;
  padding: 18px;
}
.listHeader{
  justify-content:space-between;
}
.listHeader .left{
  display:flex; align-items:center; gap:12px;
}
.listHeader .right{
  display:flex; gap:8px; flex-wrap:wrap;
}
.listIcon{
  width:46px; height:46px; border-radius: 18px;
}
.listCard .btn{
  border-radius: 16px;
}
.listCard .btn.primary{
  box-shadow: 0 10px 24px rgba(255,122,168,.22);
}


/* --- v21 list actions --- */
.listActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}


/* --- v22 micro-animations --- */
@media (prefers-reduced-motion: no-preference){
  .listsHero, .listCard{
    animation: fadeUp .5s ease both;
  }
  .listCard{animation-delay: var(--d, 0ms);}
  @keyframes fadeUp{
    from{opacity:0; transform: translateY(10px);}
    to{opacity:1; transform: translateY(0);}
  }
}

.listCard{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.listCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
  border-color: rgba(255,122,168,.35);
}

.checklistCols label{
  transition: background .15s ease, transform .12s ease, border-color .15s ease;
}
.checklistCols label:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,168,.35);
}

.btn{
  transition: transform .12s ease, box-shadow .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary:hover{ box-shadow: 0 12px 26px rgba(255,122,168,.25); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(10px); }
.reveal.is-visible{ opacity:1; transform: translateY(0); transition: opacity .45s ease, transform .45s ease; }
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none;}
}
