:root{
  --bg1:#f6d7ff;   /* rosa tenue */
  --bg2:#d6f2ff;   /* azzurrino tenue */
  --bg3:#fff2b8;   /* giallo tenue */
  --ink:#1a1536;
  --paper: rgba(255,255,255,.88);
  --paper2: rgba(255,255,255,.92);
  --line: rgba(26,21,54,.14);
  --shadow: 0 18px 46px rgba(0,0,0,.12);
  --radius: 26px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:'Fredoka', sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,.55) 0 12%, transparent 13% 100%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.45) 0 12%, transparent 13% 100%),
    radial-gradient(circle at 30% 78%, rgba(255,255,255,.50) 0 12%, transparent 13% 100%),
    linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  background-size: 560px 560px, 620px 620px, 580px 580px, 100% 100%;
  overflow-x:hidden;
}

.wrap{
  width:min(1080px, 92vw);
  margin:0 auto;
}

.topbar{
  padding:18px 0 6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{display:flex; align-items:center; gap:12px;}
.mark{
  width:56px; height:56px;
  border-radius:18px;
  display:grid; place-items:center;
  background:var(--paper2);
  font-size:30px;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  transform:rotate(-6deg);
}

.brandTitle{
  font-family:'Baloo 2', cursive;
  font-weight:800;
  font-size:22px;
  line-height:1.05;
}
.brandSub{
  font-size:14px;
  opacity:.9;
  margin-top:2px;
}

.chip{
  background:var(--paper2);
  border:2px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  box-shadow:0 12px 22px rgba(0,0,0,.10);
}

.hero{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:stretch;
}

.heroCopy, .heroMedia{
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.tag{
  display:inline-block;
  font-weight:900;
  font-size:14px;
  padding:10px 14px;
  border-radius:999px;
  border:2px dashed rgba(26,21,54,.24);
  background:rgba(255,255,255,.95);
}

h1{
  font-family:'Baloo 2', cursive;
  font-weight:800;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.02;
  margin:14px 0 10px;
}

.hi{
  background: rgba(0,255,153,.35);
  padding:0 10px;
  border-radius:14px;
}

.lead{
  font-size:20px;
  line-height:1.35;
  margin:10px 0 12px;
}

.bullets{
  list-style:none;
  padding:0;
  margin:10px 0 12px;
  display:grid;
  gap:8px;
}
.bullets li{
  font-size:18px;
  display:flex;
  gap:10px;
  align-items:center;
}
.bullets li span{font-size:20px}

.ctaRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}

.btn{
  text-decoration:none;
  border:0;
  cursor:pointer;
  font-family:'Baloo 2', cursive;
  font-weight:900;
  font-size:20px;
  padding:14px 16px;
  border-radius:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  display:inline-block;
}
.btn:active{transform:translateY(2px)}
.btnPrimary{
  background:#00ff99;
  color:var(--ink);
  border:2px solid rgba(26,21,54,.10);
}
.btnGhost{
  background:rgba(255,255,255,.92);
  color:var(--ink);
  border:2px solid var(--line);
}

.flash{
  margin-top:14px;
  background: rgba(255,242,184,.95);
  border:2px solid var(--line);
  border-radius:18px;
  padding:12px 14px;
  font-weight:900;
}

.heroMedia .photoMain{
  height:300px;
  border-radius:22px;
  border:2px dashed rgba(26,21,54,.22);
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.55), transparent 58%),
    linear-gradient(135deg, rgba(246,215,255,.75), rgba(214,242,255,.75), rgba(255,242,184,.75));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:18px;
}

.photoBadge{
  background:rgba(255,255,255,.92);
  border:2px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  margin-bottom:10px;
}

.photoHint{
  font-size:16px;
  opacity:.95;
}

.miniGallery{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
}
.mini{
  height:86px;
  border-radius:18px;
  border:2px dashed rgba(26,21,54,.20);
  background:rgba(255,255,255,.75);
  display:grid;
  place-items:center;
  font-weight:900;
  opacity:.9;
}

.noteSmall{
  margin-top:10px;
  font-size:13px;
  opacity:.9;
}

.simpleSteps{
  margin-top:14px;
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
}
.simpleSteps h2{
  font-family:'Baloo 2', cursive;
  margin:0 0 8px;
  font-size:28px;
}
.simpleSteps ol{
  margin:0;
  padding-left:20px;
  font-size:18px;
  line-height:1.4;
}
.simpleSteps li{margin:8px 0}

.bigImage{
  margin-top:14px;
}
.bigImageBox{
  height:240px;
  border-radius:var(--radius);
  border:2px dashed rgba(26,21,54,.22);
  background:
    radial-gradient(circle at 65% 30%, rgba(255,255,255,.55), transparent 58%),
    linear-gradient(135deg, rgba(214,242,255,.75), rgba(246,215,255,.75), rgba(255,242,184,.75));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:18px;
  box-shadow:var(--shadow);
}
.bigImageBadge{
  background:rgba(255,255,255,.92);
  border:2px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  margin-bottom:10px;
}
.bigImageHint{font-size:16px; opacity:.95}

.formSection{
  margin-top:14px;
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
}
.formHead h2{
  font-family:'Baloo 2', cursive;
  margin:0 0 6px;
  font-size:30px;
}
.formHead p{margin:0 0 12px; font-size:18px; opacity:.95}

.formBox{
  background:rgba(255,255,255,.70);
  border:2px solid rgba(26,21,54,.10);
  border-radius:22px;
  padding:16px;
}

label{display:block; font-weight:900; margin:10px 0 6px}
input,select{
  width:100%;
  padding:14px 14px;
  font-size:18px;
  border-radius:16px;
  border:2px solid rgba(26,21,54,.16);
  background:rgba(255,255,255,.96);
  outline:none;
}
input:focus, select:focus{
  border-color:rgba(26,21,54,.35);
  box-shadow:0 0 0 4px rgba(0,0,0,.05);
}

.row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.chk{display:flex; gap:10px; align-items:flex-start; margin-top:12px}
.chk input{width:20px; height:20px; margin-top:2px}

.btnFull{width:100%; text-align:center}

.micro{
  margin-top:10px;
  font-size:13px;
  opacity:.92;
}

.faq{
  margin-top:14px;
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
}
.faq h2{
  font-family:'Baloo 2', cursive;
  margin:0 0 10px;
  font-size:28px;
}
details{
  padding:10px 0;
  border-top:1px dashed rgba(26,21,54,.18);
}
details:first-of-type{border-top:0}
summary{
  cursor:pointer;
  font-weight:900;
  font-size:18px;
}
details p{
  margin:8px 0 0;
  font-size:18px;
  opacity:.95;
}

.foot{
  text-align:center;
  font-size:14px;
  opacity:.95;
  margin:14px 0 90px;
}

.sticky{
  position:fixed; left:0; right:0; bottom:0;
  background:rgba(255,255,255,.82);
  border-top:2px solid rgba(26,21,54,.10);
  backdrop-filter: blur(10px);
  padding:10px 12px;
}
.stickyInner{
  width:min(1080px, 92vw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.stickyTxt b{
  font-family:'Baloo 2', cursive;
  font-size:18px;
}
.stickyTxt span{display:block; font-size:13px; opacity:.92}
.stickyBtn{
  text-decoration:none;
  background:#00ff99;
  color:var(--ink);
  font-weight:900;
  padding:12px 14px;
  border-radius:18px;
  box-shadow:0 14px 26px rgba(0,0,0,.12);
}

@media (max-width: 940px){
  .hero{grid-template-columns:1fr}
  .miniGallery{grid-template-columns:1fr 1fr 1fr}
  .row2{grid-template-columns:1fr}
  .stickyInner{flex-direction:column; align-items:stretch}
  .stickyBtn{text-align:center}
}