/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #faf9f6;
  color: #1a0a2e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

:root {
  --bg: #faf9f6;
  --bg2: #f3eeff;
  --bg3: #e5d0f8;
  --ink: #1a0a2e;
  --ink2: #4a2870;
  --ink3: #8a6aaa;
  --brand: #9b00ff;
  --brandL: #c266ff;
  --white: #fff;
  --green: #059669;
  --gold: #f59e0b;
  --r: 20px;
}

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2rem);
}

/* ── BREADCRUMB ── */
.bc {
  padding-top: 75px;
}

.bc-in {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0 4px;
  font-size: .73rem;
  color: var(--ink3);
  flex-wrap: wrap;
}

.bc-in a {
  color: var(--ink3);
}

.bc-in a:hover {
  color: var(--brand);
}

.bc-sep {
  opacity: .4;
}

.bc-cur {
  color: var(--ink2);
  font-weight: 600;
}

/* ── PAGE GRID ── */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  padding: 18px 0 80px;
  align-items: start;
}

@media(max-width:880px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
}

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: var(--r);
  overflow: hidden;
}

/* ── HERO CARD ── */
.hcard {
  padding: 22px;
  margin-bottom: 14px;
}

.htop {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* Avatar — büyük */
.hav {
  width: 108px;
  height: 108px;
  border-radius: 22px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #9b00ff, #c266ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 22px rgba(155, 0, 255, .22);
}

.hav-dot {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid #fff;
}

@media(max-width:440px) {
  .hav {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    border-radius: 17px;
  }
}

.hmeta {
  flex: 1;
  min-width: 0;
}

.hname {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 3px;
  word-break: break-word;
}

.htitle {
  font-size: .8rem;
  color: var(--ink3);
  font-weight: 500;
  margin-bottom: 13px;
}

@media(max-width:440px) {
  .hname {
    font-size: 1.15rem;
  }

  .htop {
    gap: 12px;
  }
}

/* Hero Butonları */
.hbtns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hbtn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(155, 0, 255, .32);
  transition: all .2s;
  white-space: nowrap;
}

.hbtn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155, 0, 255, .42);
}

.hbtn-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(155, 0, 255, .07);
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(155, 0, 255, .22);
  transition: all .2s;
  white-space: nowrap;
}

.hbtn-free:hover {
  background: rgba(155, 0, 255, .13);
  border-color: var(--brand);
}

@media(max-width:460px) {
  .hbtns {
    flex-direction: column;
  }

  .hbtn-main,
  .hbtn-free {
    width: 100%;
    justify-content: center;
  }
}

/* Stats */
.hstats {
  display: flex;
  border-top: 1px solid var(--bg3);
  border-bottom: 1px solid var(--bg3);
  margin: 18px 0;
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 6px;
  border-right: 1px solid var(--bg3);
  text-align: center;
}

.hstat:last-child {
  border-right: none;
}

.hstat-v {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}

.hstat-l {
  font-size: .6rem;
  color: var(--ink3);
}

@media(max-width:380px) {
  .hstat-v {
    font-size: .88rem;
  }

  .hstat-l {
    font-size: .56rem;
  }
}

/* Tags */
.htags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.htag {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink2);
  background: var(--bg);
  border: 1.5px solid var(--bg3);
  padding: 4px 11px;
  border-radius: 100px;
}

/* ── VIDEO KARTÜ ── */
.vcard {
  padding: 18px;
  margin-bottom: 14px;
}

.vlabel {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vlabel::before {
  content: '';
  width: 3px;
  height: 13px;
  border-radius: 2px;
  background: var(--brand);
  flex-shrink: 0;
}

.vwrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2e, #3d1a6e);
}

.vwrap iframe,
.vwrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.vplay {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s;
}

.vph:hover .vplay {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.08);
}

.vplay svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}

.vtext {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  opacity: .9;
}

.vsub {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}

/* ── TABS ── */
.tabs {
  display: flex;
  background: var(--white);
  border: 1.5px solid var(--bg3);
  border-radius: 13px;
  padding: 4px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 1;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink3);
  padding: 9px 14px;
  border-radius: 9px;
  border: none;
  background: none;
  transition: all .18s;
  white-space: nowrap;
}

.tab.on {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 10px rgba(155, 0, 255, .28);
}

.tab:not(.on):hover {
  background: var(--bg2);
  color: var(--brand);
}

.tp {
  display: none;
}

.tp.on {
  display: block;
}

/* ── SECTION CARD ── */
.sc {
  padding: 20px;
  margin-bottom: 12px;
}

.sc:last-child {
  margin-bottom: 0;
}

.stitle {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.stitle::before {
  content: '';
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--brand);
  flex-shrink: 0;
}

.bio {
  font-size: .875rem;
  color: var(--ink2);
  line-height: 1.82;
}

.bio p+p {
  margin-top: 10px;
}

/* Timeline */
.tl {
  display: flex;
  flex-direction: column;
}

.tli {
  display: flex;
  gap: 13px;
  position: relative;
  padding-bottom: 16px;
}

.tli:last-child {
  padding-bottom: 0;
}

.tli:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 1.5px;
  background: var(--bg3);
}

.tldot {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg2);
  border: 2px solid var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.tldot svg {
  width: 11px;
  height: 11px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.tlb {
  padding-top: 2px;
}

.tlt {
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.tls {
  font-size: .73rem;
  color: var(--ink3);
}

/* Approach grid */
.agrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media(max-width:460px) {
  .agrid {
    grid-template-columns: 1fr;
  }
}

.ai {
  background: var(--bg);
  border-radius: 11px;
  padding: 11px 13px;
  display: flex;
  gap: 9px;
}

.ab {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 4px;
}

.an {
  font-size: .79rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.ad {
  font-size: .68rem;
  color: var(--ink3);
  line-height: 1.5;
}

/* ── YORUMLAR ── */
.rsumm {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
}

.rscore {
  text-align: center;
  flex-shrink: 0;
}

.rnum {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}

.rstars {
  color: var(--gold);
  font-size: .95rem;
  margin: 4px 0 2px;
}

.rcnt {
  font-size: .68rem;
  color: var(--ink3);
}

.rbars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.br {
  display: flex;
  align-items: center;
  gap: 7px;
}

.bl {
  font-size: .66rem;
  color: var(--ink3);
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.bt {
  flex: 1;
  height: 5px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
}

.bf {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
}

.bn {
  font-size: .63rem;
  color: var(--ink3);
  width: 20px;
  flex-shrink: 0;
}

.rcard {
  padding: 16px;
  margin-bottom: 10px;
}

.rcard:last-child {
  margin-bottom: 0;
}

.rchead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.rav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rname {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink3);
  font-style: italic;
  letter-spacing: .04em;
}

.rrating {
  margin-left: auto;
  color: var(--gold);
  font-size: .73rem;
  flex-shrink: 0;
}

.rtext {
  font-size: .82rem;
  color: var(--ink2);
  line-height: 1.72;
}

/* ── SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media(min-width:881px) {
  .sidebar {
    position: sticky;
    top: 110px;
  }
}

/* Booking card */
.bcard {
  padding: 20px;
}

.bcard.glow {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(155, 0, 255, .1), 0 8px 28px rgba(155, 0, 255, .14);
  animation: pg .5s ease;
}

@keyframes pg {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.01);
  }

  100% {
    transform: scale(1);
  }
}

/* Free banner — hediye ikonu yok */
.fbanner {
  border-radius: 11px;
  padding: 13px 15px;
  background: linear-gradient(135deg, var(--brand), var(--brandL));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.fbt {
  color: #fff;
}

.fbt-t {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 800;
}

.fbt-s {
  font-size: .66rem;
  opacity: .75;
  margin-top: 2px;
}

.fbadge {
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--brand);
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Day picker */
.phdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.plbl {
  font-size: .67rem;
  font-weight: 800;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pnav {
  display: flex;
  gap: 4px;
}

.pnbtn {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--bg);
  border: 1.5px solid var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--ink2);
  transition: all .18s;
}

.pnbtn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Day grid — fixed 4 cols on desktop, horizontal scroll on mobile */
.dgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 7px;
}

@media(max-width:480px) {
  .dgrid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .dcol {
    min-width: 82px;
    flex-shrink: 0;
  }
}

.dcol {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dhead {
  text-align: center;
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--bg3);
  margin-bottom: 2px;
}

.dhn {
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.dhn.td {
  color: var(--brand);
}

.dhd {
  font-size: .58rem;
  color: var(--ink3);
  margin-top: 2px;
  display: block;
}

.slot {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink2);
  background: var(--bg2);
  border: 1.5px solid transparent;
  border-radius: 7px;
  padding: 7px 2px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
}

.slot:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(155, 0, 255, .06);
}

.slot.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.slot.busy {
  color: var(--bg3);
  cursor: default;
  text-decoration: line-through;
  background: transparent;
}

.slot.hide {
  display: none;
}

.smmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 5px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
  transition: opacity .18s;
}

.smmore:hover {
  opacity: .7;
}

.smmore svg {
  transition: transform .22s;
}

.smmore.open svg {
  transform: rotate(180deg);
}

/* CTA */
.cbtn {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, #9b00ff 0%, #c266ff 52%, #7700cc 100%);
  border-radius: 13px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(155, 0, 255, .35);
  transition: transform .28s cubic-bezier(.34, 1.2, .64, 1), box-shadow .28s;
  margin-bottom: 0;
}

.cbtn:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
  transform: none !important;
}

.cbtn:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(155, 0, 255, .48);
}

.cbtn:not(:disabled):active {
  transform: translateY(-1px);
}

.cin {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  position: relative;
  z-index: 1;
}

.cico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .28s;
}

.cbtn:not(:disabled):hover .cico {
  transform: rotate(-7deg) scale(1.08);
}

.ctxt {
  flex: 1;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}

.carr {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .22s;
}

.cbtn:not(:disabled):hover .carr {
  transform: translateX(3px);
}

.cshine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
  transition: left .5s;
  pointer-events: none;
}

.cbtn:not(:disabled):hover .cshine {
  left: 160%;
}

.snote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .63rem;
  color: var(--ink3);
  margin-top: 10px;
}

.snote svg {
  stroke: var(--ink3);
  fill: none;
  flex-shrink: 0;
}

/* ── MOBİL STICKY BAR ── */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1.5px solid var(--bg3);
  padding: 10px clamp(1rem, 4vw, 1.5rem);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 800;
  gap: 8px;
}

@media(max-width:880px) {
  .mob-bar {
    display: flex;
  }
  /* WhatsApp butonunu sticky bar'ın üzerine taşı */
  .wa-fab {
    bottom: 90px !important;
  }
}

@media(max-width:880px) {
  main {
    padding-bottom: 76px !important;
  }
}

.mb-free {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(155, 0, 255, .08);
  padding: 11px 10px;
  border-radius: 11px;
  border: 1.5px solid rgba(155, 0, 255, .22);
  transition: all .18s;
}

.mb-free:active {
  background: rgba(155, 0, 255, .16);
}

.mb-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 11px 10px;
  border-radius: 11px;
  box-shadow: 0 3px 12px rgba(155, 0, 255, .3);
  transition: all .18s;
}

.mb-main:active {
  transform: scale(.98);
}

/* ── MODAL ── */
.ovl {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 10, 46, .5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}

.ovl.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
  transform: scale(.93) translateY(10px);
  transition: transform .28s cubic-bezier(.34, 1.4, .64, 1);
}

.ovl.open .modal {
  transform: scale(1) translateY(0);
}

.mico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brandL));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mico svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.mtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -.02em;
}

.msub {
  font-size: .8rem;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 16px;
}

.minfo {
  background: var(--bg);
  border-radius: 11px;
  padding: 13px 15px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--ink2);
}

.mrow svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.macts {
  display: flex;
  gap: 7px;
}

.mcancel {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink3);
  background: var(--bg);
  border: 1.5px solid var(--bg3);
  padding: 10px;
  border-radius: 10px;
  transition: all .18s;
}

.mcancel:hover {
  border-color: var(--ink3);
}

.mok {
  flex: 2;
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(155, 0, 255, .28);
  transition: all .18s;
}

.mok:hover {
  transform: translateY(-1px);
}

.succ {
  display: none;
  text-align: center;
  padding: 6px 0;
}

.succ.show {
  display: block;
}

.sicobox {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 150, 105, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.sicobox svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
}

.st {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}

.ss {
  font-size: .8rem;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sbtn {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 11px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(155, 0, 255, .28);
}