:root{
  --color-bg:#FDF9FC;
  --color-bg-alt:#F5EFFB;
  --color-surface:#FFFFFF;
  --color-text:#2A2438;
  --color-text-soft:#6B6478;
  --color-border:#ECE3F5;

  --pink:#FF7FC4;
  --purple:#A876FF;
  --blue:#6FA3FF;
  --teal:#4FE0C7;

  --candy-gradient:linear-gradient(135deg,var(--pink) 0%,var(--purple) 38%,var(--blue) 68%,var(--teal) 100%);
  --candy-gradient-soft:linear-gradient(135deg,#FFE1F3 0%,#EBE0FF 40%,#DCEBFF 70%,#D9FBF3 100%);

  --shadow-sm:0 2px 8px rgba(42,36,56,0.07);
  --shadow-md:0 10px 26px rgba(42,36,56,0.10), 0 3px 8px rgba(42,36,56,0.06);
  --shadow-lg:0 22px 54px rgba(42,36,56,0.14), 0 8px 18px rgba(42,36,56,0.08);
  --shadow-xl:0 34px 84px rgba(42,36,56,0.18), 0 14px 28px rgba(42,36,56,0.10);

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-xl:40px;

  --space-1:0.5rem;--space-2:1rem;--space-3:1.5rem;--space-4:2rem;--space-5:3rem;--space-6:4.5rem;--space-7:6rem;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Albert Sans', sans-serif;
  background:var(--color-bg);
  color:var(--color-text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-weight:700;letter-spacing:-0.02em;margin:0 0 0.6em;}
p{margin:0 0 1em;color:var(--color-text-soft);}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.canvas-container{max-width:1200px;margin:0 auto;padding:0 1.5rem;}
@media(min-width:1024px){.canvas-container{padding:0 2.5rem;}}


.canvas-header{
  position:sticky;top:0;z-index:90;
  background:rgba(253,249,252,0.86);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:background .3s ease;
}
.canvas-header::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:var(--candy-gradient);
  transform:scaleX(0);transform-origin:center;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.canvas-header.is-sealed::after{transform:scaleX(1);}
.canvas-header__inner{
  max-width:1200px;margin:0 auto;padding:0.9rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
}
@media(min-width:1024px){.canvas-header__inner{padding:1.1rem 2.5rem;}}

.canvas-logo{display:flex;align-items:center;gap:0.6rem;}
.canvas-logo__img{width:34px;height:34px;}
.canvas-logo__text{font-weight:800;font-size:1.25rem;letter-spacing:-0.02em;}

.canvas-burger{
  width:48px;height:48px;border-radius:var(--radius-sm);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  background:var(--color-surface);box-shadow:var(--shadow-sm);
  transition:box-shadow .3s ease, transform .3s ease;
  position:relative;z-index:110;
}
.canvas-burger:hover{box-shadow:var(--shadow-md);transform:translateY(-1px);}
.canvas-burger__line{width:20px;height:2px;background:var(--color-text);border-radius:2px;transition:transform .35s ease, opacity .25s ease;}
.canvas-burger.is-active .canvas-burger__line:nth-child(1){transform:translateY(7px) rotate(45deg);}
.canvas-burger.is-active .canvas-burger__line:nth-child(2){opacity:0;}
.canvas-burger.is-active .canvas-burger__line:nth-child(3){transform:translateY(-7px) rotate(-45deg);}


.drawer{
  position:fixed;inset:0;z-index:100;
  background:var(--candy-gradient);
  transform:translateY(-100%);
  transition:transform .65s cubic-bezier(.68,-0.05,.2,1);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:2rem;
}
.drawer.is-open{transform:translateY(0);}
.drawer__nav{display:flex;flex-direction:column;align-items:center;gap:1.6rem;margin-bottom:3rem;}
.drawer__link{
  font-size:clamp(1.6rem,5vw,2.6rem);font-weight:700;color:#fff;
  opacity:0;transform:translateY(-24px);
  transition:color .3s ease;
}
.drawer.is-open .drawer__link{animation:drawerLinkIn .6s forwards;}
.drawer.is-open .drawer__link:nth-child(1){animation-delay:.08s;}
.drawer.is-open .drawer__link:nth-child(2){animation-delay:.16s;}
.drawer.is-open .drawer__link:nth-child(3){animation-delay:.24s;}
.drawer.is-open .drawer__link:nth-child(4){animation-delay:.32s;}
.drawer.is-open .drawer__link:nth-child(5){animation-delay:.40s;}
.drawer__link:hover{color:#fff9;}
.drawer__link.is-current{text-decoration:underline;text-underline-offset:6px;}
@keyframes drawerLinkIn{to{opacity:1;transform:translateY(0);}}
.drawer__close{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  color:#fff;font-weight:600;font-size:1rem;
  display:flex;align-items:center;gap:0.5rem;
  padding:0.8rem 1.6rem;border-radius:999px;
  background:rgba(255,255,255,0.16);
  transition:background .3s ease;
  min-height:44px;
}
.drawer__close:hover{background:rgba(255,255,255,0.28);}


.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  padding:0.95rem 1.8rem;border-radius:var(--radius-md);
  font-weight:600;font-size:0.98rem;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  min-height:48px;
}
.btn--primary{background:var(--candy-gradient);color:#fff;box-shadow:var(--shadow-md);}
.btn--primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);}
.btn--ghost{background:var(--color-surface);color:var(--color-text);border:1.5px solid var(--color-border);box-shadow:var(--shadow-sm);}
.btn--ghost:hover{border-color:var(--purple);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn--white{background:#fff;color:var(--purple);box-shadow:var(--shadow-md);}
.btn--white:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);}
.btn--block{width:100%;}


.stage{position:relative;overflow:hidden;padding:clamp(3rem,7vw,6rem) 0 clamp(3rem,6vw,5rem);}
.stage__decor{
  position:absolute;inset:-20% -10% auto -10%;height:130%;
  background:var(--candy-gradient-soft);
  filter:blur(40px);opacity:0.9;z-index:0;
}
.stage__grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center;}
@media(min-width:1024px){.stage__grid{grid-template-columns:1.1fr 0.9fr;gap:3rem;}}

.stage__eyebrow{
  display:inline-block;font-weight:600;font-size:0.85rem;letter-spacing:0.04em;
  color:var(--purple);background:#fff;padding:0.5rem 1rem;border-radius:999px;
  box-shadow:var(--shadow-sm);margin-bottom:1.4rem;
}
.stage__title{font-size:clamp(2.3rem,5.5vw,4rem);line-height:1.08;margin-bottom:1.2rem;}
.stage__title--sub{font-size:clamp(2rem,4.5vw,3.2rem);}
.spotlight-text{
  background:var(--candy-gradient);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.stage__lead{font-size:clamp(1.02rem,1.6vw,1.18rem);max-width:56ch;color:var(--color-text-soft);}
.stage__actions{display:flex;flex-wrap:wrap;gap:1rem;margin:1.8rem 0 1.6rem;}
.stage__tags{display:flex;flex-wrap:wrap;gap:1.2rem;}
.stage__tags li{display:flex;align-items:center;gap:0.5rem;font-size:0.9rem;color:var(--color-text-soft);font-weight:500;}
.stage__tags i{color:var(--purple);}

.stage__visual{position:relative;}
.stage__img{width:100%;border-radius:var(--radius-xl);box-shadow:var(--shadow-xl);object-fit:cover;aspect-ratio:4/5;}

.stage--sub{padding:clamp(2.6rem,6vw,4rem) 0 clamp(2.2rem,5vw,3.4rem);}
.stage--sub__inner{position:relative;z-index:1;max-width:820px;}


.canvas-seam{height:110px;background:linear-gradient(to bottom,var(--color-bg-alt),var(--color-surface));}
.canvas-seam--alt{background:linear-gradient(to bottom,var(--color-surface),var(--color-bg-alt));}


.gallery{padding:clamp(3rem,6vw,5.5rem) 0;}
.gallery--intro{padding:2rem 0 0;}
.gallery--intro-inner{max-width:900px;}
.gallery--intro-text{font-size:clamp(1.1rem,2vw,1.35rem);color:var(--color-text);font-weight:500;text-align:center;}
.gallery--modules{background:var(--color-bg-alt);}
.gallery--process{background:var(--color-surface);}
.gallery--carousel{background:var(--color-bg-alt);}
.gallery--benefits{background:var(--color-surface);}
.gallery--split-img{background:var(--color-surface);}
.gallery--fit{background:var(--color-bg-alt);}
.gallery--faq{background:var(--color-surface);}
.gallery--contact{background:var(--color-surface);}
.gallery--newsletter{background:var(--color-bg-alt);}
.gallery--legal{background:var(--color-surface);}
.gallery--thanks-next{background:var(--color-surface);}

.gallery__eyebrow{
  display:inline-block;font-weight:600;font-size:0.82rem;letter-spacing:0.05em;text-transform:uppercase;
  color:var(--purple);margin-bottom:0.8rem;
}
.gallery__title{font-size:clamp(1.7rem,3.6vw,2.6rem);max-width:22ch;line-height:1.15;}
.gallery__lead{max-width:60ch;font-size:1.05rem;}

.gallery__split{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center;}
@media(min-width:1024px){.gallery__split{grid-template-columns:1fr 1fr;gap:3.5rem;}}
.gallery__split--reverse{direction:rtl;}
.gallery__split--reverse > *{direction:ltr;}
.gallery__split--contact{align-items:start;}
.gallery__split--fit{margin-top:2.5rem;}
.gallery__img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);object-fit:cover;aspect-ratio:4/3;}
.gallery__img--wide{aspect-ratio:16/7;}
.gallery--fit-img{margin-top:2.5rem;}


.gallery--cascade{margin-top:2.6rem;display:flex;flex-direction:column;}
.spotlight-card{
  background:var(--color-surface);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);overflow:hidden;
  display:grid;grid-template-columns:1fr;
  max-width:760px;
  transition:transform .4s ease, box-shadow .4s ease;
}
.spotlight-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-xl);}
@media(min-width:768px){.spotlight-card{grid-template-columns:220px 1fr;}}
.spotlight-card__img{width:100%;height:180px;object-fit:cover;}
@media(min-width:768px){.spotlight-card__img{height:100%;}}
.spotlight-card__body{padding:1.6rem 1.8rem;}
.spotlight-card__tag{
  display:inline-block;font-size:0.75rem;font-weight:700;letter-spacing:0.05em;
  color:#fff;background:var(--candy-gradient);padding:0.3rem 0.8rem;border-radius:999px;margin-bottom:0.7rem;
}
.spotlight-card__body h3{font-size:1.2rem;margin-bottom:0.5rem;}
.spotlight-card__body p{margin:0;font-size:0.95rem;}

.gallery--cascade .spotlight-card:nth-child(1){align-self:flex-start;z-index:4;}
.gallery--cascade .spotlight-card:nth-child(2){align-self:flex-start;margin-left:5%;margin-top:-1.6rem;z-index:3;}
.gallery--cascade .spotlight-card:nth-child(3){align-self:flex-start;margin-left:10%;margin-top:-1.6rem;z-index:2;}
.gallery--cascade .spotlight-card:nth-child(4){align-self:flex-start;margin-left:15%;margin-top:-1.6rem;z-index:1;}
@media(max-width:767px){
  .gallery--cascade .spotlight-card{margin-left:0 !important;margin-top:1.4rem !important;max-width:100%;}
  .gallery--cascade .spotlight-card:first-child{margin-top:0 !important;}
}


.process{margin-top:2.6rem;display:grid;grid-template-columns:1fr;gap:2.4rem;position:relative;}
@media(min-width:900px){.process{grid-template-columns:repeat(4,1fr);}}
.process::before{
  content:'';position:absolute;top:5.6rem;left:9%;right:9%;height:2px;
  background:var(--candy-gradient);opacity:0.35;display:none;
}
@media(min-width:900px){.process::before{display:block;}}
.process__step{position:relative;padding-top:0.2rem;}
.process__number{
  display:block;font-size:0.85rem;font-weight:700;color:var(--purple);margin-bottom:0.6rem;letter-spacing:0.04em;
}
.process__icon{
  width:60px;height:60px;border-radius:var(--radius-md);
  background:var(--candy-gradient);color:#fff;font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);margin-bottom:1.1rem;position:relative;z-index:1;
}
.process__step h3{font-size:1.12rem;margin-bottom:0.5rem;}
.process__step p{font-size:0.94rem;}


.shelf{
  display:flex;gap:1.5rem;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:2.2rem 1.5rem 1rem;margin:0 -1.5rem;
  scrollbar-width:thin;
}
@media(min-width:1024px){.shelf{padding:2.2rem 2.5rem 1rem;margin:0 -2.5rem;}}
.shelf::-webkit-scrollbar{height:8px;}
.shelf::-webkit-scrollbar-thumb{background:var(--color-border);border-radius:999px;}
.shelf-card{
  scroll-snap-align:start;flex:0 0 82%;max-width:320px;
  background:var(--color-surface);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);padding:2rem 1.6rem;
  transition:transform .35s ease, box-shadow .35s ease;
}
@media(min-width:640px){.shelf-card{flex:0 0 320px;}}
.shelf-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.shelf-card__icon{
  width:52px;height:52px;border-radius:var(--radius-sm);
  background:var(--candy-gradient-soft);color:var(--purple);font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;
}
.shelf-card h3{font-size:1.1rem;margin-bottom:0.5rem;}
.shelf-card p{font-size:0.93rem;margin:0;}


.benefits{display:grid;grid-template-columns:1fr;gap:1.6rem;}
@media(min-width:640px){.benefits{grid-template-columns:1fr 1fr;}}
.benefits__item{display:flex;gap:0.9rem;align-items:flex-start;}
.benefits__check{
  flex-shrink:0;width:34px;height:34px;border-radius:50%;
  background:var(--candy-gradient);color:#fff;font-size:0.85rem;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm);
}
.benefits__item h4{font-size:1rem;margin-bottom:0.3rem;}
.benefits__item p{font-size:0.9rem;margin:0;}


.principles{display:grid;grid-template-columns:1fr;gap:1.8rem;margin-top:1rem;}
@media(min-width:768px){.principles{grid-template-columns:1fr 1fr;}}
.principles__item{
  background:var(--color-surface);border-radius:var(--radius-lg);padding:1.9rem;
  box-shadow:var(--shadow-sm);transition:box-shadow .35s ease, transform .35s ease;
}
.principles__item:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}
.principles__num{
  display:inline-block;font-size:0.85rem;font-weight:800;color:#fff;
  background:var(--candy-gradient);padding:0.3rem 0.8rem;border-radius:999px;margin-bottom:0.9rem;
}
.principles__item h3{font-size:1.12rem;margin-bottom:0.5rem;}
.principles__item p{font-size:0.94rem;margin:0;}


.fit-card{
  background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;
  box-shadow:var(--shadow-sm);
}
.fit-card--alt{background:#FFF6F8;}
.fit-card h3{font-size:1.1rem;display:flex;align-items:center;gap:0.5rem;margin-bottom:1rem;}
.fit-card ul{display:flex;flex-direction:column;gap:0.8rem;}
.fit-card li{font-size:0.94rem;color:var(--color-text-soft);padding-left:1.2rem;position:relative;}
.fit-card li::before{content:'';position:absolute;left:0;top:0.55em;width:6px;height:6px;border-radius:50%;background:var(--purple);}
.text-emerald{color:#1FBE8C;}
.text-rose{color:#F15F7F;}


.spotlight-banner{
  background:var(--candy-gradient);padding:clamp(3rem,6vw,4.5rem) 0;
  position:relative;overflow:hidden;
}
.spotlight-banner__inner{text-align:center;position:relative;z-index:1;}
.spotlight-banner h2{color:#fff;font-size:clamp(1.6rem,3.4vw,2.3rem);max-width:24ch;margin:0 auto 0.7rem;}
.spotlight-banner p{color:rgba(255,255,255,0.9);max-width:50ch;margin:0 auto 1.6rem;}


.canvas-footer{background:#211B2E;color:#E4DDF0;margin-top:auto;position:relative;}
.canvas-footer::before{content:'';display:block;height:5px;background:var(--candy-gradient);}
.canvas-footer__top{
  display:grid;grid-template-columns:1fr;gap:2.4rem;padding:clamp(3rem,6vw,4.5rem) 1.5rem 2.5rem;
}
@media(min-width:768px){.canvas-footer__top{grid-template-columns:1.4fr 1fr 1fr 1fr;padding:clamp(3rem,6vw,4.5rem) 2.5rem 2.5rem;}}
.canvas-footer__logo{width:36px;height:36px;margin-bottom:0.9rem;}
.canvas-footer__brand p{color:#B8AECB;font-size:0.92rem;max-width:34ch;}
.canvas-footer__col h4{color:#fff;font-size:0.95rem;margin-bottom:1rem;letter-spacing:0.03em;}
.canvas-footer__col a,.canvas-footer__col p{
  display:block;color:#B8AECB;font-size:0.9rem;margin-bottom:0.7rem;transition:color .3s ease;
}
.canvas-footer__col a:hover{color:#fff;}
.canvas-footer__col i{margin-right:0.4rem;color:var(--pink);}
.canvas-footer__bottom{border-top:1px solid rgba(255,255,255,0.08);padding:1.4rem 1.5rem;}
.canvas-footer__bottom p{color:#8A7FA0;font-size:0.82rem;margin:0;}


.contact-card{
  background:var(--color-surface);border-radius:var(--radius-lg);padding:clamp(1.8rem,4vw,2.6rem);
  box-shadow:var(--shadow-lg);
}
.contact-card h2{font-size:1.4rem;margin-bottom:1.4rem;}
.form-field{margin-bottom:1.3rem;}
.form-field label{display:block;font-weight:600;font-size:0.9rem;margin-bottom:0.5rem;}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea{
  width:100%;padding:0.85rem 1rem;border-radius:var(--radius-sm);
  border:1.5px solid var(--color-border);background:var(--color-bg);
  font-family:inherit;font-size:0.95rem;color:var(--color-text);
  transition:border-color .3s ease, box-shadow .3s ease;
}
.form-field input:focus,.form-field textarea:focus{
  outline:none;border-color:var(--purple);box-shadow:0 0 0 4px rgba(168,118,255,0.14);
}
.form-field--check{display:flex;align-items:flex-start;gap:0.6rem;}
.form-field--check input{width:20px;height:20px;margin-top:0.2rem;accent-color:var(--purple);flex-shrink:0;}
.form-field--check label{font-weight:400;font-size:0.88rem;color:var(--color-text-soft);}
.form-note{font-size:0.85rem;margin-top:0.9rem;color:var(--purple);min-height:1.2em;}

.contact-side{display:flex;flex-direction:column;gap:1.6rem;}
.contact-info-card{
  background:var(--color-surface);border-radius:var(--radius-lg);padding:1.8rem;box-shadow:var(--shadow-md);
}
.contact-info-card h3{font-size:1.1rem;margin-bottom:1rem;}
.contact-info-card p{font-size:0.92rem;margin-bottom:0.7rem;}
.contact-info-card i{color:var(--purple);margin-right:0.5rem;}
.contact-map{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);}
.contact-side__img{border-radius:var(--radius-lg);box-shadow:var(--shadow-md);object-fit:cover;aspect-ratio:16/10;}

.newsletter{
  background:var(--color-surface);border-radius:var(--radius-xl);padding:clamp(2rem,4vw,3rem);
  box-shadow:var(--shadow-md);display:grid;grid-template-columns:1fr;gap:1.6rem;align-items:center;
}
@media(min-width:900px){.newsletter{grid-template-columns:1.3fr 1fr;}}
.newsletter__text h2{font-size:1.4rem;margin-bottom:0.5rem;}
.newsletter__text p{margin:0;font-size:0.94rem;}
.newsletter__form{display:flex;flex-wrap:wrap;gap:0.8rem;}
.newsletter__form input{
  flex:1 1 200px;padding:0.85rem 1rem;border-radius:var(--radius-sm);border:1.5px solid var(--color-border);
  font-family:inherit;font-size:0.95rem;
}
.newsletter__form input:focus{outline:none;border-color:var(--purple);}


.thanks-hero{background:var(--candy-gradient);padding:clamp(4rem,8vw,6.5rem) 0;text-align:center;}
.thanks-hero__inner{color:#fff;}
.thanks-hero__icon{
  display:inline-flex;width:64px;height:64px;border-radius:50%;background:rgba(255,255,255,0.2);
  align-items:center;justify-content:center;font-size:1.6rem;margin-bottom:1.2rem;
}
.thanks-hero h1{color:#fff;font-size:clamp(2rem,4.5vw,3rem);margin-bottom:0.8rem;}
.thanks-hero p{color:rgba(255,255,255,0.92);max-width:52ch;margin:0 auto;}
.thanks-next{max-width:700px;text-align:center;margin:0 auto;}
.thanks-next h2{font-size:1.6rem;}
.thanks-next__actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.6rem;}


.legal-hero{background:var(--color-bg-alt);padding:clamp(3rem,6vw,4.5rem) 0 2.5rem;}
.legal-hero h1{font-size:clamp(1.9rem,4vw,2.6rem);margin-bottom:0.5rem;}
.legal-hero p{color:var(--color-text-soft);margin:0;}
.legal-doc{max-width:820px;}
.legal-doc__item{padding:1.8rem 0;border-bottom:1px solid var(--color-border);}
.legal-doc__item:last-child{border-bottom:none;}
.legal-doc__item h2{font-size:1.2rem;margin-bottom:0.7rem;}
.legal-doc__item p{font-size:0.96rem;}
.legal-table{width:100%;border-collapse:collapse;margin-top:1rem;font-size:0.88rem;}
.legal-table th,.legal-table td{text-align:left;padding:0.7rem 0.8rem;border-bottom:1px solid var(--color-border);}
.legal-table th{color:var(--purple);font-weight:700;}


.faq{max-width:820px;display:flex;flex-direction:column;gap:1rem;}
.faq__item{
  background:var(--color-surface);border-radius:var(--radius-md);padding:1.3rem 1.6rem;
  box-shadow:var(--shadow-sm);transition:box-shadow .3s ease;
}
.faq__item:hover{box-shadow:var(--shadow-md);}
.faq__item summary{
  cursor:pointer;font-weight:600;font-size:1rem;list-style:none;position:relative;padding-right:2rem;
}
.faq__item summary::-webkit-details-marker{display:none;}
.faq__item summary::after{
  content:'+';position:absolute;right:0;top:-2px;font-size:1.4rem;color:var(--purple);
  transition:transform .3s ease;
}
.faq__item[open] summary::after{transform:rotate(45deg);}
.faq__item p{margin:0.9rem 0 0;font-size:0.95rem;}


.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease, transform .65s ease;}
.reveal.is-visible{opacity:1;transform:translateY(0);}


.cookie-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:200;
  background:var(--color-surface);box-shadow:0 -12px 34px rgba(42,36,56,0.16);
  border-top:1px solid var(--color-border);
  padding:1.2rem 1.5rem;
  transform:translateY(120%);transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-bar.is-visible{transform:translateY(0);}
.cookie-bar__row{
  max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:1rem;
  justify-content:space-between;align-items:flex-start;
}
@media(min-width:900px){.cookie-bar__row{flex-direction:row;align-items:center;}}
.cookie-bar__text{font-size:0.9rem;color:var(--color-text-soft);max-width:60ch;margin:0;}
.cookie-bar__text a{color:var(--purple);text-decoration:underline;}
.cookie-bar__actions{display:flex;gap:0.7rem;flex-wrap:wrap;}
.cookie-bar__actions .btn{padding:0.7rem 1.3rem;font-size:0.86rem;min-height:44px;}
.cookie-bar__panel{
  max-width:1200px;margin:1.2rem auto 0;padding-top:1.2rem;border-top:1px solid var(--color-border);
  display:none;
}
.cookie-bar__panel.is-open{display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:768px){.cookie-bar__panel.is-open{grid-template-columns:repeat(4,1fr);}}
.cookie-bar__cat{background:var(--color-bg);border-radius:var(--radius-sm);padding:1rem;}
.cookie-bar__cat h5{font-size:0.88rem;margin:0 0 0.4rem;}
.cookie-bar__cat p{font-size:0.78rem;margin:0 0 0.6rem;color:var(--color-text-soft);}
.cookie-bar__toggle{display:flex;align-items:center;gap:0.5rem;font-size:0.78rem;font-weight:600;}
.cookie-bar__toggle input{width:18px;height:18px;accent-color:var(--purple);}
.cookie-bar__save{margin-top:1rem;text-align:right;}

@media(max-width:640px){
  .canvas-container{padding:0 1.1rem;}
}