:root{
  --orange: rgb(67, 101, 131);
  --orange-dark: rgb(108, 140, 168);
  --serif: "Libre Baskerville", serif;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  height:89svh;
  min-height:420px;
  overflow:hidden;
  background:#000;
}


.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.32) 0%,
    rgba(0,0,0,.22) 35%,
    rgba(0,0,0,.10) 80%,
    rgba(255,255,255,.131) 100%
  );
  pointer-events:none;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 57%;
  z-index:0;
  transform:scale(1.02);
}

.hero-content{
  position:relative;
  z-index:4;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-inner{
  width:min(1040px, 92vw);
  margin:0 auto;
  text-align:center;
  transform:translateY(-10px);
  padding-left:clamp(20px, 6vw, 80px);
  padding-right:clamp(20px, 6vw, 80px);
}

.hero-title{
  font-family:AppleMyungjo, "Libre Baskerville", serif;
  font-weight:800;
  color:rgba(242, 247, 254, 0.96);
  letter-spacing:.6px;
  font-size:46px;
  line-height:1.15;
  margin:0 0 10px 0;
  text-shadow:0 10px 30px rgba(6, 9, 8, 0.88);
  padding-top:10px;
}

.hero-sub{
  font-family:AppleMyungjo, "Libre Baskerville", serif;
  font-weight:800;
  color:rgba(242, 247, 254, 0.96);
  font-size:19px;
  line-height:1.25;
  margin:0;
  text-align:center;
  letter-spacing:.15px;
  text-shadow:0 10px 30px rgba(6, 9, 8, 0.88);
}

.hero-ctas{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
  padding-top:10px;
  margin-top:20px;
}

.cta,
.cta2{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size:14px;
  font-weight:500;
  color:#fff;
  text-decoration:none;
  padding:11px 18px;
  border-radius:8px;
  line-height:1;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .15s ease, transform .15s ease;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  border:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.hero .cta{
  background:#6D969E;
}

.hero .cta2{
  background:rgba(237, 197, 20, 0.865);
}

.hero .cta:hover,
.hero .cta2:hover{
  background:var(--orange-dark);
  transform:translateY(-1px);
}

.hero .cta:active,
.hero .cta2:active{
  transform:translateY(0) scale(.98);
}

.hypno-hero__line{
  width:min(520px, 92vw);
  height:3px;
  margin:12px auto;
  border-radius:999px;
  background:rgba(242, 247, 254, 0.96);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

@media (max-width:768px){
  .hero{
    width:100%;
    height:89svh;
    min-height:420px;
    background:#000;
  }

  .hero::before{
    inset:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    transform:scale(1.02);
    background-position:center 55%;
    background-size:cover;
  }

  .hero-content{
    padding:28px 0;
  }

  .hero-inner{
    width:min(1040px, 92vw);
    text-align:center;
    transform:none;
  }

  .hero-title,
  .hero-sub{
    text-align:center !important;
  }

  .hero-title{
    font-size:0 !important;
    line-height:0 !important;
    margin-bottom:8px;
  }

  .hero-title::after{
    content:"Psycholog i psychoterapia online";
    display:block;
    font-size:22px;
    line-height:1.15;
    font-family:AppleMyungjo, "Libre Baskerville", serif;
    font-weight:800;
    color:rgba(242, 247, 254, 0.96);
    letter-spacing:.6px;
    text-shadow:0 10px 30px rgba(6, 9, 8, 0.88);
  }

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

  .hypno-hero__line{
    height:2px;
    margin:12px auto;
  }
}

@media (max-width:720px){
  .hero-inner{
    transform:translateY(-6px);
  }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section{
  width:100%;
  background:rgba(252, 251, 245, 0.45);
  padding:38px 0 8px;
  clear:both;
}

.reviews-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.reviews-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.reviews-title{
  font-family:"Libre Baskerville", serif;
  font-weight:800;
  font-size:33px;
  color:#385b63;
  margin:10px auto;
  text-align:center;
}

.reviews-aggregate{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:#0c1416;
}

.star-row{
  display:inline-flex;
  gap:2px;
  vertical-align:middle;
}

.star{
  width:18px;
  height:18px;
}

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

.rev-card{
  background:#f5f7fa;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(28,43,58,.06);
  padding:16px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.rev-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.rev-author{
  font-family:"Montserrat", Arial, sans-serif;
  font-weight:800;
  color:#183541;
}

.rev-date{
  font-size:.9rem;
  color:#6b7680;
}

.rev-text{
  font-size:1.02rem;
  line-height:1.5;
  color:#212a2d;
}

.reviews-cta{
  margin-top:14px;
  text-align:right;
}

.reviews-btn{
  display:inline-block;
  background:#6D969E;
  color:#fff;
  text-decoration:none;
  padding:10px 16px;
  border-radius:9px;
  font-weight:800;
  box-shadow:0 2px 8px rgba(237,150,46,.10);
}

.reviews-btn:hover{
  background:var(--orange-dark);
}

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

@media (max-width:800px){
  .reviews-title{
    margin:40px 0 14px 0;
    text-align:center;
  }
}

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

  .reviews-head{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* =========================================================
   CLINIC INTRO
   ========================================================= */
.clinic-intro{
  width:100%;
  background:rgba(252, 251, 245, 0.45);
  position:relative;
  z-index:6;
  margin-top:0;
  padding:22px 0 26px;
}

.clinic-intro__inner{
  max-width:1180px;
  margin:0 auto;
  padding-left:clamp(22px, 5vw, 72px) !important;
  padding-right:clamp(22px, 5vw, 72px) !important;
}

.clinic-intro__head{
  text-align:center;
  margin:0 0 26px;
}

.clinic-intro__brand{
  font-family:"Libre Baskerville", serif;
  font-weight:800;
  color:#385b63;
  letter-spacing:.6px;
  font-size:clamp(22px, 2.6vw, 36px);
  line-height:1.15;
  margin:20px 0 2px;
}

.clinic-intro__line{
  height:3px;
  width:min(520px, 72vw);
  margin:14px auto;
  border-radius:999px;
  background:rgba(56, 91, 99, .35);
}

.clinic-intro__title{
  font-family:"Libre Baskerville", serif;
  font-weight:800;
  color:#385b63;
  font-size:clamp(18px, 2vw, 30px);
  line-height:1.32;
  margin:2px 0 0;
  text-align:center;
}

.clinic-intro__text{
  padding-left:clamp(4px, 1vw, 10px);
  padding-right:clamp(4px, 1vw, 10px);
}

.clinic-intro__text p{
  text-align:justify;
  font-family:"Libre Baskerville", serif;
  color:#385b63;
  font-size:19px;
  line-height:1.75;
  margin:0 0 18px;
  letter-spacing:.12px;
}

.clinic-intro__text h3{
  font-family:"Libre Baskerville", serif;
  font-weight:800;
  color:#385b63;
  font-size:28px;
  line-height:1.45;
  margin:60px 0 20px 10px;
  text-align:center;
  letter-spacing:.115px;
}

@media (max-width:700px){
  .clinic-intro{
    margin-top:0;
    padding:18px 0;
  }

  .clinic-intro__inner{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .clinic-intro__text{
    padding-left:12px !important;
    padding-right:12px !important;
  }

  .clinic-intro__text p{
    font-size:1rem;
    line-height:1.68;
    margin-bottom:16px;
    margin-left:0 !important;
    margin-right:0 !important;
  }
}

@media (min-width:981px){
  .clinic-intro{
    padding:14px 0 16px !important;
  }

  .clinic-intro__head{
    margin:0 0 14px !important;
  }

  .clinic-intro__brand{
    margin:10px 0 0 !important;
  }

  .clinic-intro__line{
    margin:10px auto !important;
  }

  .clinic-intro__title{
    margin:0 !important;
    line-height:1.22 !important;
  }

  .clinic-intro__text p{
    margin:0 0 10px !important;
    line-height:1.62 !important;
  }
}

/* =========================================================
   DK / TF LISTS
   ========================================================= */
.dk-left h3{
  font-family:"Libre Baskerville", serif;
  font-weight:800;
  color:#385b63;
  font-size:clamp(18px, 2vw, 30px);
  line-height:1.25;
  margin:22px 0;
  text-align:center !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.dk-list,
.tf-list{
  color:#385b63;
  font-size:19.6px;
  padding-left:24px !important;
  padding-right:8px !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.dk-list{
  text-align:justify;
}

.dk-list li,
.tf-list li{
  font-family:"Libre Baskerville", serif;
  line-height:1.5 !important;
  letter-spacing:.012px !important;
}

.tf-list{
  list-style:initial;
  text-align:justify;
}

.tf-card__title{
  text-align:center !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

@media (max-width:980px){
  .dk-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .dk-right .dk-card{
    min-height:240px;
  }

  .dk-left h3{
    font-size:28px;
  }
}

@media (max-width:700px){
  .dk-left h3{
    font-size:20px !important;
    margin:14px 0 !important;
    line-height:1.25 !important;
  }

  .dk-list,
  .tf-list{
    font-size:16px !important;
    line-height:1.55 !important;
    text-align:left !important;
    letter-spacing:0 !important;
    padding-left:20px !important;
    padding-right:20px !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .dk-list li,
  .tf-list li{
    letter-spacing:0 !important;
    line-height:1.55 !important;
  }
}

@media (min-width:981px){
  .dk-left h3,
  .tf-card__title{
    margin:30px 0 15px !important;
    line-height:1.18 !important;
  }

  .dk-list,
  .tf-list{
    margin:0 18px 0 0 !important;
    padding-left:20px !important;
    padding-right:0 !important;
  }

  .dk-list li,
  .tf-list li{
    line-height:1.35 !important;
    margin-bottom:6px !important;
  }

  .dk-list li:last-child,
  .tf-list li:last-child{
    margin-bottom:0 !important;
  }

  .dk-left .dk-block{
    margin-bottom:14px !important;
  }
}

/* =========================================================
   DK CARD / DOUBLE GRID
   ========================================================= */
.dk-right .dk-card img{
  height:100% !important;
  object-fit:cover;
}

.dk-grid.dk-grid--double{
  display:grid;
  grid-template-columns:1fr minmax(240px, 360px);
  gap:34px;
  align-items:start;
}

.dk-grid.dk-grid--double .dk-right{
  justify-self:end;
  margin-left:26px;
}

.dk-grid.dk-grid--double .dk-card.dk-card--tall{
  margin-top:45px;
  height:auto;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.12);
  background:#f3f3f3;
}

.dk-grid.dk-grid--double .dk-card.dk-card--tall picture,
.dk-grid.dk-grid--double .dk-card.dk-card--tall img{
  display:block;
  width:100%;
  height:auto !important;
}

.dk-grid.dk-grid--double .dk-card.dk-card--tall img{
  object-fit:contain !important;
  object-position:center;
}

@media (max-width:980px){
  .dk-grid.dk-grid--double{
    grid-template-columns:1fr !important;
  }

  .dk-grid.dk-grid--double .dk-right{
    justify-self:stretch !important;
    margin-left:0 !important;
    margin-top:12px;
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .dk-card-tile{
    width:80% !important;
    margin:16px auto 0 !important;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.12);
  }

  .dk-card.dk-card--tall{
    width:100%;
    border-radius:26px;
    overflow:hidden;
  }

  .dk-card.dk-card--tall img,
  .dk-card.dk-card--tall picture{
    display:block;
    width:100%;
    height:auto !important;
  }

  .dk-card-tile .dk-card.dk-card--tall{
    width:100%;
    margin:0 !important;
    border-radius:inherit;
    overflow:hidden;
    box-shadow:none;
  }
}

/* =========================================================
   BOTTOM SLIDER
   ========================================================= */
body.has-bottom-slider{
  padding-bottom:88px;
}

.bottom-slider{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:linear-gradient(to top, rgba(8,10,12,.96), rgba(8,10,12,.88));
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(255,255,255,.12);
  box-shadow:0 -12px 40px rgba(0,0,0,.35);
  transform:translateY(100%);
  transition:transform .7s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index:999;
  padding:12px 0;
  color:#fff;
  padding-bottom:env(safe-area-inset-bottom);
}

.bottom-slider.is-visible{
  transform:translateY(0);
}

.bottom-slider__inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

.bottom-slider__text{
  font-size:15px;
  line-height:1.25;
  font-weight:600;
}

.bottom-slider__text small{
  display:block;
  font-size:12.5px;
  opacity:.85;
  margin-top:2px;
  font-weight:normal;
}

.bottom-slider__spacer{
  flex:1;
}

.bottom-slider__btn{
  background:#fff;
  color:#0b1220;
  padding:10px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  transition:transform .2s ease;
}

.bottom-slider__btn:hover{
  transform:translateY(-2px);
}

.bottom-slider__close{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  opacity:.7;
  padding:4px 8px;
  line-height:1;
}

.bottom-slider__close:hover{
  opacity:1;
}

@media (max-width:720px){
  body.has-bottom-slider{
    padding-bottom:108px;
  }

  .bottom-slider__inner{
    flex-direction:column;
    align-items:stretch;
    text-align:left;
    gap:8px;
    padding:0 14px;
    position:relative;
  }

  .bottom-slider__spacer{
    display:none;
  }

  .bottom-slider__btn{
    width:calc(100% - 44px);
    justify-content:center;
    margin:0;
    padding:9px 12px !important;
    height:36px !important;
    font-size:13px !important;
  }

  .bottom-slider__close{
    position:absolute;
    right:10px;
    top:8px;
    margin:0;
    width:34px !important;
    height:34px !important;
    font-size:22px !important;
    line-height:1 !important;
  }

  .bottom-slider__text{
    font-size:14px !important;
    line-height:1.25 !important;
  }

  .bottom-slider__text small{
    display:block;
    margin-top:2px;
    font-size:12px !important;
    line-height:1.25 !important;
    opacity:.9;
  }
}
