:root {
  --primary: #6c3cf0;
  --secondary: #ff8a00;
  --dark: #101828;
  --text: #667085;
  --white: #fff;
  --light: #f9fafb;

  --gradient: linear-gradient(135deg, #6c3cf0, #845ef7, #a855f7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: var(--light);

  color: var(--dark);

  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
}

section {
  padding: 120px 0;

  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
}

/* scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 20px;
}

/* ================= NAVBAR ================= */

.navbar{

position:fixed;

top:15px;

left:50%;

transform:translateX(-50%);

width:92%;

z-index:9999;

padding:18px 25px;

border-radius:70px;

background:rgba(255,255,255,.75);

backdrop-filter:blur(30px);

border:1px solid rgba(255,255,255,.45);

box-shadow:

0 25px 80px rgba(15,23,42,.08);

transition:.4s;

}

.navbar.scrolled{

padding:14px 25px;

box-shadow:

0 30px 80px rgba(15,23,42,.15);

background:rgba(255,255,255,.92);

}

.logo {
  font-size: 30px;

  font-weight: 800;

  font-family: "Outfit";

  color: var(--primary);
}

.nav-link {
  font-weight: 600;

  margin-left: 28px;

  color: #444 !important;
}

.btn-register {
  background: var(--gradient);

  padding: 15px 34px;

  border-radius: 60px;

  color: white;

  font-weight: 700;

  box-shadow: 0 20px 40px rgba(108, 60, 240, 0.3);

  transition: 0.4s;
}

.btn-register:hover {
  transform: translateY(-4px);

  color: white;
}

/* ================= HERO ================= */

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

padding-top:140px;

padding-bottom:120px;

overflow:hidden;

background:
linear-gradient(
135deg,
#ffffff 0%,
#f7f4ff 30%,
#eef6ff 70%,
#ffffff 100%);

}

/* background circles */

.hero::before{

content:"";

position:absolute;

width:900px;

height:900px;

background:radial-gradient(circle,#6C3CF025 0%,transparent 70%);

top:-300px;

right:-250px;

filter:blur(70px);

animation:heroFloat 10s ease-in-out infinite;

}

.hero::after{

content:"";

position:absolute;

width:700px;

height:700px;

background:radial-gradient(circle,#FF8A0020 0%,transparent 70%);

left:-220px;

bottom:-220px;

filter:blur(60px);

animation:heroFloat 8s ease-in-out infinite reverse;

}

@keyframes heroFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-35px);

}

100%{

transform:translateY(0px);

}

}

/* floating shapes */

.blob {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  animation: float 6s ease-in-out infinite;
}

.blob1 {
  width: 90px;

  height: 90px;

  background: #6c3cf0;

  top: 20%;

  left: 8%;

  opacity: 0.08;
}

.blob2 {
  width: 140px;

  height: 140px;

  background: #ff8a00;

  bottom: 12%;

  right: 8%;

  opacity: 0.1;

  animation-delay: 2s;
}

.blob3 {
  width: 60px;

  height: 60px;

  background: #845ef7;

  top: 50%;

  right: 18%;

  opacity: 0.12;

  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* hero */

.hero-content {
  position: relative;

  z-index: 2;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  background: #efe9ff;

  border-radius: 100px;

  color: var(--primary);

  font-weight: 700;
}

.hero-title {
  font-size: 72px;

  font-weight: 800;

  line-height: 1.05;

  margin: 30px 0;

  letter-spacing: -2px;
}

.hero-title span {
  background: var(--gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 20px;

  line-height: 1.9;

  color: var(--text);

  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.btn-primary-lg{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:18px 42px;

border-radius:80px;

background:linear-gradient(135deg,#6C3CF0,#8B5CF6);

color:white;

font-weight:700;

font-size:18px;

position:relative;

overflow:hidden;

transition:.4s;

box-shadow:

0 25px 60px rgba(108,60,240,.35);

}

.btn-primary-lg::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:120%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent);

transition:.8s;

}

.btn-primary-lg:hover::before{

left:120%;

}

.btn-primary-lg:hover{

transform:

translateY(-7px);

box-shadow:

0 35px 80px rgba(108,60,240,.45);

}

.btn-outline-lg {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 38px;

  border-radius: 70px;

  border: 2px solid #ddd;

  font-weight: 700;

  color: var(--dark);

  transition: 0.35s;
}

.btn-outline-lg:hover {
  background: #fff;

  transform: translateY(-5px);
}

/* trust */

.hero-trust {
  margin-top: 60px;

  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.trust-box {
  background: #fff;

  padding: 22px;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);

  min-width: 170px;

  transition: 0.35s;
}

.trust-box:hover {
  transform: translateY(-10px);
}

.trust-box h3 {
  font-size: 34px;

  font-weight: 800;

  margin-bottom: 5px;

  color: var(--primary);
}

.trust-box p {
  margin: 0;

  font-size: 14px;

  color: var(--text);
}

/* Right Card */

.hero-card{

position:relative;

background:rgba(255,255,255,.72);

backdrop-filter:blur(30px);

border:1px solid rgba(255,255,255,.45);

border-radius:35px;

padding:45px;

overflow:hidden;

box-shadow:

0 30px 80px rgba(15,23,42,.08);

transition:.45s;

}

.hero-card:hover{

transform:

translateY(-15px);

box-shadow:

0 70px 150px rgba(15,23,42,.15);

}

.hero-card::before {
  content: "";

  position: absolute;

  width: 160px;

  height: 160px;

  background: #6c3cf0;

  opacity: 0.08;

  border-radius: 50%;

  top: -60px;

  right: -60px;
}

.live-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  background: #fff5e9;

  border-radius: 60px;

  font-weight: 700;

  color: #ff8a00;
}

.workshop-list {
  margin-top: 30px;
}

.workshop-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid #ececec;
}

.workshop-item:last-child {
  border: none;
}

.workshop-item i {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f4f1ff;

  border-radius: 50%;

  color: var(--primary);

  font-size: 18px;
}

.workshop-left {
  display: flex;

  align-items: center;

  gap: 15px;
}

.hero-price {
  margin-top: 35px;

  text-align: center;
}

.hero-price h1 {
  font-size: 72px;

  font-weight: 800;

  color: var(--secondary);

  margin-bottom: 0;
}

.hero-price del {
  font-size: 26px;

  color: #999;
}

.hero-register {
  margin-top: 35px;

  display: grid;
}

.hero-register a {
  padding: 20px;

  border-radius: 60px;

  text-align: center;

  background: var(--gradient);

  color: #fff;

  font-size: 18px;

  font-weight: 700;

  box-shadow: 0 20px 50px rgba(108, 60, 240, 0.3);

  transition: 0.35s;
}

.hero-register a:hover {
  transform: translateY(-6px);

  color: #fff;
}

.floating-review {
  position: absolute;
z-index: 10;
  bottom: -25px;

  left: -25px;

  background: #fff;

  padding: 18px 22px;

  border-radius: 22px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-review h5 {
  margin: 0;

  font-weight: 700;
}

.floating-review small {
  color: #777;
}

.floating-rating {
  position: absolute;
z-index: 10;
  top: -25px;

  right: -25px;

  background: #fff;

  padding: 18px 22px;

  border-radius: 22px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

  text-align: center;
}

.floating-rating h4 {
  margin: 0;

  font-weight: 800;

  color: #ffb400;
}


.scroll-indicator{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

display:flex;

flex-direction:column;

align-items:center;

color:#777;

font-size:14px;

z-index:5;

animation:bounce 2s infinite;

}

.mouse{

width:32px;

height:55px;

border:2px solid #999;

border-radius:30px;

position:relative;

margin-bottom:10px;

}

.wheel{

width:6px;

height:12px;

background:#999;

border-radius:20px;

position:absolute;

left:50%;

transform:translateX(-50%);

top:10px;

animation:wheel 2s infinite;

}

@keyframes wheel{

0%{

top:10px;

opacity:1;

}

100%{

top:28px;

opacity:0;

}

}

@keyframes bounce{

50%{

transform:translate(-50%,-8px);

}

}

#cursor-glow{

position:fixed;

width:350px;

height:350px;

border-radius:50%;

pointer-events:none;

background:radial-gradient(circle,
rgba(108,60,240,.12),
transparent 70%);

transform:translate(-50%,-50%);

z-index:0;

transition:

left .08s linear,

top .08s linear;

}

.hero-image-wrapper{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.hero-girl{

position:absolute;

right:-100px;

bottom:-40px;

width:430px;

z-index:1;

animation:floatingGirl 6s ease-in-out infinite;

filter:drop-shadow(0 40px 60px rgba(0,0,0,.18));

}

.hero-card{

position:relative;

z-index:5;

}

@keyframes floatingGirl{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

.review-card{

position:relative;

background:white;

border-radius:28px;

padding:30px;

overflow:hidden;

transition:.45s;

height:100%;

border:1px solid rgba(0,0,0,.05);

box-shadow:

0 25px 60px rgba(15,23,42,.06);

}

.review-card:hover{

transform:

translateY(-12px)
rotate(-1deg);

box-shadow:

0 50px 120px rgba(15,23,42,.12);

}

.review-card::before{

content:"★★★★★";

position:absolute;

right:25px;

top:25px;

font-size:18px;

letter-spacing:3px;

color:#FFB400;

opacity:.2;

}

.review-user{

display:flex;

align-items:center;

margin-bottom:25px;

}

.review-user img{

width:70px;

height:70px;

border-radius:50%;

margin-right:18px;

border:4px solid white;

box-shadow:

0 15px 40px rgba(0,0,0,.12);

}

.review-user h5{

margin-bottom:3px;

font-weight:700;

}

.review-user small{

color:#888;

}

.google-badge{

display:flex;

align-items:center;

gap:20px;

margin-bottom:35px;

}

.google-badge img{

height:55px;

}

.google-badge h4{

margin:0;

font-size:34px;

font-weight:800;

}

.google-badge p{

margin:0;

color:#777;

}

.message-shot{

border-radius:24px;

transition:.45s;

cursor:pointer;

box-shadow:

0 20px 60px rgba(0,0,0,.08);

}

.message-shot:hover{

transform:

scale(1.06)
rotate(-2deg);

box-shadow:

0 45px 100px rgba(0,0,0,.15);

}

.rating-strip{

display:inline-flex;

align-items:center;

gap:20px;

padding:12px 28px;

background:white;

border-radius:50px;

margin-top:25px;

box-shadow:

0 15px 40px rgba(0,0,0,.06);

font-weight:600;

}

/* BONUS */

.bonus-item{

display:flex;

align-items:center;

padding:28px 0;

border-bottom:1px solid rgba(0,0,0,.08);

gap:20px;

}

.bonus-item:last-child{

border:none;

}

.bonus-icon{

width:70px;

height:70px;

border-radius:22px;

background:linear-gradient(135deg,#6C3CF0,#9A63FF);

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

font-size:22px;

color:white;

flex-shrink:0;

}

.bonus-content{

flex:1;

}

.bonus-content h4{

margin-bottom:8px;

font-weight:700;

}

.bonus-content p{

margin:0;

color:#666;

}

.bonus-price{

font-size:24px;

font-weight:800;

color:#000000;

}

.hero-card .video-testi {
  padding: 20px!important;
}

.pricing-box{

position:sticky;

top:130px;

background:white;

padding:45px;

border-radius:35px;

text-align:center;

box-shadow:

0 40px 120px rgba(0,0,0,.12);

position:relative;

overflow:hidden;

}

.popular-tag{

position:absolute;

top:20px;

right:-45px;

background:#FF8A00;

color:white;

padding:8px 55px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

}

.old-value{

font-size:58px;

text-decoration:line-through;

color:#bbb;

font-weight:700;

margin-top:30px;

}

.arrow-down{

font-size:70px;

font-weight:800;

color:#6C3CF0;

line-height:1;

}

.new-value{

font-size:90px;

font-weight:800;

color:#FF8A00;

}

.price-features{

text-align:left;

margin:35px 0;

display:grid;

gap:18px;

}

.btn-register-price{

display:block;

padding:20px;

background:linear-gradient(135deg,#6C3CF0,#8B5CF6);

color:white;

font-weight:700;

border-radius:60px;

transition:.35s;

}

.btn-register-price:hover{

transform:translateY(-6px);

color:white;

}

.secure-box{

margin-top:25px;

padding:18px;

background:#F7F8FC;

border-radius:20px;

font-weight:600;

}

/* VALUE SECTION */

.value-box{

background:white;

padding:60px;

border-radius:35px;

box-shadow:0 40px 100px rgba(0,0,0,.08);

}

.value-tag{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:#FFF4E8;

color:#FF8A00;

font-weight:700;

}

.value-list{

display:grid;

gap:18px;

font-weight:600;

font-size:18px;

}

.saving-circle{

width:260px;

height:260px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#6C3CF0,#9A63FF);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:white;

box-shadow:0 30px 80px rgba(108,60,240,.35);

}

.saving-circle h1{

font-size:70px;

font-weight:800;

margin:5px 0;

}

/* GUARANTEE */

.guarantee-box{

background:linear-gradient(135deg,#F9FAFB,#ffffff);

padding:45px;

border-radius:30px;

border:2px dashed rgba(108,60,240,.25);

}

.guarantee-icon{

width:110px;

height:110px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#6C3CF0,#9A63FF);

display:flex;

align-items:center;

justify-content:center;

font-size:52px;

color:white;

}

/* FINAL CTA */

.bonus-final-cta{

background:

linear-gradient(

135deg,

#6C3CF0,

#7B4FFF,

#A855F7);

padding:80px 50px;

border-radius:40px;

text-align:center;

overflow:hidden;

position:relative;

}

.offer-price{

display:flex;

justify-content:center;

align-items:center;

gap:30px;

margin-bottom:40px;

}

.offer-old{

font-size:55px;

text-decoration:line-through;

color:#ddd;

font-weight:700;

}

.offer-arrow{

font-size:70px;

font-weight:800;

color:white;

}

.offer-new{

font-size:90px;

font-weight:800;

color:#FFD54F;

}

.offer-btn{

display:inline-block;

padding:22px 60px;

background:white;

color:#6C3CF0;

border-radius:70px;

font-size:20px;

font-weight:700;

transition:.35s;

box-shadow:0 25px 60px rgba(0,0,0,.2);

}

.offer-btn:hover{

transform:translateY(-8px);

color:#6C3CF0;

}

.offer-note{

font-size:16px;

color:white;

opacity:.9;

}




.review-section {
  background: #f4f4f4;
  padding: 70px 0;
}

.container-review {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title-review {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* ===== LAYOUT ===== */
.review-layout {
  display: flex;
  gap: 40px;
}

.google-summary {
  width: 25%;
}



/* ===== GOOGLE SUMMARY ===== */
.google-summary-inner {
  display: flex;
  gap: 15px;
}

.owner-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.google-summary h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.rating-score {
  font-size: 20px;
  font-weight: 700;
  color: #f57c00;
  margin-right: 6px;
}

.stars {
  color: #f57c00;
  font-size: 13px;
}

.powered {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  display: flex;
  align-items: center;
}

.powered img {
  width: 45px;
  margin-left: 5px;
}

/* ===== REVIEW CARD (FIXED SIZE) ===== */
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 250px;           /* FIXED HEIGHT */
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.review-header h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.review-header span {
  font-size: 11px;
  color: #888;
}

.review-text {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  overflow-y: auto;        /* INTERNAL SCROLL */
  flex: 1;
}

.google-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
}

/* ===== SWIPER CUSTOM ===== */
.swiper {
  padding-bottom: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #f57c00;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: large;
}

.swiper-pagination-bullet-active {
  background: #f57c00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .review-layout {
    flex-direction: column;
  }
  .google-summary,
  .review-slider {
    width: 100%;
  }

  /* Navbar */
  .navbar {
    padding: 12px 18px;
    width: 94%;
  }
  .logo {
    font-size: 24px;
  }
  .nav-link {
    margin-left: 16px;
  }

  /* Hero */
  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
    margin: 20px 0;
  }
  .hero-desc {
    font-size: 17px;
    line-height: 1.7;
  }
  .hero-buttons {
    gap: 14px;
    margin-top: 30px;
  }
  .btn-primary-lg {
    padding: 15px 30px;
    font-size: 16px;
  }
  .btn-outline-lg {
    padding: 15px 28px;
  }

  /* Floating badges overlap the hero image and can push off-screen
     on narrow viewports because of their negative left/right offsets */
  .floating-review {
    left: 0;
    bottom: -15px;
    padding: 12px 16px;
  }
  .floating-rating {
    right: 0;
    top: -15px;
    padding: 12px 16px;
  }

  /* Pricing / value sections use very large desktop-only font sizes */
  .pricing-box {
    padding: 30px 20px;
  }
  .old-value {
    font-size: 38px;
  }
  .arrow-down {
    font-size: 44px;
  }
  .new-value {
    font-size: 56px;
  }
  .value-box {
    padding: 30px 22px;
  }
  .saving-circle {
    width: 190px;
    height: 190px;
  }
  .saving-circle h1 {
    font-size: 46px;
  }

  /* Hide the mouse-follow glow: it only makes sense with a real cursor
     and just burns battery/CPU on touch devices */
  #cursor-glow {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary-lg,
  .btn-outline-lg {
    width: 100%;
    text-align: center;
  }
  .floating-review,
  .floating-rating {
    position: static;
    display: inline-block;
    margin: 8px 6px 0 0;
  }
  .new-value {
    font-size: 42px;
  }
  .old-value {
    font-size: 28px;
  }
  .saving-circle {
    width: 160px;
    height: 160px;
  }
  .saving-circle h1 {
    font-size: 36px;
  }
}

/* Respect users who've asked for reduced motion (accessibility +
   avoids janky animation on low-end phones) */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Touch devices never fire real mousemove the way a desktop cursor does */
@media (hover: none) {
  #cursor-glow {
    display: none;
  }
}

/* ===== LAZY-LOAD VIDEO FACADE (click-to-play testimonials) ===== */
.lazy-video {
  position: relative;
  background-color: #2b1a52;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* Darkening layer so the play button/label stay readable over any
   poster photo behind them. If no poster image exists, this sits
   on top of the purple gradient set inline via data-poster so it
   never looks like a plain empty box. */
.lazy-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}

.lazy-video.is-playing::after {
  display: none;
}

.lazy-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.lazy-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #6C3CF0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 3;
}

.lazy-video-play:hover {
  transform: translate(-50%, -60%) scale(1.08);
  background: #fff;
}

.lazy-video-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .lazy-video-play {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
  .lazy-video-label {
    font-size: 12px;
    bottom: 12px;
  }
}

/* ============================================================================
   ★★★  PREMIUM AGENCY UPGRADE LAYER  ★★★
   Appended, non-destructive overrides that lift the page from ~9/10 to a
   premium SaaS / Webflow-agency finish. Structure, content and colours are
   preserved — this layer only refines spacing, depth, glass, motion and
   micro-interactions. Every major block is commented below.
   ============================================================================ */

/* ------------------------------------------------------------------
   1. SCROLL PROGRESS BAR  (top-of-page micro-interaction)
   ------------------------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 100000;
  background: linear-gradient(90deg, #6c3cf0, #a855f7, #ff8a00);
  box-shadow: 0 0 14px rgba(108, 60, 240, 0.55);
  border-radius: 0 4px 4px 0;
  transition: width 0.1s linear;
}

/* ------------------------------------------------------------------
   2. NAVBAR  — reduced height, deeper glass, refined shadow + scroll state
   ------------------------------------------------------------------ */
.navbar {
  top: 14px;
  padding: 11px 26px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  backdrop-filter: blur(26px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
}
.navbar.scrolled {
  top: 8px;
  padding: 8px 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.13);
}
.logo {
  font-size: 26px;
  letter-spacing: -0.5px;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
/* animated underline on nav links */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transition: width 0.35s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.btn-register {
  padding: 12px 30px;
}

/* ------------------------------------------------------------------
   3. BUTTONS  — animated arrow, shine sweep + stronger glow/lift on every CTA
   ------------------------------------------------------------------ */
/* animated arrow on the primary buttons (icon already sits at the start) */
.btn-primary-lg::after {
  content: "\2192";
  font-size: 20px;
  display: inline-block;
  transition: transform 0.35s ease;
}
.btn-primary-lg:hover::after {
  transform: translateX(6px);
}

/* give the remaining CTAs the same premium shine sweep + lift */
.btn-register-price,
.offer-btn,
.hero-register a,
.footer-cta {
  position: relative;
  overflow: hidden;
}
.btn-register-price::after,
.offer-btn::after,
.hero-register a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 130%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
}
.btn-register-price:hover::after,
.offer-btn:hover::after,
.hero-register a:hover::after {
  left: 130%;
}
.btn-register-price:hover {
  box-shadow: 0 30px 70px rgba(108, 60, 240, 0.45);
}

/* ------------------------------------------------------------------
   4. HERO  — trainer as primary visual: layered glow, deeper float,
      pricing card overlapping the trainer + premium trust strip
   ------------------------------------------------------------------ */
/* blurred purple glow blob behind the trainer (layered depth) */
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(108, 60, 240, 0.38), transparent 62%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: heroFloat 9s ease-in-out infinite;
}
/* trainer: bigger, richer drop shadow, kept fully visible (never cropped) */
.hero-girl {
  width: 470px;
  right: -110px;
  bottom: -60px;
  filter: drop-shadow(0 45px 70px rgba(108, 60, 240, 0.28));
}
/* pricing card sits above and partially overlaps the trainer */
.hero-card {
  z-index: 5;
}

/* premium glass trust badges below the hero CTA */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.trust-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.trust-pill i {
  color: var(--primary);
}
.trust-pill .tp-stars {
  color: #ffb400;
  letter-spacing: 1px;
}

/* ------------------------------------------------------------------
   5. CARDS  — consistent radius, refined glass, image hover zoom
   ------------------------------------------------------------------ */
.hero-card {
  border-radius: 32px;
}
/* subtle zoom on framed section images (mentor / why-nlp / problem, etc.) */
img.rounded-5 {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
img.rounded-5:hover {
  transform: scale(1.03);
}

/* ------------------------------------------------------------------
   6. MENTOR SECTION  — gradient backdrop, glow behind portrait,
      quote block + professional signature area
   ------------------------------------------------------------------ */
#mentor {
  background: linear-gradient(135deg, #f6f2ff 0%, #eef4ff 55%, #ffffff 100%);
}
/* soft purple glow behind the mentor portrait */
#mentor .col-lg-5 .position-relative::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 40%, rgba(108, 60, 240, 0.22), transparent 68%);
  filter: blur(55px);
  z-index: 0;
  border-radius: 50%;
}
#mentor .col-lg-5 .position-relative > img {
  position: relative;
  z-index: 1;
}
.mentor-quote {
  margin-top: 42px;
  padding: 34px 38px;
  border-radius: 26px;
  background: rgba(108, 60, 240, 0.06);
  border-left: 5px solid var(--primary);
  position: relative;
}
.mentor-quote > i {
  color: var(--primary);
  opacity: 0.4;
  font-size: 30px;
}
.mentor-quote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin: 14px 0 22px;
}
.mentor-sign .sign-name {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.mentor-sign .sign-role {
  font-size: 14px;
  color: var(--text);
}

/* ------------------------------------------------------------------
   7. PRICING CARD  — premium checkout feel: more glow, gradient ribbon,
      animated saving circle
   ------------------------------------------------------------------ */
.pricing-box {
  border: 1px solid rgba(108, 60, 240, 0.12);
  box-shadow: 0 45px 120px rgba(108, 60, 240, 0.2);
}
.pricing-box::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(108, 60, 240, 0.28), transparent 68%);
  filter: blur(45px);
  z-index: 0;
}
.pricing-box > * {
  position: relative;
  z-index: 1;
}
/* upgrade the corner ribbon into a gradient badge */
.popular-tag {
  background: linear-gradient(135deg, #ff8a00, #ff5e00);
  box-shadow: 0 6px 22px rgba(255, 138, 0, 0.45);
  letter-spacing: 0.5px;
}
/* animated "you save" circle */
.saving-circle {
  animation: savingPulse 3.2s ease-in-out infinite;
}
@keyframes savingPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(108, 60, 240, 0.35);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 42px 105px rgba(108, 60, 240, 0.5);
  }
}

/* ------------------------------------------------------------------
   8. GOOGLE REVIEWS  — bigger gradient rating + softer, rounder cards
   ------------------------------------------------------------------ */
#reviews .display-2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-card {
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06) !important;
}

/* ------------------------------------------------------------------
   9. FAQ  — redesigned accordion: rounded, spaced, hover + animated icon
   ------------------------------------------------------------------ */
#faqAccordion {
  box-shadow: none !important;
  background: transparent;
  overflow: visible !important;
}
#faqAccordion .accordion-item {
  border: 1px solid rgba(108, 60, 240, 0.12) !important;
  border-radius: 20px !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#faqAccordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(108, 60, 240, 0.12);
}
#faqAccordion .accordion-button {
  padding: 22px 26px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 20px !important;
}
#faqAccordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(108, 60, 240, 0.06);
  box-shadow: none;
}
#faqAccordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#faqAccordion .accordion-button::after {
  transition: transform 0.4s ease;
}
#faqAccordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) scale(1.1);
}
#faqAccordion .accordion-body {
  padding: 0 26px 24px;
  color: var(--text);
  line-height: 1.85;
}

/* ------------------------------------------------------------------
   10. FOOTER  — dark premium finish, gradient hairline, CTA + link hovers
   ------------------------------------------------------------------ */
footer.bg-black {
  background: linear-gradient(180deg, #0a0a12, #000000) !important;
  position: relative;
}
footer.bg-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 60, 240, 0.65), transparent);
}
footer a.text-secondary {
  transition: color 0.3s ease;
}
footer a.text-secondary:hover {
  color: #a855f7 !important;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 30px;
  border-radius: 60px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(108, 60, 240, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.footer-cta:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 26px 60px rgba(108, 60, 240, 0.5);
}
.footer-cta i {
  transition: transform 0.35s ease;
}
.footer-cta:hover i {
  transform: translateX(5px);
}

/* ------------------------------------------------------------------
   11. STICKY MOBILE CTA  — persistent conversion bar on phones
   ------------------------------------------------------------------ */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.12);
}
.mobile-sticky-cta .msc-price span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
}
.mobile-sticky-cta .msc-price strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.msc-btn {
  flex: 1;
  max-width: 62%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(108, 60, 240, 0.35);
}

/* ------------------------------------------------------------------
   12. RESPONSIVE POLISH  — mobile spacing, no overflow, proper stacking
   ------------------------------------------------------------------ */
@media (max-width: 992px) {
  /* stack the trainer image cleanly instead of floating/overlapping */
  .hero-girl {
    position: static;
    width: 78%;
    max-width: 360px;
    margin: 0 auto 26px;
    display: block;
    animation: none;
  }
  .hero-image-wrapper {
    flex-direction: column;
  }
  .hero-image-wrapper::before {
    width: 340px;
    height: 340px;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .mentor-quote {
    padding: 26px 24px;
  }
  .mentor-quote p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
  /* swap the corner button for the full-width sticky bar */
  .mobile-sticky-cta {
    display: flex;
  }
  .floating-register-btn {
    display: none !important;
  }
  /* keep footer content clear of the sticky bar */
  footer.bg-black {
    padding-bottom: 96px !important;
  }
  .hero-trust-strip {
    gap: 8px;
  }
  .trust-pill {
    font-size: 12.5px;
    padding: 9px 14px;
  }
}