:root{
  --bg:#000;
  --panel:#121212;
  --panel-2:#181818;
  --text:#f7f7f7;
  --muted:#9bdfe8;
  --soft:#d8f7fb;
  --line:#2c2c2c;
  --white:#fff;
  --green:#05b83f;
  --red:#e81725;
  --gold:#ffc400;
  --shadow:0 24px 80px rgba(0,0,0,.5);
  --radius:24px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.container{width:min(1220px,calc(100% - 44px));margin:0 auto}
.section{padding:86px 0}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:linear-gradient(180deg,rgba(0,0,0,.72),rgba(0,0,0,.18));
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  min-height:76px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--white);
  color:#000;
  display:grid;
  place-items:center;
  font-weight:900;
}
.brand strong{
  display:block;
  letter-spacing:.4px;
  font-size:18px;
}
.brand small{
  color:var(--muted);
  font-size:12px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:800;
}
.main-nav a:not(.btn){
  color:var(--soft);
  text-decoration:none;
}
.main-nav a:not(.btn):hover{color:var(--white)}
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:13px;
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:20px;
  height:2px;
  margin:6px auto;
  background:white;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 30px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  color:var(--white);
  background:transparent;
  text-decoration:none;
  font-weight:900;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-2px);
  border-color:var(--white);
}
.btn.primary{
  background:var(--white);
  color:#000;
  border-color:var(--white);
}
.btn.secondary{
  background:transparent;
  color:var(--white);
}
.btn.nav-btn{
  min-height:42px;
  padding:0 18px;
  background:rgba(255,255,255,.08);
}
.btn.card-btn{
  min-height:44px;
  width:100%;
  margin-top:18px;
}
.btn.full{width:100%}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:120px 0 80px;
}
.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.46;
  filter:brightness(.78) grayscale(.04);
}

.hero-fallback{
  position:absolute;
  inset:0;
  background:#000;
  opacity:.06;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.52);
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:860px;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
  color:var(--soft);
  font-size:14px;
  margin-bottom:34px;
}
h1{
  font-size:clamp(48px,6vw,78px);
  line-height:.98;
  letter-spacing:1px;
  margin-bottom:24px;
}
h1 span{
  display:inline-block;
  color:#cdd1d8;
}
.hero-subtitle{
  max-width:820px;
  margin:0 auto 36px;
  font-size:clamp(18px,2vw,24px);
  line-height:1.65;
  color:#e0fbff;
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.section-head{
  text-align:center;
  margin:0 auto 52px;
  max-width:860px;
}
.section-head h2{
  font-size:clamp(40px,5vw,58px);
  line-height:1;
  letter-spacing:1.5px;
  margin-bottom:26px;
}
.section-head h2::after{
  content:"";
  display:block;
  width:94px;
  height:6px;
  margin:20px auto 0;
  background:linear-gradient(90deg,transparent,#fff,transparent);
  filter:blur(.2px);
  opacity:.5;
}
.section-head p{
  color:var(--muted);
  font-size:20px;
}

.glass-card{
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.service-card{
  padding:34px;
  min-height:270px;
}
.service-card.wide{
  grid-column:span 2;
}
.icon{
  width:64px;
  height:64px;
  border-radius:16px;
  background:#e5fbff;
  color:#050505;
  display:grid;
  place-items:center;
  margin-bottom:30px;
}
.icon svg{
  width:32px;
  height:32px;
}
.service-card h3{
  font-size:25px;
  margin-bottom:14px;
}
.service-card p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.pricing{
  background:linear-gradient(180deg,#000,#040404);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.price-card{
  padding:30px;
  text-align:center;
}
.price-card h3{
  font-size:26px;
  margin-bottom:20px;
}
.price{
  font-size:56px;
  font-weight:900;
  line-height:1;
}
.from{
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-size:12px;
  color:var(--muted);
  margin:10px 0 16px;
}
.examples{
  color:var(--soft);
  font-size:15px;
  min-height:42px;
}
.pricing-note{
  max-width:820px;
  margin:28px auto 0;
  color:var(--muted);
  text-align:center;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.testimonial-card{
  padding:34px;
}
.stars{
  color:var(--gold);
  font-size:22px;
  letter-spacing:4px;
  margin-bottom:22px;
}
.testimonial-card p{
  font-size:17px;
  font-style:italic;
  line-height:1.7;
  color:#f2f2f2;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.11);
  margin-bottom:22px;
}
.client strong{
  display:block;
  font-size:17px;
}
.client span{
  color:var(--muted);
  font-size:14px;
}

.ba-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.ba-card{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.13);
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
}
.ba-img{
  position:relative;
  height:190px;
  background-size:cover;
  background-position:center;
}
.ba-img::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:rgba(255,255,255,.55);
}
.split-one{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.15) 0 50%,rgba(0,0,0,.55) 50% 100%),
    url("https://images.unsplash.com/photo-1619767886558-efdc259cde1a?auto=format&fit=crop&w=900&q=80");
}
.split-two{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.45) 0 50%,rgba(0,0,0,.1) 50% 100%),
    url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=900&q=80");
}
.split-three{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.55) 0 50%,rgba(0,0,0,.1) 50% 100%),
    url("https://images.unsplash.com/photo-1600166898405-da9535204843?auto=format&fit=crop&w=900&q=80");
}
.tag{
  position:absolute;
  top:18px;
  z-index:2;
  color:white;
  font-size:13px;
  font-weight:900;
  border-radius:999px;
  padding:6px 14px;
}
.tag.before{
  left:18px;
  background:var(--red);
}
.tag.after{
  right:18px;
  background:var(--green);
}
.ba-card h3{
  padding:22px 26px;
  text-align:center;
  font-size:20px;
}

.real-before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:none;
}

.real-before-after img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.real-before-after::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:rgba(255,255,255,.55);
  z-index:2;
}

.why{
  background:#030303;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  text-align:center;
}
.why-grid article{
  padding:20px;
}
.round-icon{
  width:82px;
  height:82px;
  margin:0 auto 26px;
  border-radius:50%;
  background:#e5fbff;
  color:#050505;
  display:grid;
  place-items:center;
  box-shadow:0 0 70px rgba(255,255,255,.10);
}
.round-icon svg{
  width:34px;
  height:34px;
}
.why-grid h3{
  font-size:21px;
  margin-bottom:14px;
}
.why-grid p{
  color:var(--muted);
  line-height:1.6;
}

.booking-card{
  max-width:920px;
  margin:0 auto;
  padding:48px;
  display:grid;
  grid-template-columns:1fr .55fr;
  gap:36px;
}
.form-grid{
  display:grid;
  gap:24px;
}
.form-grid.two{
  grid-template-columns:repeat(2,1fr);
}
label{
  display:block;
  font-weight:800;
  font-size:15px;
  color:var(--white);
}
input,select,textarea{
  width:100%;
  margin-top:10px;
  min-height:52px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:#050505;
  color:var(--white);
  padding:0 16px;
  font:inherit;
  outline:none;
}
textarea{
  min-height:124px;
  resize:vertical;
  padding:16px;
}
form{
  display:grid;
  gap:24px;
}
.booking-side{
  border-left:1px solid rgba(255,255,255,.12);
  padding-left:30px;
}
.booking-side h3{
  font-size:24px;
  margin-bottom:18px;
}
.booking-side p{
  color:var(--muted);
  margin-bottom:14px;
}
.booking-side .btn{
  margin-top:16px;
}

.map-section{
  padding:86px 0;
  background:linear-gradient(180deg,#000,#030303);
}

.map-card{
  overflow:hidden;
  padding:0;
  max-width:1050px;
  margin:0 auto;
}

.map-card iframe{
  display:block;
  width:100%;
  height:420px;
}

@media(max-width:760px){
  .map-section{
    padding:68px 0;
  }

  .map-card iframe{
    height:320px;
  }
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:36px 0;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:26px;
  align-items:start;
}
.footer-grid strong{
  display:block;
  color:white;
  font-size:18px;
  margin-bottom:6px;
}
.footer-grid a{
  text-decoration:none;
  margin-right:20px;
  color:var(--muted);
  font-weight:800;
}
.footer-grid a:hover{color:white}
.footer-grid div:last-child{
  text-align:right;
}

@media(max-width:1050px){
  .service-grid,.pricing-grid,.testimonial-grid,.ba-grid,.why-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .service-card.wide{grid-column:span 1}
  .booking-card{grid-template-columns:1fr}
  .booking-side{
    border-left:none;
    padding-left:0;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:28px;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-grid div:last-child{text-align:left}
}

@media(max-width:760px){
  .container{width:min(100% - 30px,1220px)}
  .menu-btn{display:block}
  .main-nav{
    position:fixed;
    top:72px;
    left:15px;
    right:15px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    border-radius:18px;
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.13);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:8px 0}
  .hero{padding-top:120px}
  h1{font-size:48px}
  .hero-actions{
    display:grid;
  }
  .btn{width:100%}
  .service-grid,.pricing-grid,.testimonial-grid,.ba-grid,.why-grid,.form-grid.two{
    grid-template-columns:1fr;
  }
  .booking-card{
    padding:24px;
  }
  .section{
    padding:68px 0;
  }
}




/* FIX FINAL AVANT/APRÈS — titres visibles sur les 3 cartes */
.ba-card{
  display:flex !important;
  flex-direction:column !important;
  overflow:hidden !important;
  min-height:0 !important;
}

.ba-img.real-before-after{
  height:210px !important;
  min-height:210px !important;
  flex:0 0 210px !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  position:relative !important;
  background:none !important;
}

.ba-img.real-before-after img{
  width:100% !important;
  height:210px !important;
  object-fit:cover !important;
  display:block !important;
}

.ba-title-box{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:76px !important;
  padding:20px 18px !important;
  background:#0d0d0d !important;
  border-top:1px solid rgba(255,255,255,.12) !important;
  flex:0 0 auto !important;
}

.ba-title-box h3{
  display:block !important;
  padding:0 !important;
  margin:0 !important;
  color:#fff !important;
  font-size:20px !important;
  line-height:1.2 !important;
  text-align:center !important;
  font-weight:900 !important;
}


@media(max-width:760px){
  .hero-video{
    opacity:.38;
    filter:brightness(.70) grayscale(.06);
  }
}


.vehicle-illustration{
  display:block;
  width:100%;
  max-width:220px;
  height:92px;
  object-fit:contain;
  object-position:center;
  margin:0 auto 18px;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.price-card{
  padding-top:24px;
}

.price-card h3{
  margin-bottom:16px;
}

@media(max-width:760px){
  .vehicle-illustration{
    max-width:200px;
    height:84px;
    margin-bottom:14px;
  }
}


.pricing-disclaimer{
  max-width:920px;
  margin:30px auto 0;
  padding:22px 26px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  color:var(--muted);
  text-align:center;
  box-shadow:var(--shadow);
}

.pricing-disclaimer strong{
  display:block;
  color:#fff;
  font-size:18px;
  margin-bottom:8px;
}

.pricing-disclaimer p{
  margin:0;
  font-size:15.5px;
  line-height:1.7;
}


/* Forfaits par catégorie — affichés quand on clique sur "Choisir" */
.category-packages{
  display:none;
  margin-top:74px;
  scroll-margin-top:92px;
}

.category-packages:target{
  display:block;
}

.section-head.compact{
  margin-bottom:36px;
}

.formula-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.formula-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.formula-visual{
  min-height:170px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  border-bottom:1px solid rgba(255,255,255,.10);
}

.formula-visual span{
  color:rgba(255,255,255,.52);
  font-size:13px;
  letter-spacing:5px;
  font-weight:900;
}

.formula-visual strong{
  display:block;
  margin-top:8px;
  font-size:34px;
  line-height:1;
  letter-spacing:3px;
}

.formula-card.essential .formula-visual strong{
  color:#dcfbff;
}

.formula-card.comfort .formula-visual strong{
  color:#d6b661;
}

.formula-card.prestige .formula-visual strong{
  color:#22d3ee;
}

.formula-body{
  padding:30px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.formula-price{
  color:#fff;
  font-size:22px;
  font-weight:900;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.formula-desc{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  margin-bottom:16px;
}

.formula-plus{
  display:inline-block;
  width:max-content;
  max-width:100%;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:4px 8px;
  margin-bottom:10px;
  font-weight:800;
}

.formula-card ul{
  display:grid;
  gap:10px;
  margin:0 0 24px 18px;
  color:#d7dce5;
  flex:1;
}

.formula-card li{
  padding-left:4px;
  line-height:1.45;
}

@media(max-width:1050px){
  .formula-grid{
    grid-template-columns:1fr;
  }
}


/* V9 — uniformiser la taille visuelle des véhicules */
.vehicle-illustration{
  width:100% !important;
  max-width:240px !important;
  height:110px !important;
  object-fit:contain !important;
  object-position:center !important;
  margin:0 auto 18px !important;
  display:block !important;
}

.price-card{
  padding-top:22px !important;
}

.back-to-categories{
  display:flex;
  justify-content:center;
  margin:-8px 0 26px;
}

.back-to-categories a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.back-to-categories a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.22);
}

@media(max-width:760px){
  .vehicle-illustration{
    max-width:220px !important;
    height:100px !important;
  }
}


/* V13 — Tarifs canapés / chaises / matelas / tapis */
.household-pricing{
  position:relative;
}

.household-grid{
  display:grid;
  grid-template-columns:1.2fr 0.95fr;
  gap:30px;
}

.household-card{
  padding:32px;
}

.household-head{
  margin-bottom:26px;
}

.eyebrow{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.household-head h3{
  font-size:34px;
  line-height:1.05;
  margin-bottom:10px;
}

.household-head p{
  color:var(--muted);
  max-width:52ch;
}

.household-blocks{
  display:grid;
  gap:18px;
}

.household-blocks.triple{
  grid-template-columns:repeat(3,1fr);
}

.household-blocks.double{
  grid-template-columns:repeat(2,1fr);
}

.household-block{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px 20px;
}

.block-top{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

.block-top h4{
  font-size:22px;
  line-height:1.1;
}

.block-top strong{
  font-size:30px;
  line-height:1;
  color:var(--white);
}

.price-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.price-list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.price-list li:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.price-list span{
  color:var(--soft);
}

.price-list b{
  color:var(--white);
  font-size:20px;
}

.household-note{
  margin-top:18px;
  color:var(--muted);
  font-size:15px;
}

.household-btn{
  display:inline-flex;
  margin-top:18px;
}

@media(max-width:1100px){
  .household-grid{grid-template-columns:1fr;}
  .household-blocks.triple{grid-template-columns:1fr;}
}

@media(max-width:700px){
  .household-card{padding:24px;}
  .household-head h3{font-size:28px;}
  .household-blocks.double{grid-template-columns:1fr;}
  .block-top strong{font-size:26px;}
}


.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.footer-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-socials a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.24);
}


/* V16 — intégration du logo Family Clean 66 */
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo{
  display:block;
  width:min(280px, 34vw);
  height:auto;
}

.hero-logo{
  display:block;
  width:min(560px, 82vw);
  height:auto;
  margin:22px auto 12px;
  filter:drop-shadow(0 12px 36px rgba(0,0,0,.35));
}

.footer-logo{
  display:block;
  width:min(260px, 80vw);
  height:auto;
  margin-bottom:10px;
}

@media (max-width: 900px){
  .brand-logo{
    width:min(220px, 48vw);
  }

  .hero-logo{
    width:min(430px, 84vw);
    margin:18px auto 12px;
  }
}

@media (max-width: 640px){
  .brand-logo{
    width:min(180px, 52vw);
  }

  .footer-logo{
    width:min(220px, 72vw);
  }
}


.scroll-anchor{
  position:relative;
  top:-90px;
  height:0;
  width:0;
  overflow:hidden;
}



/* TikTok preview */
.tiktok-section{
  position:relative;
  overflow:hidden;
}

.tiktok-section::before{
  content:"";
  position:absolute;
  inset:12% auto auto 50%;
  width:520px;
  height:520px;
  background:radial-gradient(circle,rgba(232,23,37,.16),transparent 68%);
  transform:translateX(-50%);
  pointer-events:none;
}

.tiktok-card{
  position:relative;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:32px;
  align-items:center;
  padding:34px;
  overflow:hidden;
}

.tiktok-card::after{
  content:"";
  position:absolute;
  inset:auto -120px -160px auto;
  width:360px;
  height:360px;
  background:radial-gradient(circle,rgba(255,255,255,.08),transparent 70%);
  pointer-events:none;
}

.tiktok-copy{
  position:relative;
  z-index:1;
}

.mini-label{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--soft);
  background:rgba(255,255,255,.05);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tiktok-copy h3{
  margin-top:18px;
  font-size:clamp(30px,4vw,54px);
  line-height:1;
}

.tiktok-copy p{
  margin:18px 0 24px;
  color:var(--muted);
  max-width:460px;
}

.tiktok-embed-wrap{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  width:100%;
  min-height:420px;
  padding:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03)),
    rgba(0,0,0,.26);
  overflow:hidden;
}

.tiktok-embed-wrap .tiktok-embed{
  width:100%;
  margin:0 auto !important;
}

@media (max-width:900px){
  .tiktok-card{
    grid-template-columns:1fr;
    padding:24px;
  }

  .tiktok-embed-wrap{
    min-height:360px;
    padding:12px;
  }
}

@media (max-width:560px){
  .tiktok-embed-wrap{
    min-height:330px;
    border-radius:20px;
  }

  .tiktok-copy .btn{
    width:100%;
  }
}

