/* ============ TOKENS ============ */
:root{
  --brand:#FF4D6D;
  --ink: #616977;
  --border: #E8E8EE;
  --text: #17171C;
  --muted:#5b5876;
  --brand-2:#ec4899;
  --line:#e7e4f2;
  --surface:#ffffff;
  --surface-2:#f7f5ff;
  --radius:16px;
  --shadow-lg:0 40px 80px -32px rgba(20,17,39,.38);
  --header-h:74px;
}

/* ============ BASE ============ */
*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:16px;line-height:1.6;
  color:var(--ink);
  background:var(--surface);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,p,ul,figure{margin:0}
ul{padding:0;list-style:none}
a{color:inherit;text-decoration:none}
img,video,svg{display:block;max-width:100%}
button{font:inherit;color:inherit}
:focus-visible{outline:3px solid rgba(124,58,237,.55);outline-offset:3px;border-radius:10px}

.container{width:min(1200px,100% - 2.5rem);margin-inline:auto}

.skip-link{
  position:absolute;left:1rem;top:-70px;z-index:300;
  background:var(--ink);color:#fff;padding:.7rem 1.15rem;
  border-radius:0 0 12px 12px;font-weight:700;font-size:.9rem;
  transition:top .2s ease;
}
.skip-link:focus{top:0}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;
  padding:.95rem 1.55rem;
  border-radius:999px;
  font-weight:600;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:.97rem;
  letter-spacing:-.01em;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
  white-space:nowrap;
  position:relative;
  overflow:hidden;
}
.btn::after{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  transform:translateX(-100%);
  transition:transform .55s ease;
  pointer-events:none;
}
.btn:hover::after{transform:translateX(100%)}
.btn-primary{
  background-color:var(--brand);
  color:#fff;
  padding:8px 25px;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px 0 rgba(255,77,109,.278);
}
.btn-ghost{
  background:#fff;border-color:var(--line);color:var(--ink);
  box-shadow:0 4px 14px -8px rgba(20,17,39,.25);
}
.btn-ghost:hover{border-color:var(--brand);color:var(--brand);background:var(--surface-2);transform:translateY(-2px)}
.btn-sm{
  padding:.7rem 1.15rem;
  font-size:.875rem;
  background-color:#FFFFFF;
  color:#000000;
}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.88);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
  animation:headerSlideDown .55s cubic-bezier(.4,0,.2,1) both;
}
@keyframes headerSlideDown{
  from{transform:translateY(-100%);opacity:0}
  to{transform:translateY(0);opacity:1}
}
.header-inner{
  display:flex;align-items:center;gap:1.25rem;
  height:var(--header-h);
}

.logo{
  display:flex;
  align-items:center;
  gap:.65rem;
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:-.03em;
  flex:none;
  transition:transform .25s ease;
}
.logo:hover{transform:scale(1.04)}
.logo-mark{
  width:38px;
  /* height:38px; */
  border-radius:12px;
  flex:none;
  display:grid;place-items:center;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.logo:hover .logo-mark{transform:rotate(-8deg) scale(1.08)}
.logo-text{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:18px;font-weight:800;color:#14161B;
}
.logo-text span{color:var(--brand)}

/* --- nav --- */
.main-nav{margin-inline:auto}
.main-nav > ul{display:flex;align-items:center;gap:.25rem}
.nav-link{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.60rem .9rem;
  border-radius:11px;
  font-size:.95rem;font-weight:500;
  font-family:'Plus Jakarta Sans', sans-serif;
  color:var(--ink);
  background:none;border:0;cursor:pointer;
  transition:background .18s ease,color .18s ease;
  position:relative;
}
.nav-link::before{
  content:"";position:absolute;left:50%;right:50%;bottom:.35rem;
  height:2px;background:var(--brand);border-radius:2px;
  transition:left .25s ease,right .25s ease;
}
/* .nav-link:hover::before{left:.9rem;right:.9rem} */
.nav-link:hover{background:var(--surface-2);color:var(--brand)}
.nav-link .caret{
  width:11px;height:11px;
  transition:transform .22s ease;flex:none;
}
.nav-link[aria-expanded="true"]{background:var(--surface-2);color:var(--brand)}
.nav-link[aria-expanded="true"] .caret{transform:rotate(180deg)}

.header-actions{display:flex;align-items:center;gap:.6rem;flex:none}

/* --- hamburger --- */
.menu-toggle{
  display:none;width:44px;height:44px;border-radius:12px;
  border:1.5px solid var(--line);background:#fff;cursor:pointer;
  place-items:center;
  transition:border-color .2s ease,transform .2s ease;
}
.menu-toggle:hover{border-color:var(--brand);transform:scale(1.05)}
.menu-toggle span{
  display:block;width:19px;height:2px;background:var(--ink);border-radius:2px;
  position:relative;transition:background .2s ease;
}
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";position:absolute;left:0;width:19px;height:2px;background:var(--ink);border-radius:2px;
  transition:transform .25s ease,top .25s ease;
}
.menu-toggle span::before{top:-6px}
.menu-toggle span::after{top:6px}
.site-header.nav-open .menu-toggle span{background:transparent}
.site-header.nav-open .menu-toggle span::before{top:0;transform:rotate(45deg)}
.site-header.nav-open .menu-toggle span::after{top:0;transform:rotate(-45deg)}

/* ============ MEGA DROPDOWN ============ */
.mega{
  position:absolute;left:0;right:0;top:100%;
  background:#fff;
  border-top:1px solid var(--line);
  box-shadow:0 30px 60px -24px rgba(20,17,39,.3);
  padding:2rem 0 2.25rem;
  opacity:0;visibility:hidden;transform:translateY(-10px);
  transition:opacity .24s ease,transform .24s ease,visibility .24s ease;
  /* keep the panel inside the viewport on short screens */
  max-height:calc(100vh - 5rem);
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  z-index:60;
}
.mega.open{opacity:1;visibility:visible;transform:translateY(0)}

/* 3 link columns + 1 feature card. display:contents lets the two
   .mega-inner-box wrappers disappear so all 4 items share one grid. */
.mega-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr)) minmax(240px,300px);
  gap:1.5rem 2.25rem;
  align-items:start;
}
.mega-inner-box{display:contents}

.mega-title{
  font-size:.72rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  color:var(--muted);margin-bottom:.9rem;
}
.mega-col ul li
{
  display: block;
  margin-top: 10px;
}
.mega-col ul{display:grid;gap:.1rem}
.mega-col a{
  /* display:block; */
  padding:.42rem .55rem;
  margin-top: 10px;
  margin-left:-.55rem;
  border-radius:9px;font-size:.925rem;font-weight:500;color:var(--ink);
  transition:background .16s ease,color .16s ease,transform .16s ease;
}
.mega-col a:hover{background:var(--surface-2);color:var(--brand);transform:translateX(3px)}
/* .mega-col a:focus-visible{outline:2px solid var(--brand);outline-offset:2px} */

.mega-feature{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.35rem 1.4rem 1.5rem;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  justify-content:space-between;
  min-height:180px;
  background-image:
    linear-gradient(150deg,rgba(255,77,109,.8) 0%,rgba(255,77,109,.8) 100%),
    url('../images/nav-bg.jpg');
  background-size:cover,cover;
  background-position:center,center;
  background-repeat:no-repeat,no-repeat;
  transition:transform .3s ease,box-shadow .3s ease;
  margin-left:0;              /* was the 300px hack — removed */
}
.mega-feature:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px -24px rgba(255,77,109,.7);
}
.mega-feature > div{position:relative;z-index:1}
.mega-badge{
  display:inline-block;
  font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  background:#fff;color:var(--brand);
  padding:.3rem .65rem;border-radius:999px;
}
.mega-feature-title{
  font-size:1.08rem;font-weight:800;letter-spacing:-.02em;line-height:1.3;
  margin-top:.5rem;
}
.mega-feature p{font-size:.875rem;color:#FFFFFF;margin-top:.25rem}
.mega-feature .btn{margin-top:.35rem}

/* optional: rotate the caret while the panel is open */
.nav-link[aria-expanded="true"] .caret{transform:rotate(180deg)}
.caret{transition:transform .24s ease}

/* ============ TABLET: 768px – 1099px ============ */
@media (max-width:1099px){
  /* .mega{padding:1.75rem 0 2rem}
  .mega-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));  
    gap:1.5rem;
  }
  .mega-feature{
    grid-column:1 / -1;        
    min-height:auto;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:1.25rem;
  }
  .mega-feature .btn{margin-top:0;white-space:nowrap} */
}

/* ============ MOBILE: ≤ 767px ============ */
@media (max-width:767px){
  /* panel becomes an inline accordion, not a floating overlay */
  .mega{
    position:static;
    left:auto;right:auto;top:auto;
    transform:none;
    opacity:1;visibility:visible;
    background:#fff;
    border-top:0;
    box-shadow:none;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .32s ease;
  }
  .mega.open{
    max-height:min(80vh,640px);
    overflow-y:auto;
  }

  .mega .container{
    width:100%;
    padding-left:0;
    padding-right:0;
  }

  .mega-grid{
    display:block;
    padding:.75rem 0 1.25rem;
  }
  .mega-inner-box{display:block}

  .mega-col{padding:.15rem 0 .9rem}
  .mega-col + .mega-col{border-top:1px solid var(--line);padding-top:.9rem}
  .mega-title{margin-bottom:.6rem}

  /* two link columns per row so it stays compact */
  .mega-col ul{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.15rem .5rem;
  }
  .mega-col a{
    margin-left:0;
    padding:.55rem .6rem;
    font-size:.95rem;
  }

  .mega-feature{
    grid-column:auto;
    margin:0;
    min-height:auto;
    border-radius:16px;
    padding:1.15rem 1.2rem 1.25rem;
    flex-direction:column;
    align-items:flex-start;
  }
  .mega-feature .btn{margin-top:.35rem;width:100%;text-align:center}
}

/* very narrow phones — one link per row */
@media (max-width:400px){
  .mega-col ul{grid-template-columns:1fr}
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion:reduce){
  .mega,
  .mega-feature,
  .mega-col a,
  .caret{transition:none}
}

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:clamp(2.25rem,3vw,4.5rem) 0 clamp(3rem,6vw,5rem);
  background:radial-gradient(680px 420px at 6% 88%,rgba(236,72,153,.10),transparent 65%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:clamp(2rem,5vw,4rem);
  align-items:center;
}

/* Hero entrance */
.hero-copy > *{
  opacity:0;
  animation:heroFadeUp .7s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-title{animation-delay:.05s}
.hero-desc{animation-delay:.25s}
.hero-cta{animation-delay:.4s}
.hero-notes{animation-delay:.55s}
.hero-media{
  opacity:0;
  animation:heroZoomIn .9s cubic-bezier(.34,1.15,.64,1) .35s forwards;
}
@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes heroZoomIn{
  from{opacity:0;transform:scale(.92) translateY(20px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

.hero-title{
  font-size:clamp(2rem,5.5vw,3.55rem);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:800;
  font-family:'Plus Jakarta Sans', sans-serif;
}
.hero-title .line{display:block}
.hero-title .gradient{
  background:linear-gradient(100deg,var(--brand) 0%,var(--brand-2) 45%,var(--brand) 90%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font-family:'Imperial Script', cursive;
  font-size:clamp(4rem,12vw,8rem);
  line-height:1;
  animation:heroShimmer 6s ease-in-out infinite;
}
@keyframes heroShimmer{
  0%,100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}

.hero-desc{
  margin-top:1.3rem;
  font-size:clamp(1rem,1.35vw,1.1rem);
  color:var(--muted);
  max-width:52ch;
}
.hero-cta{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:2rem}
.hero-notes{
  display:flex;flex-wrap:wrap;gap:.55rem 1.6rem;
  margin-top:1.8rem;
}
.hero-notes li{
  display:flex;align-items:center;gap:.5rem;
  font-size:.9rem;font-weight:600;color:var(--muted);
  transition:color .2s ease,transform .2s ease;
}
.hero-notes li:hover{color:var(--brand);transform:translateX(3px)}
.hero-notes svg{width:16px;height:16px;flex:none;color:#FF4D6D}

.hero-media{
  position:relative;
  display:flex;
  justify-content:flex-end;
}
.hero-media::before{
  content:"";position:absolute;
  height:78%;border-radius:50%;
  background:linear-gradient(135deg,rgba(124,58,237,.35),rgba(236,72,153,.35));
  filter:blur(58px);z-index:0;
  animation:heroGlow 4s ease-in-out infinite;
}
@keyframes heroGlow{
  0%,100%{opacity:.75;transform:scale(1)}
  50%{opacity:1;transform:scale(1.06)}
}
.video-frame{
  position:relative;z-index:1;
  width:100%;max-width:470px;
  aspect-ratio:4/5;
  border-radius:26px;
  overflow:hidden;
  transition:transform .4s ease,box-shadow .4s ease;
}
.video-frame:hover{
  transform:scale(1.02) rotate(-.5deg);
  box-shadow:0 40px 80px -30px rgba(255,77,109,.4);
}
.video-frame video{width:100%;height:100%;object-fit:cover}

/* ============ SECTIONS — reveal on scroll ============ */
[data-reveal]{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .7s cubic-bezier(.4,0,.2,1),transform .7s cubic-bezier(.4,0,.2,1);
}
[data-reveal].is-revealed{
  opacity:1;
  transform:translateY(0);
}
[data-reveal-child]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .55s ease,transform .55s cubic-bezier(.34,1.2,.64,1);
}
.is-revealed [data-reveal-child]{
  opacity:1;
  transform:translateY(0);
}
/* stagger children */
.is-revealed [data-reveal-child]:nth-child(1){transition-delay:.05s}
.is-revealed [data-reveal-child]:nth-child(2){transition-delay:.12s}
.is-revealed [data-reveal-child]:nth-child(3){transition-delay:.19s}
.is-revealed [data-reveal-child]:nth-child(4){transition-delay:.26s}
.is-revealed [data-reveal-child]:nth-child(5){transition-delay:.33s}
.is-revealed [data-reveal-child]:nth-child(6){transition-delay:.4s}
.is-revealed [data-reveal-child]:nth-child(7){transition-delay:.47s}
.is-revealed [data-reveal-child]:nth-child(8){transition-delay:.54s}
.is-revealed [data-reveal-child]:nth-child(9){transition-delay:.61s}
.is-revealed [data-reveal-child]:nth-child(10){transition-delay:.68s}

/* ============ SHOWCASE ============ */
.showcase{
  padding:clamp(3rem,6vw,5rem) 0 clamp(3.5rem,7vw,6rem);
  background-color:#FBFCFD;
}
.section-head{
  max-width:65%;
  margin:0 auto clamp(2rem,4vw,3rem);
  text-align:center;
}
.section-head h1{
  font-size: 1.5rem;
  line-height:1.14;letter-spacing:-.03em;font-weight:800;
}
.section-head p{
  margin-top:.9rem;
  color:var(--muted);
  font-size: 0.9rem;
}

.showcase-figure{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  transition:transform .5s ease,box-shadow .5s ease;
}
.showcase-figure:hover{
  transform:scale(1.01);
  box-shadow:0 50px 100px -40px rgba(20,17,39,.5);
}
.showcase-figure img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s ease;
}
.showcase-figure:hover img{transform:scale(1.03)}

/* ============ TEMPLATES SECTION ============ */
.templates{padding:clamp(3rem,6vw,5rem) 0}
.section-head-row{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:1.5rem;flex-wrap:wrap;
  margin-bottom:1.75rem;
}
.section-head-row h2{
  font-size:clamp(1.5rem,3.5vw,2.4rem);
  line-height:1.14;letter-spacing:-.03em;font-weight:800;
}
.section-desc{
  margin-top:.75rem;color:var(--muted);font-size:clamp(.95rem,1.4vw,1.05rem);
  max-width:62ch;
}
.see-more{
  display:inline-flex;align-items:center;gap:.45rem;
  font-weight:700;font-size:.95rem;color:var(--brand);
  white-space:nowrap;transition:gap .2s ease;
}
.see-more:hover{gap:.7rem}
.see-more svg{width:16px;height:16px;transition:transform .2s ease}
.see-more:hover svg{transform:translateX(3px)}

/* Tabs */
.tabs{
  display:flex;gap:.5rem;overflow-x:auto;
  padding-bottom:.5rem;margin-bottom:1.5rem;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
}
.tabs::-webkit-scrollbar{display:none}
.tab{
  flex:0 0 auto;
  padding:.6rem 1.15rem;border-radius:999px;
  font-size:.875rem;font-weight:600;
  background:#fff;border:1.5px solid var(--line);color:var(--ink);
  cursor:pointer;white-space:nowrap;
  transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.tab:hover{
  border-color:var(--brand);color:var(--brand);
  transform:translateY(-2px);
  box-shadow:0 8px 16px -8px rgba(255,77,109,.35);
}
.tab[aria-selected="true"]{
  background:var(--brand);border-color:var(--brand);color:#fff;
}

/* Slider */
.slider-wrapper{position:relative}
.slider-viewport{
  overflow-x:auto;overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
  padding-bottom:.5rem;
}
.slider-viewport::-webkit-scrollbar{display:none}
.slider-track{
  display:flex;
  gap:1.25rem;
  align-items:flex-start;
  will-change:transform;
}

/* ============ RECIPIENTS ============ */
.recipients{
  padding:clamp(3rem,6vw,5rem) 0;
  background:
    radial-gradient(620px 340px at 10% 0%,rgba(124,58,237,.07),transparent 70%),
    radial-gradient(620px 340px at 92% 100%,rgba(236,72,153,.07),transparent 70%);
}
.recipients-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1rem;
}
.recipients-grid li{display:flex}

.recipient-card{
  display:flex;align-items:center;gap:.85rem;
  width:100%;height:100%;
  padding:1rem 1.05rem;
  background:#FAFAFC;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 10px 12px -18px rgba(20,17,39,.45);
  transition:transform .28s cubic-bezier(.34,1.4,.64,1),
             box-shadow .28s ease,
             border-color .28s ease,
             background .28s ease;
}
.recipient-card:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:rgba(255,77,109,.35);
  box-shadow:0 22px 38px -20px rgba(255,77,109,.35);
  background:linear-gradient(135deg,#ffffff 0%,#fff4f7 100%);
}
.recipient-logo{
  width:60px;height:60px;flex:none;
  display:grid;place-items:center;
  font-size:1.35rem;line-height:1;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.recipient-card:hover .recipient-logo{transform:scale(1.12) rotate(-4deg)}

.recipient-text{
  display:flex;flex-direction:column;
  min-width:0;line-height:1.3;
}
.recipient-text .line1{
  font-size:0.9rem;font-weight:600;letter-spacing:.04em;
  font-family:'Inter', sans-serif;color:var(--text);
}
.recipient-text .line2{
  font-size:0.9rem;font-weight:600;letter-spacing:-.02em;
  color:var(--text);white-space:nowrap;overflow:hidden;
  text-overflow:ellipsis;font-family:'Inter', sans-serif;
}

/* ============ IDEAS ============ */
.ideas{padding:clamp(3rem,6vw,5rem) 0}
.ideas-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
.ideas-grid li{display:flex}

.idea-card{
  display:flex;align-items:center;gap:1rem;
  width:100%;height:100%;
  padding:.85rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 24px -18px rgba(20,17,39,.45);
  transition:transform .28s cubic-bezier(.34,1.4,.64,1),
             box-shadow .28s ease,
             border-color .28s ease,
             background .28s ease;
}
.idea-card:hover{
  transform:translateY(-6px);
  border-color:rgba(124,58,237,.42);
  box-shadow:0 24px 42px -22px rgba(124,58,237,.55);
  background:linear-gradient(135deg,#ffffff 0%,#faf7ff 100%);
}
.idea-thumb{
  width:88px;height:88px;flex:none;
  border-radius:14px;overflow:hidden;
  background:var(--surface-2);
  border:1px solid var(--line);
}
.idea-thumb img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s cubic-bezier(.34,1.4,.64,1);
}
.idea-card:hover .idea-thumb img{transform:scale(1.12)}
.idea-text{min-width:0}
.idea-text .line1{
  font-size:1rem;font-weight:800;letter-spacing:-.02em;
  line-height:1.28;color:var(--ink);
}
.idea-text .line2{
  margin-top:.3rem;font-size:.85rem;line-height:1.45;color:var(--muted);
}

/* ============ WHY US ============ */
.why-us{padding:clamp(3rem,6vw,5rem) 0}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.25rem;
}
.why-grid li{display:flex}

.why-card{
  display:flex;flex-direction:column;align-items:flex-start;gap:.85rem;
  width:100%;height:100%;
  padding:1.6rem 1.4rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 24px -18px rgba(20,17,39,.45);
  transition:transform .28s cubic-bezier(.34,1.4,.64,1),
             box-shadow .28s ease,
             border-color .28s ease,
             background .28s ease;
}
.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 42px -22px rgba(255,77,109,.3);
  background:linear-gradient(135deg,#ffffff 0%,rgba(255,77,109,.06) 100%);
}
.icon-box{
  width:60px;height:60px;padding:10px;
  background-color:#FFEDF1;border-radius:10px;
  display:flex;justify-content:center;align-items:center;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1),background .35s ease;
}
.why-card:hover .icon-box{
  transform:rotate(-8deg) scale(1.08);
  background-color:#FFD9E2;
}
.why-icon{height:40px;flex:none;display:grid;place-items:center;font-size:1.5rem}
.why-card h3{font-size:1.05rem;font-weight:800;letter-spacing:-.02em;line-height:1.3}
.why-card p{font-size:.9rem;color:var(--muted);line-height:1.55}

/* ============ FAQ ============ */
.faq{padding:clamp(3rem,6vw,5rem) 0}
.faq-list{
  max-width:820px;margin-inline:auto;display:grid;gap:.75rem;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  transition:border-color .3s ease,box-shadow .3s ease,transform .3s ease;
}
.faq-item:hover{
  border-color:rgba(255,77,109,.3);
  transform:translateX(3px);
}
.faq-item.open{
  border-color:var(--border);
  box-shadow:0 18px 40px -24px rgba(124,58,237,.6);
  transform:translateX(0);
}
.faq-question{
  width:100%;list-style:none;cursor:pointer;
  padding:1.1rem 1.35rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  font-weight:600;font-size:1rem;letter-spacing:-.01em;
  background:none;border:0;text-align:left;
  transition:color .2s ease;
}
.faq-question:hover{color:var(--brand)}
.faq-question .icon{
  width:20px;height:20px;flex:none;border-radius:50%;
  display:grid;place-items:center;
  background:var(--surface-2);
  border:1px solid var(--line);
  color:var(--brand);
  font-size:1.15rem;line-height:1;
  transition:transform .35s cubic-bezier(.4,0,.2,1),
             background .3s ease,color .3s ease,border-color .3s ease;
}
.faq-item.open .faq-question .icon{
  transform:rotate(180deg);
  background:var(--brand);border-color:var(--brand);color:#fff;
}
.faq-answer-wrapper{
  max-height:0;overflow:hidden;opacity:0;
  transition:max-height .45s cubic-bezier(.4,0,.2,1),opacity .35s ease;
}
.faq-item.open .faq-answer-wrapper{opacity:1}
.faq-answer{
  padding:0 1.35rem 1.25rem;
  color:var(--muted);font-size:.95rem;line-height:1.65;
}

/* ============ CTA ============ */
.cta-banner{
  padding:0 clamp(0px,4vw,50px) clamp(60px,8vw,100px);
}
.cta-box{
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
  padding:clamp(2rem,5vw,4rem) clamp(1.5rem,4vw,3.5rem);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow-lg);
  background-image:
    linear-gradient(120deg,rgba(255,77,109,.85),rgba(255,77,109,.85)),
    url('../images/bg.jpg');
  background-size:cover;
  background-position:bottom;
  background-repeat:no-repeat,no-repeat;
  transition:transform .4s ease,box-shadow .4s ease;
}
.cta-box:hover{
  transform:translateY(-4px);
  box-shadow:0 60px 100px -50px rgba(255,77,109,.55);
}
.cta-box::before{
  content:"";position:absolute;
  right:-80px;top:-80px;
  width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.25),transparent 70%);
  filter:blur(20px);
  pointer-events:none;z-index:0;
  animation:ctaGlow 5s ease-in-out infinite;
}
@keyframes ctaGlow{
  0%,100%{transform:scale(1);opacity:.8}
  50%{transform:scale(1.2);opacity:1}
}
.cta-text{position:relative;z-index:1;flex:1 1 380px;max-width:620px}
.cta-text h2{
  font-size:clamp(1.5rem,3vw,2.15rem);
  line-height:1.15;letter-spacing:-.03em;font-weight:800;
  color:#fff;text-shadow:0 2px 14px rgba(0,0,0,.35);
}
.cta-text p{
  margin-top:.85rem;
  color:rgba(255,255,255,.88);font-size:1rem;
  max-width:52ch;text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.cta-action{position:relative;z-index:1;flex:0 0 auto}
.cta-box .btn-primary{
  background:#fff;color:var(--brand);
  box-shadow:0 18px 36px -16px rgba(0,0,0,.5);
}
.cta-box .btn-primary:hover{
  background:#fff;color:var(--brand-2);
  box-shadow:0 24px 44px -18px rgba(0,0,0,.6);
}

/* ============ FOOTER ============ */
.site-footer{
  position:relative;
  color:rgba(255,255,255,.75);
  padding-top:clamp(3rem,6vw,4.5rem);
  overflow:hidden;
  background-image:
    linear-gradient(135deg,rgba(255,255,255,.8) 0%,rgba(255,255,255,.8) 50%,rgba(255,255,255,.8) 100%),
    url('../images/footer-bg-2.jpg');
  background-size:cover,cover;
  background-position:center,center;
  background-repeat:no-repeat,no-repeat;
}
.footer-top{
  display:grid;
  grid-template-columns:1.7fr repeat(3,minmax(0,1fr));
  gap:2.75rem 2rem;
  padding-bottom:clamp(2.5rem,5vw,3.5rem);
  /* background-color: yellow; */
}
.footer-brand .logo{color:#fff;font-size:1.2rem}
.footer-brand .logo-text span{color:var(--text)}
.footer-desc{
  margin-top:1.1rem;font-size:.9rem;line-height:1.7;
  max-width:36ch;color:var(--text);
}
.footer-social{
  display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.5rem;
}
.footer-social a{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:var(--text);
  transition:transform .28s cubic-bezier(.34,1.4,.64,1),background .28s ease,border-color .28s ease;
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}
.footer-social a:hover{
  transform:translateY(-4px) scale(1.08);
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  border-color:transparent;
}
.footer-social svg{width:18px;height:18px;fill:currentColor}

.footer-news{margin-top:1.75rem;max-width:330px}
.footer-news label{
  display:block;font-size:.75rem;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--text);margin-bottom:.65rem;
}
.footer-news form{display:flex;gap:.5rem}
.footer-news input{
  flex:1;min-width:0;
  padding:.75rem 1rem;border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  color:var(--text);font-size:.875rem;font-family:inherit;
  transition:border-color .2s ease,background .2s ease;
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}
.footer-news input::placeholder{color:var(--text)}
.footer-news input:focus{
  outline:none;
  border-color:var(--brand-2);
  background:rgba(255,255,255,.16);
}
.footer-news button{
  flex:none;cursor:pointer;border:0;
  padding:.75rem 1.15rem;border-radius:999px;
  font-size:.875rem;font-weight:700;color:var(--text);
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  transition:transform .2s ease,box-shadow .2s ease;
}
.footer-news button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px -14px rgba(236,72,153,.95);
}

.footer-col h3{
  font-size:.75rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--text);margin-bottom:1.15rem;
}
.footer-col ul{display:grid;gap:.1rem}
.footer-col a{
  display:inline-block;font-size:.9rem;color:var(--text);
  padding:.32rem 0;
  transition:color .18s ease,transform .18s ease;
}
.footer-col a:hover{color:var(--text);transform:translateX(4px)}

.footer-bottom{
  border-top:1px solid #FFFFFF;
  padding:1.5rem 0;
  display:flex;flex-wrap:wrap;gap:.85rem 1.75rem;
  align-items:center;justify-content:space-between;
  font-size:.85rem;
  position:relative;z-index:1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom p{color:var(--text)}
.footer-legal{display:flex;flex-wrap:wrap;gap:1.35rem}
.footer-legal a{color:var(--text);transition:color .18s ease}
.footer-legal a:hover{color:var(--text)}

.back-to-top{
  display:inline-flex;align-items:center;gap:.45rem;
  font-weight:700;font-size:.85rem;
  color:rgba(255,255,255,.75);
  padding:.55rem .95rem;border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.back-to-top:hover{
  transform:translateY(-3px);
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  border-color:transparent;
}
.back-to-top svg{width:14px;height:14px;transition:transform .2s ease}
.back-to-top:hover svg{transform:translateY(-2px)}

/* ============ HOW IT WORKS ============ */
.how-steps{
  padding:clamp(3rem,6vw,5rem) 0;
  overflow:visible;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(1.5rem,4vw,3.5rem);
  align-items:stretch;
  padding:0 clamp(0px,4vw,50px);
  perspective:1200px;
}
.steps-col{
  display:flex;flex-direction:column;
  gap:1rem;
  width:100%;
  min-height:520px;
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.step-box{
  border-radius:20px;
  border:1px solid #C6C6CD33;
  position:relative;
  display:flex;flex-direction:column;
  justify-content:center;align-items:center;
  padding:1.25rem 1.35rem;
  transition:transform .3s cubic-bezier(.34,1.4,.64,1),box-shadow .3s ease;
  background-color:#FFFFFF;
  box-shadow:0 30px 50px 0 rgba(0,0,0,.04);
}
.step-box--big{
  flex:8;
 transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.step-box--big:hover{
  /* transform:translateY(-6px) scale(1.01); */
  box-shadow:0 22px 44px -22px rgba(20,17,39,.45);
}
.step-box--small{
  flex:2;
  justify-content:flex-end;
  align-items:flex-end;
  border:none;
  box-shadow:none;
  background-color:transparent;
}

.step-box--a .step-box-title,
.step-box--b .step-box-title{color:#14161B}
.step-box--a .step-box-des{
  font-family:'Plus Jakarta Sans', sans-serif;
  color:#616977;font-size:16px;font-weight:400;
}
.step-box--a .step-box-label,
.step-box--b .step-box-label{
  color:#FF4D6D;background-color:#FFEDF1;
  padding:10px 30px;border-radius:50px;margin-top:30px;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:15px;font-weight:800;
}
.step-box-title{
  font-size:18.5px;font-weight:700;letter-spacing:-.02em;
  line-height:1.25;color:#14161B;
  font-family:'Plus Jakarta Sans', sans-serif;
}
.step-icon{
  width:clamp(100px,14vw,150px);
  height:auto;
  margin-right:-50px;
}
.step-icon-two{margin-right:-100px}
.ste-icon-box{
  background-color:#F8F9FA;
  width:100%;height:100%;
  display:flex;justify-content:center;align-items:center;
  border-radius:10px;
  transition:transform .4s ease,background .4s ease;
}
.step-box--big:hover .ste-icon-box{
  transform:scale(1.03);
  background-color:#FFF4F7;
}

/* Rotations */
.steps-col:nth-child(1){transform:rotate(-5deg);transform-origin:center center}
.steps-col:nth-child(2){transform:rotate(0deg)}
.steps-col:nth-child(3){transform:rotate(10deg);transform-origin:center center}
.step-box--big:hover{transform:rotate(0deg) scale(1.01)}

/* ============ TEMPLATE CARD (slider) ============ */
.template-card{
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  flex:0 0 calc((100% - 3 * 1.25rem) / 4);
  align-self:flex-start;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 28px -18px rgba(20,17,39,.35);
  transition:transform .35s cubic-bezier(.34,1.4,.64,1),box-shadow .35s ease;
  scroll-snap-align:start;
}
.template-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 30px 50px -20px rgba(20,17,39,.55);
}
.template-card .card{
  --accent:#f2a93b;
  --name-color:#fff;
  --msg-color:#fff;
  background:#fff;
  overflow:hidden;
  border-radius:20px;
}
.template-card .card__art{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#eee;
}
.template-card .card__bg{
  position:relative;
  width:100%;height:auto;display:block;
  transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.template-card:hover .card__bg{transform:scale(1.06)}
.template-card .card__stack{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:82%;
  display:flex;flex-direction:column;
  align-items:center;gap:6px;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  z-index:2;
  transition:transform .35s ease;
}
.template-card:hover .card__stack{transform:translate(-50%,-52%) scale(1.02)}
.template-card .card__profile,
.template-card .card__sticker{
  width:100px;height:100px;
  object-fit:cover;
  transform-origin:center;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.template-card:hover .card__profile{transform:translateY(-4px) scale(1.05)}
.template-card:hover .card__sticker{transform:translateY(-4px) rotate(-6deg) scale(1.05)}
.template-card .card__sticker{object-fit:contain}
.template-card .card__name{
  margin:2px 0 0;
  font-family:'Caveat', cursive;
  font-size:30px;line-height:1.1;font-weight:700;
  color:var(--name-color, #fff);
  text-shadow:0 2px 10px rgba(0,0,0,.45);
  max-width:100%;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.template-card .card__divider{
  width:26px;height:3px;border-radius:3px;
  background:var(--accent);
}
.template-card .card__message{
  margin:0;
  font-family:'Caveat', cursive;
  font-size:18px;line-height:1.3;
  color:var(--msg-color, #fff);
  text-shadow:0 1px 6px rgba(0,0,0,.4);
  max-width:100%;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.template-card .card__confetti{
  position:absolute;inset:0;
  width:100%;height:100%;
  pointer-events:none;z-index:3;
  -webkit-mask-image:linear-gradient(to bottom,transparent 0%,#000 14%,#000 100%);
          mask-image:linear-gradient(to bottom,transparent 0%,#000 14%,#000 100%);
}

/* ============================================================
   RESPONSIVE — DESKTOP → TABLET → MOBILE
   ============================================================ */

/* --- Large desktop / small laptop --- */
@media (max-width:1080px){
  .mega-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}
  .mega-feature{
    grid-column:1 / -1;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    gap:1rem;
  }
  .mega-feature p{flex:1 1 260px}
  .mega-feature .btn{margin-top:0;margin-left:auto}

  .template-card{flex-basis:calc((100% - 2 * 1.25rem) / 3)}

  .footer-top{grid-template-columns:repeat(4,minmax(0,1fr))}
  .footer-brand{grid-column:1 / -1}
  .footer-news{max-width:420px}

  .steps-grid{gap:2rem;padding:0 1.5rem}
  .step-icon{margin-right:-30px;width:110px}
  .step-icon-two{margin-right:-60px}
}

/* --- Tablet --- */
@media (max-width:980px){
  .menu-toggle{display:grid}
  .header-actions .btn{padding:.72rem 1.05rem;font-size:.875rem}

  .main-nav{
    position:absolute;left:0;right:0;top:100%;
    display:none;
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 30px 50px -26px rgba(20,17,39,.35);
    padding:.9rem 0 1.4rem;
    max-height:calc(100dvh - var(--header-h));
    overflow-y:auto;
  }
  .site-header.nav-open .main-nav{display:block}
  .main-nav > ul{
    flex-direction:column;align-items:stretch;gap:.15rem;
    width:min(1200px,100% - 2.5rem);margin-inline:auto;
  }
  .nav-link{
    width:100%;justify-content:space-between;
    padding:.85rem .9rem;font-size:1rem;
  }
  .nav-link::before{display:none}

  .mega{
    position:static;
    opacity:1;visibility:visible;transform:none;
    display:none;
    padding:.75rem .9rem 1.1rem;
    margin-top:.35rem;
    background:var(--surface-2);
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:none;
  }
  .mega.open{display:block}
  .mega-grid{grid-template-columns:1fr;gap:1.4rem}
  .mega-feature{flex-direction:column;align-items:flex-start}
  .mega-feature .btn{margin-left:0}

  .hero-grid{grid-template-columns:1fr;gap:2.75rem}
  .hero-media{justify-content:center}
  .video-frame{max-width:440px}
  .hero-notes{gap:.5rem 1.2rem}

  .steps-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:0 1rem;
  }
  .steps-col{
    min-height:auto;
    transform:none !important;
  }
  .steps-col:nth-child(1),
  .steps-col:nth-child(2),
  .steps-col:nth-child(3){transform:none}
  .step-box--big{min-height:320px}
  .step-box--small{min-height:110px}
  .step-icon{display:none}

  .why-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .recipients-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .ideas-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

/* --- Small tablet / large phone --- */
@media (max-width:780px){
  .template-card{flex-basis:calc((100% - 1 * 1.25rem) / 2)}

  .footer-top{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:2.25rem 1.5rem;
  }
  .footer-news{max-width:none}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* --- Phone --- */
@media (max-width:640px){
  .why-grid{grid-template-columns:1fr}
  .ideas-grid{grid-template-columns:1fr}
  .idea-thumb{width:76px;height:76px}
  .recipients-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

/* --- Small phone --- */
@media (max-width:560px){
  .container{width:min(1200px,100% - 1.75rem)}
  .logo-text{font-size:1.02rem}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{width:100%}
  .video-frame{border-radius:22px}
  .section-head-row{flex-direction:column;align-items:flex-start}
  .template-card{flex-basis:85%}
  .cta-box{padding:2rem 1.5rem;flex-direction:column;align-items:flex-start}
  .cta-action,
  .cta-action .btn{width:100%}
  .steps-grid{grid-template-columns:1fr;padding:0}
  .step-box--small{display:none}
}

/* --- Very small --- */
@media (max-width:439px){
  .recipients-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  [data-reveal],
  [data-reveal-child],
  .hero-copy > *,
  .hero-media,
  .site-header{
    opacity:1 !important;
    transform:none !important;
    animation:none !important;
  }
  .template-card .card__confetti{display:none}
}


/* ============ TABLET: 768px – 1099px ============ */
@media (max-width:1099px){
  .mega{padding:1.75rem 0 2rem}
  .mega-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));  /* drop the feature column */
    gap:1.5rem;
  }
  .mega-feature{
    grid-column:1 / -1;        /* feature becomes a full-width banner */
    min-height:auto;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:1.25rem;
  }
  .mega-feature .btn{margin-top:0;white-space:nowrap}
}

/* ============ MOBILE: ≤ 767px ============ */
@media (max-width:767px){
  /* panel becomes an inline accordion, not a floating overlay */
  .mega{
    position:static;
    left:auto;right:auto;top:auto;
    transform:none;
    opacity:1;visibility:visible;
    background:#fff;
    border-top:0;
    box-shadow:none;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .32s ease;
  }
  .mega.open{
    max-height:min(80vh,640px);
    overflow-y:auto;
  }

  .mega .container{
    width:100%;
    padding-left:0;
    padding-right:0;
  }

  .mega-grid{
    display:block;
    padding:.75rem 0 1.25rem;
  }
  .mega-inner-box{display:block}

  .mega-col{padding:.15rem 0 .9rem}
  .mega-col + .mega-col{border-top:1px solid var(--line);padding-top:.9rem}
  .mega-title{margin-bottom:.6rem}

  /* two link columns per row so it stays compact */
  .mega-col ul{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.15rem .5rem;
  }
  .mega-col a{
    margin-left:0;
    padding:.55rem .6rem;
    font-size:.95rem;
  }

  .mega-feature{
    grid-column:auto;
    margin:0;
    min-height:auto;
    border-radius:16px;
    padding:1.15rem 1.2rem 1.25rem;
    flex-direction:column;
    align-items:flex-start;
  }
  .mega-feature .btn{margin-top:.35rem;width:100%;text-align:center}
}

/* very narrow phones — one link per row */
@media (max-width:400px){
  .mega-col ul{grid-template-columns:1fr}
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion:reduce){
  .mega,
  .mega-feature,
  .mega-col a,
  .caret{transition:none}
}


/* ============================================================
   Infinite loop animations on slider card elements
   ------------------------------------------------------------
   Profile, sticker, name and message each get their own slow
   keyframe loop. Different durations + delays keep them from
   animating in lockstep, so a card of 4 items never looks
   mechanical.
   ============================================================ */

@keyframes tplProfileFloat {
  0%, 100% { transform: translateY(0)    scale(1);    }
  50%      { transform: translateY(-6px) scale(1.035); }
}

@keyframes tplStickerWiggle {
  0%, 100% { transform: translateY(0)    rotate(-5deg); }
  50%      { transform: translateY(-5px) rotate( 5deg); }
}

@keyframes tplNameBob {
  0%, 100% { transform: translateY(0);   }
  50%      { transform: translateY(-4px); }
}

@keyframes tplMessageSoft {
  0%, 100% { transform: translateY(0);    opacity: 1;   }
  50%      { transform: translateY(-2px); opacity: .92; }
}

/* ---- Profile: slow float + scale ---- */
.template-card .card__profile {
  animation: tplProfileFloat 3.4s ease-in-out infinite;
}

/* ---- Sticker: alternate wiggle, offset from the profile ---- */
.template-card .card__sticker {
  animation: tplStickerWiggle 3.8s ease-in-out .4s infinite;
}

/* ---- Name: gentle vertical bob ---- */
.template-card .card__name {
  animation: tplNameBob 3.1s ease-in-out .8s infinite;
}

/* ---- Message: soft rise + fade pulse ---- */
.template-card .card__message {
  animation: tplMessageSoft 3.6s ease-in-out 1.2s infinite;
}

/* ------------------------------------------------------------
   Pause the loops while the user is interacting with a card.
   Hovering the card freezes all four loops so the user can read
   it and interact without visual noise; the hover lift, bg zoom,
   and shadow still fire from the base rules.
   ------------------------------------------------------------ */
.template-card:hover .card__profile,
.template-card:hover .card__sticker,
.template-card:hover .card__name,
.template-card:hover .card__message {
  animation-play-state: paused;
}

/* ------------------------------------------------------------
   Reduced-motion: kill the loops entirely.
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .template-card .card__profile,
  .template-card .card__sticker,
  .template-card .card__name,
  .template-card .card__message {
    animation: none !important;
    transform: none !important;
  }
}

/* The FAQ answer can now contain a <p> + a <ul>. Restore list
   rendering that the global reset (ul{padding:0;list-style:none})
   wiped out. */
.faq-answer ul {
  list-style: disc outside !important;
  margin: 12px 0 0;
  padding-left: 22px;
  display: block;
}

.faq-answer ul li {
  display: list-item !important;   /* force bullet rendering */
  margin: 0 0 6px;
  line-height: 1.55;
  color: inherit;
  font-size: inherit;
}

.faq-answer ul li::marker {
  color: #FF4D6D;                   /* brand-pink bullets */
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

/* The intro sentence inside the div */
.faq-answer p {
  margin: 0;
  line-height: 1.65;
  color: inherit;
  font-size: inherit;
}
.footer-copy {
  color: #6b7280;         /* optional muted text */
  font-size: 0.875rem;
  margin: 0;
}
.footer-copy .brand {
  color: #ec4899;
  font-weight: 600;
}


.app-link
{
  color: #ec4899;
}