*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --bg:#050504;
  --panel:#0c0c0b;
  --panel-2:#12110f;
  --panel-3:#171410;
  --line:rgba(255,255,255,.13);
  --line-soft:rgba(255,255,255,.08);
  --line-gold:rgba(241,189,85,.52);
  --text:#fffaf0;
  --muted:#b8b1a7;
  --muted-2:#82796d;
  --gold:#f1bd55;
  --gold-2:#b77722;
  --gold-3:#ffe08a;
  --green:#32d37b;
  --red:#ef6f6c;
  --shadow:0 26px 82px rgba(0,0,0,.52);
  --scissor-svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1bd55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cpath d='M20 4 8.1 15.9M14.5 14.5 20 20M8.1 8.1 12 12'/%3E%3C/svg%3E");
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  min-height:100vh;
  background:
    linear-gradient(110deg, rgba(255,255,255,.025), transparent 32%, rgba(241,189,85,.08)),
    radial-gradient(circle at 75% 10%, rgba(241,189,85,.12), transparent 320px),
    linear-gradient(180deg, #050504 0%, #080909 52%, #030303 100%);
  color:var(--text);
  font-family:'Inter', Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    linear-gradient(110deg, transparent 0 72%, rgba(241,189,85,.34) 72.3%, rgba(241,189,85,.03) 73.2%, transparent 74%),
    linear-gradient(rgba(255,255,255,.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size:100% 100%, 62px 62px, 62px 62px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.28) 88%, transparent);
}

body::after{
  content:'';
  position:fixed;
  inset:0;
  z-index:-3;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.76)),
    url('../assets/corte7.jpg') center / cover;
  opacity:.2;
  filter:blur(14px);
  transform:scale(1.04);
}

button,
input{
  font:inherit;
}

button,
a{
  -webkit-tap-highlight-color:transparent;
}

button{
  cursor:pointer;
}

svg{
  width:20px;
  height:20px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:2;
}

.app-shell{
  width:min(100%, 1760px);
  margin:0 auto;
  padding:22px 18px 42px;
}

.schedule-header{
  position:sticky;
  top:0;
  z-index:40;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:14px;
  margin:0 -18px 18px;
  padding:14px 18px;
  background:linear-gradient(180deg, rgba(5,5,4,.94), rgba(5,5,4,.66));
  backdrop-filter:blur(18px);
}

.back-button,
.client-area{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  font-weight:900;
}

.back-button{
  padding:0 16px;
}

.client-area{
  display:none;
  padding:0 22px;
  border-color:var(--line-gold);
  color:var(--gold-3);
}

.brand-block{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-mark{
  width:56px;
  height:56px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid var(--line-gold);
  border-radius:8px;
  background:linear-gradient(145deg, rgba(241,189,85,.22), rgba(241,189,85,.04));
  color:var(--gold-3);
  font-family:'Poppins', Arial, sans-serif;
  font-size:32px;
  font-weight:900;
  box-shadow:0 0 0 1px rgba(0,0,0,.28) inset, 0 16px 34px rgba(241,189,85,.18);
}

.brand-block > div{
  min-width:0;
}

.brand-block p,
.eyebrow,
.step-heading p,
.summary-label{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.brand-block h1{
  margin-top:4px;
  overflow:hidden;
  color:var(--text);
  font-size:21px;
  font-weight:900;
  line-height:1.05;
  text-overflow:ellipsis;
  text-transform:uppercase;
  white-space:nowrap;
}

.header-benefits{
  display:none;
  align-items:center;
  justify-content:center;
  gap:26px;
}

.header-benefits span{
  min-width:0;
  display:grid;
  grid-template-columns:44px minmax(0, auto);
  column-gap:12px;
  align-items:center;
  padding-right:26px;
  border-right:1px solid rgba(255,255,255,.1);
}

.header-benefits span:last-child{
  border-right:0;
  padding-right:0;
}

.header-benefits svg{
  grid-row:1 / span 2;
  width:42px;
  height:42px;
  padding:9px;
  border:1px solid rgba(241,189,85,.24);
  border-radius:50%;
  color:var(--gold-3);
  background:rgba(241,189,85,.08);
}

.header-benefits strong{
  color:var(--text);
  font-size:15px;
  line-height:1.2;
}

.header-benefits small{
  margin-top:3px;
  color:var(--muted);
  font-size:13px;
}

.menu-button{
  width:46px;
  height:46px;
  display:grid;
  place-content:center;
  gap:6px;
  color:var(--text);
  text-decoration:none;
}

.menu-button span{
  width:24px;
  height:2px;
  display:block;
  border-radius:999px;
  background:currentColor;
}

.schedule-stage{
  display:grid;
  gap:10px;
}

.hero-panel{
  min-height:560px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:26px;
  overflow:hidden;
  padding:42px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.48) 40%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.8)),
    url('../assets/corte7.jpg') center / cover;
  box-shadow:var(--shadow);
}

.hero-panel::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(241,189,85,.4), transparent 1px) left / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(241,189,85,.28), transparent 36%, transparent 74%, rgba(241,189,85,.28)) right / 1px 100% no-repeat;
  opacity:.75;
}

.hero-content,
.hero-summary{
  position:relative;
  z-index:1;
}

.eyebrow{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  padding:10px 14px;
  border:1px solid rgba(241,189,85,.25);
  border-radius:999px;
  background:rgba(241,189,85,.1);
  color:var(--gold-3);
}

.eyebrow svg{
  width:18px;
  height:18px;
}

.hero-panel h2{
  max-width:520px;
  color:var(--text);
  font-family:'Poppins', Arial, sans-serif;
  font-size:56px;
  font-weight:900;
  line-height:1.05;
  letter-spacing:0;
}

.hero-panel h2 span{
  display:block;
  color:var(--gold);
}

.hero-copy{
  max-width:430px;
  margin-top:22px;
  color:#f0e8dc;
  font-size:18px;
  line-height:1.58;
}

.hero-summary{
  width:min(100%, 490px);
  padding:24px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  background:linear-gradient(135deg, rgba(12,12,11,.76), rgba(12,12,11,.5));
  box-shadow:0 22px 62px rgba(0,0,0,.36);
  backdrop-filter:blur(16px);
}

.hero-summary .summary-label{
  margin-bottom:20px;
}

.hero-summary-main{
  display:flex;
  align-items:center;
  gap:16px;
}

.hero-summary-main img,
.summary-photo{
  width:72px;
  height:72px;
  flex:0 0 auto;
  border-radius:50%;
  object-fit:cover;
}

.hero-summary-main strong{
  display:block;
  color:var(--text);
  font-size:19px;
  line-height:1.25;
}

.hero-summary-main span,
.hero-summary-grid small,
.summary-main span,
.summary-perks small{
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.hero-summary-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}

.hero-summary-grid span,
.summary-perks span{
  display:grid;
  grid-template-columns:42px 1fr;
  column-gap:12px;
  align-items:center;
}

.hero-summary-grid svg,
.summary-perks svg{
  grid-row:1 / span 2;
  width:42px;
  height:42px;
  padding:9px;
  border:1px solid rgba(241,189,85,.22);
  border-radius:50%;
  color:var(--gold-3);
  background:rgba(241,189,85,.08);
}

.hero-summary-grid strong,
.summary-perks strong{
  color:var(--text);
  font-size:14px;
  line-height:1.25;
}

.mini-benefits{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}

.mini-benefits span{
  color:var(--text);
  font-size:12px;
  font-weight:800;
  line-height:1.25;
  text-align:center;
}

.booking-flow{
  display:grid;
  gap:10px;
}

.steps-panel{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    rgba(8,8,7,.82);
  box-shadow:var(--shadow);
}

.step-card{
  padding:22px;
  border-bottom:1px solid rgba(255,255,255,.09);
}

.step-card:last-child{
  border-bottom:0;
}

.step-heading{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:center;
  margin-bottom:18px;
}

.step-heading > span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--line-gold);
  border-radius:50%;
  color:var(--gold-3);
  font-size:18px;
  font-weight:900;
  box-shadow:0 0 24px rgba(241,189,85,.12);
}

.step-heading h2{
  margin-top:4px;
  color:var(--text);
  font-size:19px;
  font-weight:600;
  line-height:1.2;
}

.all-services-link{
  grid-column:1 / -1;
  width:max-content;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  color:var(--text);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.all-services-link svg{
  width:18px;
  height:18px;
  color:var(--gold-3);
}

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

.service-option{
  min-height:82px;
  position:relative;
  display:grid;
  grid-template-columns:40px minmax(0, 1fr);
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)), rgba(13,13,12,.86);
  color:var(--text);
  text-align:left;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.service-option:hover,
.day-item:hover,
.hour-item:hover{
  border-color:rgba(241,189,85,.42);
}

.service-option:active,
.day-item:active,
.hour-item:active,
#scheduleButton:active{
  transform:scale(.985);
}

.service-option.active{
  border-color:var(--line-gold);
  background:
    linear-gradient(135deg, rgba(241,189,85,.18), rgba(241,189,85,.03)),
    rgba(13,13,12,.94);
  box-shadow:0 18px 42px rgba(241,189,85,.13);
}

.service-option.active::after{
  content:'✓';
  position:absolute;
  top:-1px;
  right:-1px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:0 8px 0 12px;
  background:linear-gradient(135deg, #ffe08a, var(--gold-2));
  color:#130d06;
  font-size:14px;
  font-weight:900;
}

.service-check{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(241,189,85,.18);
  border-radius:50%;
  background:rgba(241,189,85,.06);
}

.service-check::before{
  content:'';
  width:19px;
  height:19px;
  background-image:var(--scissor-svg);
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
}

.service-info{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:0;
}

.service-info strong,
.service-price{
  font-weight:900;
}

.service-info strong{
  overflow:hidden;
  color:var(--text);
  font-size:14px;
  line-height:1.25;
  text-overflow:ellipsis;
}

.service-price{
  grid-column:2;
  color:var(--gold-3);
  font-size:13px;
}

.days-wrap{
  display:grid;
  grid-template-columns:38px minmax(0, 1fr) 38px;
  gap:10px;
  align-items:center;
}

.day-nav{
  width:38px;
  height:54px;
  display:grid;
  place-items:center;
  border:0;
  background:transparent;
  color:var(--text);
}

.days-container{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:78px;
  gap:10px;
  overflow-x:auto;
  padding:2px 0 8px;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
}

.days-container::-webkit-scrollbar{
  display:none;
}

.day-item{
  min-height:82px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)), rgba(14,14,13,.9);
  color:var(--text);
  scroll-snap-align:start;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.day-item.active{
  border-color:transparent;
  background:linear-gradient(135deg, #ffe08a, var(--gold-2));
  color:#130d06;
  box-shadow:0 16px 34px rgba(241,189,85,.22);
}

.day-item span,
.day-item small{
  font-size:12px;
  font-weight:900;
  text-transform:capitalize;
}

.day-item strong{
  font-size:28px;
  line-height:1;
}

.hours-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.hour-item{
  min-height:50px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)), rgba(14,14,13,.9);
  color:var(--text);
  font-weight:900;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hour-item.active{
  border-color:var(--line-gold);
  background:linear-gradient(135deg, rgba(241,189,85,.16), rgba(241,189,85,.03)), rgba(14,14,13,.96);
  color:var(--text);
  box-shadow:0 14px 30px rgba(241,189,85,.15), inset 0 0 0 1px rgba(241,189,85,.14);
}

.input-grid{
  display:grid;
  gap:12px;
}

.input-group{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.input-group span{
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.input-group::before{
  content:'';
  position:absolute;
  left:18px;
  bottom:17px;
  width:20px;
  height:20px;
  opacity:.82;
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
}

.input-name::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1bd55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.input-phone::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2332d37b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.5 11.8a8.5 8.5 0 0 1-12.6 7.4L3 20.5l1.3-4.7A8.5 8.5 0 1 1 20.5 11.8Z'/%3E%3Cpath d='M8.8 8.1c.2-.5.4-.5.7-.5h.5c.2 0 .5.1.6.5l.7 1.6c.1.3.1.5-.1.7l-.4.5c-.1.2-.2.3 0 .6.5.9 1.2 1.7 2.2 2.2.3.2.4.1.6 0l.6-.7c.2-.2.4-.2.7-.1l1.6.7c.4.2.5.4.5.7v.4c0 .4-.2.7-.6.9-.6.4-1.6.6-3.2 0-2.8-1-4.8-3.6-5.3-5.6-.3-.9 0-1.5.4-1.9Z'/%3E%3C/svg%3E");
}

.input-group input{
  width:100%;
  height:58px;
  border:1px solid rgba(255,255,255,.13);
  outline:none;
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)), rgba(13,13,12,.92);
  color:var(--text);
  padding:0 16px 0 52px;
  font-size:15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.input-group input:focus{
  border-color:var(--line-gold);
  box-shadow:0 0 0 4px rgba(241,189,85,.08);
}

.privacy-note{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.booking-summary{
  position:sticky;
  bottom:12px;
  z-index:24;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr);
  gap:14px;
  align-items:center;
  padding:18px;
  border:1px solid rgba(241,189,85,.38);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.044), rgba(255,255,255,.012)),
    rgba(8,8,7,.92);
  box-shadow:0 24px 70px rgba(0,0,0,.46), inset 0 0 0 1px rgba(0,0,0,.24);
  backdrop-filter:blur(18px);
}

.summary-main strong{
  display:block;
  color:var(--text);
  font-size:18px;
  line-height:1.25;
}

.summary-main span{
  display:block;
  margin-top:7px;
  font-size:15px;
}

.summary-perks{
  grid-column:1 / -1;
  display:grid;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.09);
}

#scheduleButton{
  grid-column:1 / -1;
  min-height:68px;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,225,152,.5);
  border-radius:8px;
  background:linear-gradient(135deg, #ffe08a 0%, #f2ba52 54%, #b77722 100%);
  color:#130d06;
  padding:0 22px;
  text-align:left;
  box-shadow:0 18px 46px rgba(241,189,85,.26);
}

#scheduleButton strong{
  font-size:17px;
  font-weight:900;
  line-height:1.1;
}

#scheduleButton small{
  display:block;
  margin-top:5px;
  font-size:12px;
  font-weight:800;
}

#scheduleButton svg{
  grid-row:1 / span 2;
  width:24px;
  height:24px;
  transition:transform .2s ease;
}

#scheduleButton:hover svg{
  transform:translateX(4px);
}

#scheduleButton:disabled{
  opacity:.65;
  cursor:wait;
}

.booking-guide{
  position:fixed;
  inset:0;
  z-index:70;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, visibility .22s ease;
}

.booking-guide.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.booking-guide.show.allow-page-action{
  pointer-events:none;
}

.guide-scrim{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(2px);
  pointer-events:auto;
}

.booking-guide.allow-page-action .guide-scrim{
  pointer-events:none;
}

.guide-card{
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:90;
  width:min(calc(100% - 28px), 420px);
  padding:22px;
  border:1px solid rgba(241,189,85,.42);
  border-radius:10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.016)),
    rgba(10,10,9,.96);
  color:var(--text);
  box-shadow:0 28px 90px rgba(0,0,0,.55), 0 0 42px rgba(241,189,85,.1);
  transform:translateX(-50%) translateY(14px);
  transition:transform .22s ease;
  pointer-events:auto;
}

.booking-guide:not(.show) .guide-scrim,
.booking-guide:not(.show) .guide-card{
  pointer-events:none;
}

.booking-guide.show .guide-card{
  transform:translateX(-50%) translateY(0);
}

.guide-kicker{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.guide-card h2{
  margin-top:8px;
  color:var(--text);
  font-family:'Poppins', Arial, sans-serif;
  font-size:24px;
  line-height:1.12;
}

.guide-card p{
  margin-top:10px;
  color:#ded6ca;
  font-size:15px;
  line-height:1.55;
}

.guide-examples{
  display:grid;
  gap:7px;
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}

.guide-examples span{
  display:block;
  padding-left:14px;
  position:relative;
}

.guide-examples span::before{
  content:'';
  position:absolute;
  left:0;
  top:9px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--gold);
}

.guide-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:18px;
}

.guide-actions button{
  min-height:50px;
  border-radius:8px;
  font-size:14px;
  font-weight:900;
}

#guidePrimary{
  border:1px solid rgba(255,225,152,.5);
  background:linear-gradient(135deg, #ffe08a, #b77722);
  color:#130d06;
}

#guidePrimary:disabled{
  opacity:.55;
  cursor:not-allowed;
}

#guideSecondary{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.035);
  color:var(--text);
}

.guide-highlight{
  position:relative;
  z-index:82 !important;
  border-color:rgba(241,189,85,.82) !important;
  box-shadow:0 0 0 1px rgba(241,189,85,.3), 0 0 54px rgba(241,189,85,.22), var(--shadow) !important;
}

.guide-container-raise{
  position:relative;
  z-index:82 !important;
}

.empty-state{
  grid-column:1 / -1;
  padding:18px;
  border:1px dashed rgba(255,255,255,.16);
  border-radius:8px;
  background:rgba(255,255,255,.025);
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

#toast{
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:80;
  width:calc(100% - 28px);
  max-width:440px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#14110d;
  color:var(--text);
  box-shadow:0 18px 45px rgba(0,0,0,.42);
  font-size:14px;
  font-weight:900;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%, 18px);
  transition:opacity .25s ease, transform .25s ease;
}

#toast.show{
  opacity:1;
  transform:translate(-50%, 0);
}

#toast.success{
  border-color:rgba(50,211,123,.58);
}

#toast.warning{
  border-color:rgba(241,189,85,.65);
}

#toast.error{
  border-color:rgba(239,111,108,.62);
}

.success-modal{
  position:fixed;
  inset:0;
  z-index:90;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:16px;
  background:rgba(0,0,0,.68);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.success-modal.show{
  opacity:1;
  pointer-events:auto;
}

.success-card{
  width:min(100%, 460px);
  padding:24px;
  border:1px solid rgba(241,189,85,.3);
  border-radius:8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #12100d;
  box-shadow:0 28px 80px rgba(0,0,0,.55);
}

.success-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:50%;
  background:rgba(50,211,123,.14);
  color:var(--green);
  font-size:26px;
  font-weight:900;
}

.success-card h2{
  margin:8px 0 12px;
  font-family:'Poppins', Arial, sans-serif;
  font-size:28px;
  line-height:1.08;
}

.success-summary{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
}

.success-actions{
  display:grid;
  gap:10px;
}

.success-whatsapp,
.success-secondary{
  min-height:54px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
}

.success-whatsapp{
  background:linear-gradient(135deg, #30d97d, #138645);
  color:#fff;
}

.success-secondary{
  border:1px solid var(--line);
  background:#16130f;
  color:var(--text);
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }
}

@media(max-width:480px){
  .app-shell{
    padding-left:10px;
    padding-right:10px;
  }

  .schedule-header{
    grid-template-columns:auto 1fr auto;
    margin-left:-10px;
    margin-right:-10px;
    padding-left:10px;
    padding-right:10px;
  }

  .back-button{
    min-height:44px;
    padding:0 12px;
    font-size:0;
  }

  .back-button svg{
    width:22px;
    height:22px;
  }

  .brand-mark{
    width:44px;
    height:44px;
    font-size:24px;
  }

  .brand-block h1{
    font-size:15px;
  }

  .brand-block p{
    font-size:10px;
  }

  .hero-panel{
    min-height:560px;
    padding:22px;
  }

  .hero-panel h2{
    font-size:42px;
  }

  .hero-copy{
    font-size:16px;
  }

  .hero-summary{
    padding:18px;
  }

  .mini-benefits{
    grid-template-columns:1fr;
    text-align:left;
  }

  .mini-benefits span{
    text-align:left;
  }

  .step-card{
    padding:18px 14px;
  }

  .step-heading{
    grid-template-columns:40px 1fr;
  }

  .step-heading > span{
    width:40px;
    height:40px;
  }

  .days-wrap{
    grid-template-columns:minmax(0, 1fr);
  }

  .day-nav{
    display:none;
  }

  .hours-grid{
    grid-template-columns:1fr 1fr;
  }

  .booking-summary{
    bottom:8px;
    padding:14px;
  }
}

@media(min-width:700px){
  .services-list{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .input-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-summary-grid{
    grid-template-columns:1fr 1fr;
  }

  .guide-actions{
    grid-template-columns:1fr 1fr;
  }
}

@media(min-width:1000px){
  .app-shell{
    padding:36px 38px 42px;
  }

  .schedule-header{
    position:relative;
    grid-template-columns:auto auto minmax(0, 1fr) auto auto;
    margin:0 0 34px;
    padding:0;
    background:transparent;
    backdrop-filter:none;
  }

  .client-area{
    display:inline-flex;
  }

  .schedule-stage{
    grid-template-columns:minmax(480px, .86fr) minmax(640px, 1.14fr);
    grid-template-areas:
      "hero steps"
      "summary summary";
    align-items:stretch;
  }

  .hero-panel{
    grid-area:hero;
    min-height:730px;
  }

  .booking-flow{
    display:contents;
  }

  .steps-panel{
    grid-area:steps;
  }

  .booking-summary{
    grid-area:summary;
    position:relative;
    bottom:auto;
    grid-template-columns:auto minmax(210px, .9fr) minmax(520px, 1.4fr) minmax(300px, .95fr);
    min-height:122px;
    margin-top:0;
    padding:22px 28px;
  }

  .summary-photo{
    width:78px;
    height:78px;
  }

  .summary-perks{
    grid-column:auto;
    grid-template-columns:minmax(220px, 1fr);
    align-items:center;
    padding:0 28px;
    border-top:0;
    border-left:1px solid rgba(255,255,255,.1);
    border-right:1px solid rgba(255,255,255,.1);
  }

  #scheduleButton{
    grid-column:auto;
    min-width:300px;
  }

  .success-modal{
    align-items:center;
  }

  .guide-card{
    left:auto;
    right:34px;
    bottom:34px;
    transform:translateY(14px);
  }

  .booking-guide.show .guide-card{
    transform:translateY(0);
  }
}

@media(min-width:1180px){
  .header-benefits{
    display:flex;
  }

  .services-list{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .hours-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }

  .step-heading{
    grid-template-columns:44px 1fr auto;
  }

  .all-services-link{
    grid-column:auto;
    justify-self:end;
  }
}
