/* =========================================================
   Base
========================================================= */
:root{
  --c-white:#fff;
  --c-text:#072744;
  --c-text-2:#4a5565;
  --c-hero-p:#dbeafe;

  --radius-16:16px;
  --radius-20:20px;
  --radius-24:24px;

  --shadow-hover:0 4px 6px -4px rgba(0,0,0,.1), 0 10px 15px -3px rgba(0,0,0,.1);
}

body{
  background-color: var(--background-color);
  /* background: url(../img/site_background.png); */
  color: var(--main-font-color);
  font-size: var(--font-normal);
  font-family: var(--main-font-family);
  display: none;
}

*{ scroll-behavior: smooth; }

b, .bold{ font-weight: 700; }

/* Common heading style used in multiple sections */
.steps h1,
.goals-section h1,
.diff h1,
.inside h1,
.experience h1,
.hypnosis h1,
.work-section h1,
.plan h1,
.faq h1{
  font-size: 52px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-text);
}

/* White headings for dark sections */
.experience h1,
.hypnosis h1{
  color: #fff;
}

/* Common paragraph style for multiple sections */
.goals-section p,
.step .subtitle,
.diff-step span,
.inside p,
p.benefit-text{
  color: var(--c-text-2);
}

/* Common “dark section” paragraph style */
.experience p,
.hypnosis p,
.success p,
.work-section p,
.plan p{
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-hero-p);
}

/* =========================================================
   Hero
========================================================= */
.hero-section{
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  padding: 165px 0;
}

.hero-section .hero-content{ width: 65%; }

.hero-btn{ width: 500px; }

.hero-reviews{
  height: 45px;
  margin-right: 25px;
}

h1.hero{
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
}

p.hero{
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-hero-p);
}

.reviews div:first-child{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #fff;
}
.reviews > div:last-child{
  font-size: 12px;
  line-height: 1.33;
  color: #bedbff;
}

/* =========================================================
   Checks
========================================================= */
.checks{
  gap: 90px;
  border-bottom: 1px solid #e5e5e5;
}

.checkmark{
  display: flex;
  align-items: center;
}

.checkmark img{
  height: 56px;
  margin-right: 15px;
}

.checkmark span{
  font-size: 24px;
  font-weight: 500;
  color: #272727;
}

/* =========================================================
   Steps
========================================================= */
.steps{
  background-image: linear-gradient(to bottom, rgba(249,250,251,0) 0%, #f9fafb);
}

.steps h1{ width: 75%; }

.steps-separator{
  width: 2px;
  height: 101px;
  margin: 25px auto;
  background-image: linear-gradient(to bottom, #8ec5ff 100%, rgba(28,39,50,.15) 30%, rgba(0,0,0,0) 0%);
  background-size: cover;
}

.step img{
  width: 130px;
  margin: 0 15px 15px 0;
}

.step .title{
  font-size: 32px;
  font-weight: 600;
  line-height: .88;
  letter-spacing: -0.45px;
  color: #101828;
}

.step .subtitle{
  font-size: 20px;
  line-height: 1.4;
}

/* =========================================================
   Goals (cards)
========================================================= */
.goals-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: calc(440px * 3 + 32px * 2);
  margin: 0 auto;
}

.goal-card{
  width: 440px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 18px;
  border: 2px solid #f1f2f3;
  border-radius: var(--radius-24);
  background: var(--c-white);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.goal-icon{ margin-right: 14px; }
.goal-icon img{ height: 56px; }

.goal-text{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.45px;
  text-align: left;
  color: var(--c-text);
}

.goal-arrow{
  position: absolute;
  right: 18px;
  top: 50%;
  height: 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.goal-card:hover{
  box-shadow: var(--shadow-hover);
  border-color: var(--c-text);
  background-image:
    linear-gradient(105deg, #e0f0fe 0%, #fff 75%),
    linear-gradient(to bottom, #f0f8ff, #f0f8ff);
}

.goal-card:hover .goal-arrow{
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.goals-section a:hover{ text-decoration: none; }

.goals-section p{
  font-size: 20px;
  line-height: 1.3;
}

/* =========================================================
   Hypnosis / Experience
========================================================= */
.hypnosis,
.experience{
  background: url('../img/hypnosis-bg.png') center/cover no-repeat;
}

.experience h1{ letter-spacing: -1.8px; }
.experience p{ font-weight: 400; }

.hypnosis h1{ line-height: .92; }

/* =========================================================
   How (white box)
========================================================= */
.how{
  background-color: var(--c-white);
  text-align: left;
  padding: 33px 30px;
  border-radius: 0 0 var(--radius-24) var(--radius-24);
}

.how p{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--c-text);
}

.how span{
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-text-2);
}

/* =========================================================
   Diff
========================================================= */
.diff-step{
  padding: 44px 49px;
  border-radius: var(--radius-16);
  border: 1px solid #efefef;
  background-image: linear-gradient(100deg, #f1f1f1, #fff);
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.diff-step p{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.13;
  color: var(--c-text);
}

.diff-step span{
  font-size: 20px;
  line-height: 1.46;
}

/* =========================================================
   Ready
========================================================= */
.ready-box{
  padding: 60px 15px;
  background: url('../img/trans-bg.png') center/cover no-repeat;
  border-radius: var(--radius-20);
}

.try-btn{
  max-width: 362px;
  width: 100%;
}

.number{
  max-height: 140px;
  position: absolute;
  top: 9px;
  right: 70px;
}

/* =========================================================
   Benefits (Bootstrap 4 “gap” simulation)
========================================================= */
.benefits-row{
  margin-left: -16px;
  margin-right: -16px;
}

.benefits-row > [class*="col-"]{
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 32px;
}

.benefit-card{
  max-width: 520px;
  padding: 35px 120px 33px 35px;
  border-radius: var(--radius-24);
  background-image: linear-gradient(65deg, #fff 30%, #e0f0fe 100%);
}

.benefit-icon{
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.benefit-title{
  font-size: 32px;
  font-weight: 500;
  color: var(--c-text);
  margin: 0;
}

p.benefit-text{
  font-size: 20px;
  line-height: 1.5;
}

/* =========================================================
   Inside
========================================================= */
.inside-col{
  padding: 35px 32px 35px 35px;
  border-radius: var(--radius-24);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border: 1px solid #f3f4f6;
  background-color: var(--c-white);
}

.inside p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

p.inside-time,
p.inside-included{
  border-radius: 16777200px;
  color: var(--c-text);
}

p.inside-time{
  padding: 8px 15.5px 8px 16px;
  background-color: #e0f0fe;
  font-size: 16px;
}

p.inside-included{
  padding: 3.5px 11.8px 4.5px 12px;
  background-color: #f0fdf4;
  font-size: 12px !important;
  line-height: 1.33;
}

.inside-col h3{
  font-size: 26px;
  font-weight: 600;
  line-height: 1.14;
  color: #101828;
}

.inside-col p{
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text-2);
}

.inside-col span{
  font-size: 14px;
  line-height: 1.5;
  color: #6a7282;
}

/* =========================================================
   Success
========================================================= */
.success{
  background: url('../img/success-bg.png') center/cover no-repeat;
}

.overtitle{
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: .7px;
  color: #8ec5ff;
  text-transform: uppercase;
}

.success h1{
  /* keep unique bits, reuse base sizes already */
  letter-spacing: -1.2px;
  color: #fff; /* success h1 is white */
}

.success p{
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-hero-p);
}

.success-col,
.success .reviews{
  border-radius: var(--radius-16);
  border: 1px solid rgba(255,255,255,.2);
  background-color: rgba(255,255,255,.1);
}

.success-col{ padding: 32px 29px 32px 32px; }

p.content{
  font-size: 20px;
  line-height: 1.4;
  color: #eff6ff;
  font-weight: 400;
}

img.kg, img.calendar{
  width: 15px;
  margin-right: 5px;
}

span.kg, span.calendar{
  font-size: 14px;
  line-height: 1.14;
  color: #8ec5ff;
}

span.name{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.success .reviews{
  padding: 25px 32px 25px 33px;
  max-width: 700px;
  margin: auto;
}

.success h5{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #bedbff;
  margin-bottom: 0;
}

.success h2{
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.reviews-separator{
  width: 1px;
  height: 48px;
  background-color: #fff;
  opacity: .2;
}

/* =========================================================
   Last CTA + Footer
========================================================= */
.last-cta h1{
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: #101828;
}

.last-cta p{
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--c-text-2);
}

footer{
  border-top: 1px solid #e5e7eb;
}

footer p{
  font-size: 18px;
  line-height: 1.11;
  color: #99a1af;
  padding: 30px 0;
}

.stars{ max-width: 185px; }
.preview{ max-height: 42px; }

/* =========================================================
   Wide containers overrides
========================================================= */
@media (min-width: 1200px){
  .inside .container,
  .success .container,
  .plan .container
  {
    max-width: 1300px;
  }

  .work-section .container{
    max-width: 1450px;
  }
   .box {
    max-width: 1500px!important; 
  }
}


/* =========================================================
   Product page
========================================================= */
.people::after {
  content: "67";
  animation: changeNumber 25s infinite;
}

.people, .viewers{
  font-size: 22px;
  color:#ff4958;
}

/* Animate through a few random values */
@keyframes changeNumber {
  0% {
      content: "67";
  }

  20% {
      content: "72";
  }

  40% {
      content: "65";
  }

  60% {
      content: "69";
  }

  80% {
      content: "74";
  }

  100% {
      content: "77";
  }
}

.product-section .hero{
  color:#072744;
}
.product-section p{
  color:#4a5565;
  font-size: 20px;
}

.prod-btn{
  max-width: 362px;
  width: 100%;
}

.work-section{
  background: url('../img/work-bg.png') center/cover no-repeat;}

  .white-box{
    border-radius: 30px 30px 0px 0px;

  }

  .white-card{  padding: 35px 53px 31px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: solid 1px #f3f4f6;
    background-color: #fff;
    text-align: center;
  }
   
   .white-card .icon{
    height: 56px;}

    .white-card h3{
      color:#072744;
      font-weight: 600;
    }

    .white-card p{
      color:#4a5565;
    }

    .plus-icon{padding: 0px 25px;}

    .plan{  
      background-image: linear-gradient(to bottom, #f9fafb 0%, rgba(249, 250, 251, 0) 100%);
    }

    .grid-gap > * { margin-bottom: 16px; }
.grid-gap > *:last-child { margin-bottom: 0; }

.plan-box, .plan-box-left{
  border-radius: 16px;
  border: solid 2px #e5e7eb;
  background-color: #fff;
}

.special-width{
  width: 75%;
}
.plan-guarantee{
  border-radius: 16px;
  border: solid 2px #b9f8cf;
  background-color: #f0fdf4;
}

.plan-box-left h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.17;
  color: #101828;
}

.plan-box-left p{
  color:#4a5565;
  font-size: 16px;
  line-height: 1.25;
}

.plan-box-left li span {
  font-size: 16px;
  color:#364153;
  line-height: 1.35;
}

.plan-box .title{
  font-size:24px;
  color:#072744;
  margin-bottom: 10px;
}

.plan-box p.sub-title{
  font-size: 14px;
  color:#6a7282;
}

.plan-box p.desc{
  font-size: 14px;
  color:#072744;
}

.plan-box p.pricing{
  font-size: 14px;
}

.plan-box p.price{
  font-size:30px;
  color:#072744;
  font-weight: 600;
  line-height: 1.2;
}

.plan-box p.month{
  font-size:14px;
  color:#072744;
  line-height: 1.43;
  color:#6a7282;
}

/* ascund input-urile, dar raman functionale */
.plan-radio{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* box clickabil */
.plan-box{
  position: relative;
  cursor: pointer;
  display: block;
  transition: box-shadow .15s ease, border-color .15s ease, border-radius .15s ease, background-image .15s ease;
}

/* hover */
.plan-box:hover{
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: solid 2px #1982e6;
  background-image: linear-gradient(106deg, #fff 58%, #e0f0fe 100%), linear-gradient(to bottom, #fff, #fff);
}

/* selected (cand radio e checked, stilizeaza label-ul imediat urmator) */
.plan-radio:checked + .plan-box{
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: solid 2px #1982e6;
  background-image: linear-gradient(106deg, #fff 58%, #e0f0fe 100%), linear-gradient(to bottom, #fff, #fff);
}

/* “radio” custom (ui fake) */
.plan-radio-ui{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cfd6e4;
  background: #fff;
  display: inline-block;
  margin-top: 8px;
}

/* cand e checked, afiseaza PNG-ul tau */
.plan-radio:checked + .plan-box .plan-radio-ui{
  border: 0;
  background: url("../img/plan-check.png") center/contain no-repeat;
}

.plan .white-card{
  padding: 13px 28px 33px 27px;
  border-radius: 16px;
  border: solid 2px #e5e7eb;
  background-color: #fff;
  box-shadow: none;
}

.plan .white-card h3{
  font-size:24px;
}

.plan .white-card p{
  font-size:18px;
}

.left-icon, .right-icon{
  width:48px;
}

.faq-wrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-accordion .faq-card{
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(16,24,40,.08);
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 16px!important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: solid 1px #e5e7eb;
  background-color: #fff;  
}

.faq-accordion .faq-header{
  padding: 0;
  background: transparent;
  border: 0;
}

.faq-accordion .faq-btn{
  width: 100%;
  padding: 22px 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #072744;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.faq-accordion .faq-btn:hover,
.faq-accordion .faq-btn:focus{
  text-decoration: none;
  outline: none;
}

.faq-accordion .faq-q{
  text-align: left;
  flex: 1 1 auto;
}

.faq-accordion .faq-body{
  padding: 0px 150px 22px 22px;
  color: #4a5565 ;
  font-size: 20px;
  line-height: 1.4;
}

/* Icon (cerc + plus/minus) */
.faq-accordion .faq-icon{
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
  position: relative;
}

/* linia orizontală (minus) */
.faq-accordion .faq-icon:before{
  content: "";
  width: 14px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  position: absolute;
}

/* linia verticală (face plus) doar când e închis */
.faq-accordion .faq-btn[aria-expanded="false"] .faq-icon:after{
  content: "";
  width: 2px;
  height: 14px;
  background: #0f172a;
  border-radius: 2px;
  position: absolute;
}

.btn:focus{
  box-shadow: none!important;
}

span.faq-q, .faq-body{
  font-family: inherit!important;
  
}

a.member-btn{
  background-color: #1982e6;
  color:#fff;
  text-decoration: none;
  padding:8px 17px;
  border-radius:15px;
  font-size: 20px;
  font-weight: 300;
  transition: 0.3s 
}

a.member-btn:hover,
.cta:hover{
opacity: 0.8;
transition: 0.3s 
}


span.member-btn__icon{
  position: relative;
  top:-3px;
}

/* Footer definitions */
/* Footer Section  */

.footer-wrapper .footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0px -5px 0px -5px;
	padding:10px;
	padding-left:0px;
	padding-right:0px;
    font-weight:bold;
    
}


.footer-top-bg{
	background-color:#072744;
	background-size:cover;
	background-repeat:no-repeat;
}
.footer-middle-bg{
    background-color: #f8f8f8;
	background-size:cover;
	background-repeat:no-repeat;
}
.footer-bottom-bg{
    background-color: #f1f1f1;
	background-size:cover;
	background-repeat:no-repeat;
}
.footer-wrapper .footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0px -25px 0px -25px;
	padding:10px;
	padding-left:0px;
	padding-right:0px;
    font-weight:bold;
}
.footer-wrapper .footer-menu .footer-menu-links {
	list-style: none;
	display:inline-block;
	padding:10px;
	padding-top:20px;
	padding-bottom:20px;
	font-weight:bold;
}

.footer-menu .footer-menu-links {
  text-align: center;
  padding: 5px;
}
.footer-logo {
  left: -20%;
}
.footer-menu .footer-menu-links a {
  color:#ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 32px;
  font-weight: bold;
}
.footer-menu .footer-menu-links a:hover {
  color: #8c9292 ;
}
.footer-main-section p {
  font-size: 14px;
  color:#808080;
      letter-spacing: -0.1px;
font-weight: 300;
  text-align: justify;
}
a.footer-link {
  color:#808080;
  font-size: 14px;
}

.copyright h3 {
  font-size: 16px;
  color: #000000;
}

.bg-text-disclaimer {
  color:#000000!important ;
}
.bg-white {
  border-radius: 15px;
}
.bg-grey-up {
  background-color: #f5f5f5;
  border-radius: 20px !important;
}
footer #disclaimer .main.container>div {
  background-color: transparent!important;
  box-shadow: none!important;
}

footer p {
  font-size: 0.875rem;
}


/* =========================================================
   Mobile
========================================================= */
@media (max-width: 768px){

  .prod-btn{
    margin:0 auto;
    display: block;
  }

  .footer-wrapper {
		background-color:var(--footer-background-color);
		background-size:100% auto;
		
   }
	.footer-wrapper .footer-menu .footer-menu-links A {
		text-decoration:none;
		
   }
	.footer-wrapper .footer-menu .footer-menu-links A:hover {
		text-decoration:none;
		color:var(--footer-hover-color);
}

  .faq-accordion .faq-body{
    font-size:18px!important;
    padding:0px 15px 15px 15px;
  }

  .special-width{
    width: 100%;
  }

  .white-box{
    display: block;
  }

  .white-card{  
    padding: 20px 20px 20px;
    margin-bottom: 15px;
  }

  .people, .viewers{
    font-size: 16px;
  }

  h1{ font-size: 32px !important; }

  .goals-section{
    padding-left: 15px;
    padding-right: 15px;
  }

  .goals-section p{ font-size: 18px; }
  span.goal-text{ font-size: 18px; }

  .goal-card{ padding: 15px; }
  .goal-icon img{ height: 35px; }
  .goals-wrap{ gap: 15px; }

  .hypnosis p{ font-size: 18px; }

  .how{ padding: 20px; }

  .diff-step{ padding: 25px; }
  .diff-step p{ font-size: 25px; }
  .diff-step span{ font-size: 18px; }

  .ready-box{ padding: 30px; }

  .benefit-card{ padding: 25px; }
  .benefit-icon{ height: 40px; }
  .benefit-card h3{ font-size: 25px; }
  .benefit-card p{ font-size: 18px; }

  .preview{ max-height: 30px; }

  .success p{ font-size: 18px; }

  .reviews-separator{ display: none; }

  .success .reviews{
    margin: auto;
    padding: 20px;
    width: 100%;
  }

  .stars{
    justify-content: center;
    max-width: 100%;
  }

  .success .reviews h2{ margin-bottom: 0; }
  .success .reviews h5{ margin-bottom: 10px; }

  .number{ display: none; }

  .steps h1{ width: 100%; }
  .step img{ width: 90px; }
  .step .title{ font-size: 24px; }
  .step .subtitle{ font-size: 18px; }
  .steps-separator{ height: 80px; }

  .hero-section{ padding: 40px 0; }
  .hero-section .hero-content{ width: 100%; }
  .hero-btn{ width: 100%; }

  .checkmark{ margin-bottom: 10px; }
  .checkmark img{ height: 30px; }
  .checkmark span{ font-size: 20px; }

  h1.hero{ font-size: 32px; }
  p.hero{ font-size: 16px; }
  .hero-reviews{ margin-right: 15px; }
}
