
  :root{
    --bg:#f1f4ff;
    --surface:#ffffff;
    --text:#3c3c52;
    --muted:#73738b;
    --pink:#ff9fb6;
    --pink-soft:#ffe3ec;
    --lavender:#b9c4ff;
    --lavender-soft:#e6ebff;
    --shadow:0 14px 34px rgba(138,150,222,.16);
    --shadow-sm:0 8px 22px rgba(138,150,222,.10);
    --radius:24px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:"Trebuchet MS","Segoe UI","Verdana",sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.65;
    overflow-x:hidden;
  }
  .blob{position:fixed;border-radius:50%;filter:blur(72px);opacity:.55;z-index:-1;pointer-events:none;}
  .blob.b1{width:380px;height:380px;background:#ffd5e1;top:-130px;left:-130px;}
  .blob.b2{width:430px;height:430px;background:#d5ddff;bottom:-150px;right:-150px;}
  .wrap{max-width:1080px;margin:0 auto;padding:0 20px;}

  /* Hero */
  header{text-align:center;padding:64px 0 18px;}
  .pill{display:inline-block;background:var(--pink-soft);color:#d35c7d;font-size:.78rem;font-weight:bold;letter-spacing:.14em;text-transform:uppercase;padding:7px 16px;border-radius:999px;margin-bottom:18px;}
  h1{font-size:clamp(2rem,5vw,3.15rem);line-height:1.12;color:#46466d;letter-spacing:-.5px;font-weight:800;}
  h1 .accent{color:#e06a8c;}
  .sub{color:var(--muted);max-width:620px;margin:16px auto 0;font-size:1.05rem;}

  /* Features */
  .features{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:58px 0 10px;}
  .feature{background:var(--surface);border-radius:var(--radius);padding:26px 22px;box-shadow:var(--shadow-sm);}
  .feature .dot{width:14px;height:14px;border-radius:50%;background:var(--pink);margin-bottom:15px;}
  .feature:nth-child(2) .dot{background:var(--lavender);}
  .feature:nth-child(3) .dot{background:#ffd9a8;}
  .feature h3{font-size:1.04rem;margin-bottom:8px;color:#46466d;}
  .feature p{font-size:.92rem;color:var(--muted);}

  /* Section */
  section{padding:54px 0 6px;}
  .sec-head{text-align:center;margin-bottom:36px;}
  .sec-head .kicker{color:#d35c7d;font-weight:bold;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;}
  .sec-head h2{font-size:clamp(1.6rem,3.5vw,2.3rem);color:#46466d;margin-top:8px;font-weight:800;}

  /* Gallery */
  .gallery{max-width:960px;margin:0 auto;display:flex;flex-direction:column;gap:52px;}
  .g-block h3{font-size:1.02rem;color:#46466d;text-align:center;margin-bottom:20px;}
  .g-land{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
  .g-square{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
  .g-card{background:var(--surface);border-radius:20px;overflow:hidden;box-shadow:var(--shadow-sm);}
  .g-card img{width:100%;height:auto;display:block;}
  .g-land .g-card img{aspect-ratio:3/2;object-fit:cover;}
  .g-square .g-card img{aspect-ratio:1/1;object-fit:cover;}
  .g-card .cap{padding:12px 16px 15px;}
  .g-card .cap .num{display:inline-block;background:var(--lavender-soft);color:#6b76c9;font-weight:bold;font-size:.72rem;padding:2px 10px;border-radius:999px;margin-bottom:6px;}
  .g-card .cap h4{font-size:.98rem;color:#46466d;margin-bottom:2px;}
  .g-card .cap p{font-size:.82rem;color:var(--muted);}

  /* FAQ */
  .faq{max-width:760px;margin:0 auto;}
  .faq-item{background:var(--surface);border-radius:18px;padding:22px 26px;margin-bottom:16px;box-shadow:var(--shadow-sm);}
  .faq-item h3{font-size:1.02rem;color:#46466d;margin-bottom:8px;}
  .faq-item h3 .q{color:#e06a8c;margin-right:9px;}
  .faq-item p{font-size:.93rem;color:var(--muted);}

  footer{text-align:center;padding:44px 0 58px;color:var(--muted);font-size:.85rem;}

  /* Responsive */
  @media(max-width:860px){
    .features{grid-template-columns:1fr;}
    .g-land{grid-template-columns:1fr;}
    .g-square{grid-template-columns:repeat(2,1fr);}
  }
  @media(max-width:480px){
    header{padding-top:48px;}
    .g-square{grid-template-columns:1fr;}
  }
