@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root{
  --ink:#161616;
  --muted:#5f6368;
  --cream:#fff8ed;
  --yellow:#ffd86b;
  --green:#c9f0d7;
  --blue:#cfe6ff;
  --orange:#ff7a1a;
  --line:#ece4d8;
}

*{box-sizing:border-box;scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--cream);
  color:var(--ink);
}

.site-header{
  height:76px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,248,237,.94);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--ink);
  font-weight:900;
  font-size:22px;
}

.brand-mark{
  width:38px;
  height:38px;
  border:2px solid var(--ink);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:white;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  font-weight:800;
  font-size:15px;
}

.nav-links a{
  text-decoration:none;
  color:var(--ink);
}

.outline-btn{
  border:2px solid var(--ink);
  padding:10px 18px;
  border-radius:999px;
  background:white;
}

.menu-button{
  display:none;
  background:white;
  border:2px solid var(--ink);
  border-radius:12px;
  padding:7px 12px;
  font-size:22px;
}

.hero{
  min-height:660px;
  padding:80px 7% 40px;
  display:grid;
  grid-template-columns:1fr minmax(300px,760px) 1fr;
  align-items:center;
  gap:22px;
  text-align:center;
  position:relative;
}

.hero-content h1{
  font-size:clamp(54px,8vw,108px);
  line-height:.9;
  letter-spacing:-5px;
  margin:0;
}

.hero-content h2{
  font-size:clamp(38px,5.3vw,74px);
  line-height:1;
  letter-spacing:-3px;
  color:var(--orange);
  margin:8px 0 26px;
}

.hero-content p{
  font-size:20px;
  line-height:1.65;
  color:#3f3f3f;
  max-width:720px;
  margin:0 auto 30px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.primary-btn,.secondary-btn{
  text-decoration:none;
  padding:15px 24px;
  border-radius:999px;
  font-weight:900;
  border:2px solid var(--ink);
}

.primary-btn{
  background:var(--orange);
  color:white;
  box-shadow:5px 5px 0 var(--ink);
}

.secondary-btn{
  background:white;
  color:var(--ink);
}

.floating-avatars{
  display:grid;
  gap:18px;
  justify-content:center;
}

.floating-avatars span{
  width:74px;
  height:74px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:2px solid var(--ink);
  background:white;
  font-weight:900;
  box-shadow:4px 4px 0 rgba(0,0,0,.12);
}

.left span:nth-child(1),.right span:nth-child(2){background:var(--yellow)}
.left span:nth-child(2),.right span:nth-child(3){background:var(--green)}
.left span:nth-child(3),.right span:nth-child(1){background:var(--blue)}

.stats{
  margin:0 7% 70px;
  background:white;
  border:2px solid var(--ink);
  border-radius:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  overflow:hidden;
  box-shadow:7px 7px 0 rgba(0,0,0,.12);
}

.stats div{
  padding:28px;
  text-align:center;
  border-right:2px solid var(--ink);
}

.stats div:last-child{border-right:0}

.stats strong{
  font-size:46px;
  display:block;
  line-height:1;
}

.stats span{
  color:var(--muted);
  font-weight:800;
}

.section{
  padding:80px 7%;
}

.intro{
  max-width:900px;
  text-align:center;
}

.intro p{
  font-size:34px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-1.6px;
  margin:0 0 18px;
}

.intro span{
  color:var(--muted);
  font-weight:800;
}

.section-heading{
  max-width:780px;
  margin:0 auto 42px;
  text-align:center;
}

.section-heading h2{
  font-size:clamp(38px,5vw,68px);
  line-height:1;
  letter-spacing:-3px;
  margin:0 0 14px;
}

.section-heading p{
  font-size:19px;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

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

.program-card{
  border:2px solid var(--ink);
  border-radius:28px;
  padding:30px;
  box-shadow:7px 7px 0 rgba(0,0,0,.14);
}

.program-card.yellow{background:#fff1b8}
.program-card.green{background:#d7f6df}
.program-card.blue{background:#d8ecff}

.illustration{
  font-size:54px;
}

.program-card h3{
  font-size:28px;
  letter-spacing:-1px;
  margin:18px 0 12px;
}

.program-card p,.program-card li{
  color:#3e3e3e;
  line-height:1.55;
  font-weight:650;
}

.program-card a{
  display:inline-block;
  margin-top:14px;
  font-weight:900;
  color:var(--ink);
}

.peer-section{
  margin:50px 7%;
  padding:55px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  background:white;
  border:2px solid var(--ink);
  border-radius:34px;
  box-shadow:8px 8px 0 rgba(0,0,0,.12);
}

.peer-section h2{
  font-size:56px;
  line-height:1;
  letter-spacing:-2.5px;
  margin:0 0 16px;
}

.peer-section p{
  font-size:19px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:28px;
}

.support-visual{
  min-height:360px;
  position:relative;
  border:2px solid var(--ink);
  border-radius:34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,216,107,.75), transparent 13rem),
    radial-gradient(circle at 80% 35%, rgba(207,230,255,.95), transparent 13rem),
    linear-gradient(135deg,#ffffff,#fff7e7);
  overflow:hidden;
  box-shadow:7px 7px 0 rgba(0,0,0,.12);
}

.support-visual:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:var(--yellow);
  right:-70px;
  bottom:-80px;
  border:2px solid var(--ink);
}

.tutor-card.main{
  position:absolute;
  left:38px;
  top:48px;
  right:38px;
  display:flex;
  gap:18px;
  align-items:center;
  background:white;
  border:2px solid var(--ink);
  border-radius:26px;
  padding:24px;
  box-shadow:6px 6px 0 rgba(0,0,0,.12);
  z-index:2;
}

.avatar{
  width:78px;
  height:78px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  border:2px solid var(--ink);
  font-size:38px;
  flex-shrink:0;
}

.tutor-card h3{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.8px;
}

.tutor-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-weight:700;
}

.mini-card{
  position:absolute;
  z-index:3;
  background:white;
  border:2px solid var(--ink);
  border-radius:999px;
  padding:16px 22px;
  font-weight:900;
  box-shadow:5px 5px 0 rgba(0,0,0,.12);
}

.mini-card.price{
  right:42px;
  top:170px;
  background:var(--green);
}

.mini-card.hours{
  left:55px;
  bottom:55px;
  background:var(--blue);
}

.mini-card.subjects{
  right:55px;
  bottom:58px;
  background:var(--yellow);
}

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

blockquote{
  margin:0;
  background:white;
  border:2px solid var(--ink);
  border-radius:24px;
  padding:28px;
  font-size:19px;
  line-height:1.5;
  font-weight:800;
  box-shadow:6px 6px 0 rgba(0,0,0,.1);
}

cite{
  display:block;
  margin-top:18px;
  color:var(--orange);
  font-style:normal;
}

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

.how-grid div{
  text-align:center;
  background:white;
  border:2px solid var(--ink);
  border-radius:26px;
  padding:30px;
}

.how-grid span{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  background:var(--orange);
  color:white;
  border:2px solid var(--ink);
  border-radius:50%;
  font-weight:900;
}

.how-grid p{
  color:var(--muted);
  line-height:1.5;
  font-weight:650;
}

.faq{
  padding:80px 7%;
}

details{
  max-width:850px;
  margin:14px auto;
  background:white;
  border:2px solid var(--ink);
  border-radius:18px;
  padding:20px 24px;
}

summary{
  cursor:pointer;
  font-weight:900;
}

details p{
  color:var(--muted);
  line-height:1.6;
}

.contact{
  margin:60px 7% 80px;
  background:#161616;
  color:white;
  border-radius:34px;
  padding:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  border:2px solid #161616;
}

.contact h2{
  font-size:56px;
  line-height:1;
  letter-spacing:-2.5px;
  margin:0 0 18px;
}

.contact p{
  color:#d4d4d4;
  font-size:19px;
}

form{
  display:grid;
  gap:14px;
}

input,select,textarea{
  padding:16px;
  border-radius:14px;
  border:2px solid transparent;
  font:inherit;
}

textarea{min-height:110px}

button{
  padding:16px;
  border:2px solid white;
  border-radius:999px;
  background:var(--orange);
  color:white;
  font-weight:900;
  font:inherit;
  cursor:pointer;
}

#formMessage{
  margin:0;
  color:white;
  font-weight:900;
}

footer{
  padding:38px 7%;
  background:white;
  border-top:1px solid var(--line);
  text-align:center;
}

footer strong{
  font-size:24px;
}

footer p{
  color:var(--muted);
  margin-bottom:0;
}

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

  .floating-avatars{
    display:flex;
  }

  .program-grid,.story-grid,.how-grid,.peer-section,.contact{
    grid-template-columns:1fr;
  }

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

  .stats div{
    border-right:0;
    border-bottom:2px solid var(--ink);
  }

  .stats div:last-child{
    border-bottom:0;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:76px;
    left:5%;
    right:5%;
    background:white;
    border:2px solid var(--ink);
    border-radius:18px;
    padding:20px;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links.open{
    display:flex;
  }

  .menu-button{
    display:block;
  }
}

@media(max-width:620px){
  .site-header{
    padding:0 5%;
  }

  .hero,.section,.faq{
    padding-left:5%;
    padding-right:5%;
  }

  .hero-content h1{
    letter-spacing:-3px;
  }

  .peer-section,.contact,.stats{
    margin-left:5%;
    margin-right:5%;
    padding:28px;
  }

  .peer-section h2,.contact h2{
    font-size:40px;
  }

  .support-visual{
    min-height:360px;
  }

  .tutor-card.main{
    left:20px;
    right:20px;
    top:25px;
    padding:18px;
  }

  .mini-card.price{
    top:190px;
    right:18px;
  }

  .mini-card.hours{
    left:18px;
    bottom:70px;
  }

  .mini-card.subjects{
    right:18px;
    bottom:20px;
  }
}


.floating-avatars span{
  animation: floatSmooth 6s ease-in-out infinite;
}

.floating-avatars span:nth-child(2){
  animation-delay: 1.5s;
}

.floating-avatars span:nth-child(3){
  animation-delay: 3s;
}

@keyframes floatSmooth{
  0%{
    transform: translateY(0px) rotate(0deg);
  }
  25%{
    transform: translateY(-10px) rotate(1deg);
  }
  50%{
    transform: translateY(0px) rotate(0deg);
  }
  75%{
    transform: translateY(8px) rotate(-1deg);
  }
  100%{
    transform: translateY(0px) rotate(0deg);
  }
}


.highlight{
  position:relative;
  display:inline-block;
  z-index:1;
  padding:0 .08em;
}

.highlight:before,
.highlight:after{
  content:"";
  position:absolute;
  left:-.08em;
  right:-.08em;
  z-index:-1;
  pointer-events:none;
}

.highlight:before{
  height:.28em;
  bottom:.06em;
  background:rgba(255,216,77,.9);
  border-radius:999px 18px 999px 20px;
  transform:rotate(-.7deg) skewX(-8deg);
}

.highlight:after{
  height:.18em;
  bottom:.19em;
  left:.03em;
  right:.04em;
  background:rgba(255,197,43,.42);
  border-radius:28px 999px 22px 999px;
  transform:rotate(.45deg) skewX(6deg);
}


/* Clean title accent: no marker block, just an elegant underline */
.highlight{
  position:relative;
  display:inline-block;
  z-index:1;
  padding:0 .02em;
}

.highlight:before{
  content:"";
  position:absolute;
  left:.04em;
  right:.04em;
  bottom:-.04em;
  height:.08em;
  background:var(--orange);
  border-radius:999px;
  z-index:-1;
}

.highlight:after{
  content:"";
  position:absolute;
  right:-.12em;
  bottom:-.07em;
  width:.14em;
  height:.14em;
  background:var(--orange);
  border-radius:50%;
  z-index:-1;
}


.hero-description{
  max-width:720px;
  margin:30px auto 0;
  padding:24px 28px;
  background:rgba(255,255,255,.75);
  border:1.5px solid rgba(0,0,0,.08);
  border-radius:26px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.hero-description-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#ff7a1a;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  flex-shrink:0;
}

.hero-description p{
  margin:0;
  font-size:20px;
  line-height:1.65;
  color:#333;
  text-align:left;
}

.hero-description strong{
  color:#ff7a1a;
  font-weight:900;
}

.highlight{
  position:relative;
  display:inline-block;
}

.highlight::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:16px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='14' viewBox='0 0 300 14'%3E%3Cpath d='M4 10C65 4 120 13 180 8C223 4 265 5 296 8' stroke='%23ff7a1a' stroke-width='8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size:100% 100%;
}

@media(max-width:620px){
  .hero-description{
    padding:18px;
    gap:14px;
  }

  .hero-description p{
    font-size:17px;
  }

  .hero-description-icon{
    width:44px;
    height:44px;
    font-size:20px;
  }
}


/* Smooth hover animations */
.primary-btn,
.secondary-btn,
.outline-btn,
button{
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .22s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.primary-btn:hover{
  background:#ff9a4d;
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 12px 28px rgba(255,122,26,.28);
}

.secondary-btn:hover{
  background:#161616;
  color:white;
  transform:translateY(-3px);
}

.outline-btn:hover{
  background:#161616;
  color:white !important;
  transform:translateY(-2px);
}

button:hover{
  background:#ff9a4d;
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 12px 28px rgba(255,122,26,.25);
}

/* Navigation hover */
.nav-links a{
  transition:color .2s ease, opacity .2s ease;
}

.nav-links a:hover{
  color:#ff7a1a;
}


/* Slow elegant dim-on/dim-off effect for the $60/month underline */
.highlight::after{
  animation: elegantHighlightPulse 5.5s ease-in-out infinite;
  transform-origin:center;
}

@keyframes elegantHighlightPulse{
  0%, 100%{
    opacity:.45;
    filter:saturate(.85);
  }
  50%{
    opacity:1;
    filter:saturate(1.1);
  }
}


.hero-offer{
  max-width:760px;
  margin:34px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.offer-card{
  background:rgba(255,255,255,.85);
  border:1.5px solid rgba(0,0,0,.08);
  border-radius:24px;
  padding:22px 26px;
  display:flex;
  align-items:center;
  gap:18px;
  text-align:left;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  backdrop-filter:blur(10px);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.offer-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.09);
  border-color:rgba(255,122,26,.22);
}

.offer-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#ff7a1a;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  flex-shrink:0;
}

.offer-card strong{
  display:block;
  font-size:42px;
  line-height:1;
  letter-spacing:-1.5px;
  color:#161616;
}

.offer-card span{
  display:block;
  margin-top:6px;
  font-size:20px;
  line-height:1.15;
  font-weight:900;
  color:#4b5563;
}

.offer-card .large-label{
  font-size:32px;
  color:#ff6b0a;
  letter-spacing:-1px;
}

@media(max-width:700px){
  .hero-offer{
    grid-template-columns:1fr;
  }

  .offer-card strong{
    font-size:36px;
  }

  .offer-card .large-label{
    font-size:28px;
  }
}


.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:nowrap;
  margin-top:30px;
}

.hero-buttons a{
  min-width:210px;
  text-align:center;
}

@media(max-width:640px){
  .hero-buttons{
    flex-wrap:wrap;
  }
}


/* Center hero offer cards */
.hero-offer{
  display:flex !important;
  justify-content:center;
  align-items:center;
  gap:22px;
  margin:36px auto 28px;
  width:100%;
}

/* Center buttons directly underneath */
.hero-buttons{
  width:100%;
  display:flex !important;
  justify-content:center !important;
  align-items:center;
  gap:18px;
  margin:28px auto 0;
}

/* Center quote section */
.intro{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin:0 auto;
}

.intro p{
  max-width:980px;
  margin:0 auto 18px;
}

@media(max-width:700px){

  .hero-offer{
    flex-direction:column;
  }

  .hero-buttons{
    flex-wrap:wrap;
  }
}


.hero-buttons{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:20px;
  margin:42px auto 0 !important;
  width:100%;
}

.hero-buttons a{
  min-width:220px;
  text-align:center;
}

@media(max-width:640px){
  .hero-buttons{
    flex-wrap:wrap;
  }
}


/* FINAL HERO FIX */
.hero{
  min-height:auto !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:center !important;
  text-align:center !important;
  gap:0 !important;
  padding-top:90px !important;
  padding-bottom:70px !important;
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:900px;
}

.floating-avatars.left{
  position:absolute;
  left:11%;
  top:290px;
}

.floating-avatars.right{
  position:absolute;
  right:11%;
  top:290px;
}

.hero-buttons{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:18px !important;
  margin-top:40px !important;
}

.hero-buttons a{
  min-width:230px;
}

@media(max-width:900px){

  .floating-avatars.left,
  .floating-avatars.right{
    display:none !important;
  }

  .hero-buttons{
    flex-wrap:wrap;
  }
}


/* CLEAN FINAL HERO LAYOUT */
.hero{
  min-height:680px !important;
  padding:80px 7% 55px !important;
  display:grid !important;
  grid-template-columns:1fr minmax(320px,760px) 1fr !important;
  align-items:center !important;
  justify-items:center !important;
  gap:24px !important;
  text-align:center !important;
  position:relative !important;
}

.hero-content{
  max-width:760px !important;
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
}

.hero-content h1{
  margin:0 !important;
}

.hero-content h2{
  margin:14px 0 0 !important;
}

.hero-buttons{
  display:flex !important;
  flex-direction:row !important;
  justify-content:center !important;
  align-items:center !important;
  gap:18px !important;
  margin:44px auto 0 !important;
  width:100% !important;
}

.hero-buttons a{
  min-width:220px !important;
  text-align:center !important;
}

.floating-avatars{
  display:grid !important;
  gap:18px !important;
  justify-content:center !important;
}

.floating-avatars.left,
.floating-avatars.right{
  position:static !important;
}

.hero-offer,
.offer-card,
.hero-description{
  display:none !important;
}

.stats strong:nth-child(1){
  font-size:46px !important;
}

@media(max-width:950px){
  .hero{
    grid-template-columns:1fr !important;
    min-height:auto !important;
  }

  .floating-avatars{
    display:flex !important;
    margin:10px 0 !important;
  }
}

@media(max-width:640px){
  .hero-buttons{
    flex-wrap:wrap !important;
  }
}


/* SALES EMPHASIS SECTION */
.sales-strip{
  margin:34px auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

.sales-card{
  background:rgba(255,255,255,.92);
  border:2px solid #161616;
  border-radius:28px;
  padding:26px 34px;
  min-width:280px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.sales-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 42px rgba(0,0,0,.12);
}

.sales-card.primary{
  background:linear-gradient(135deg,#fff7d6,#ffffff);
}

.sales-card.secondary{
  background:linear-gradient(135deg,#fff0e5,#ffffff);
}

.sales-big{
  font-size:58px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-2px;
  color:#161616;
}

.sales-small{
  margin-top:10px;
  font-size:26px;
  font-weight:900;
  letter-spacing:-1px;
  color:#4b5563;
}

.sales-small.emphasis{
  color:#ff7a1a;
  font-size:36px;
}

.sales-divider{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#ff7a1a;
}

@media(max-width:700px){

  .sales-strip{
    gap:18px;
  }

  .sales-card{
    min-width:unset;
    width:100%;
    max-width:360px;
    text-align:center;
  }

  .sales-big{
    font-size:48px;
  }

  .sales-small{
    font-size:22px;
  }

  .sales-small.emphasis{
    font-size:30px;
  }

  .sales-divider{
    display:none;
  }
}


/* Larger floating subject circles */
.floating-avatars span{
  width:96px !important;
  height:96px !important;
  font-size:28px !important;
  font-weight:900 !important;
  border-width:3px !important;
  box-shadow:0 10px 22px rgba(0,0,0,.12) !important;
}

.floating-avatars{
  gap:26px !important;
}

@media(max-width:900px){
  .floating-avatars span{
    width:82px !important;
    height:82px !important;
    font-size:24px !important;
  }
}


/* Elegant hover tooltips */
.floating-avatars span{
  position:relative;
  cursor:default;
}

.floating-avatars span::after{
  content:attr(data-tooltip);
  position:absolute;
  left:50%;
  bottom:-58px;
  transform:translateX(-50%) translateY(8px);
  background:#161616;
  color:white;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:all .25s ease;
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}

.floating-avatars span:hover::after{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}


/* Tooltip focus mode: when one circle is hovered, fade the others away */
.hero:has(.floating-avatars span:hover) .floating-avatars span{
  opacity:0;
  transform:scale(.82);
  pointer-events:none;
}

.hero:has(.floating-avatars span:hover) .floating-avatars span:hover{
  opacity:1;
  transform:scale(1.08);
  pointer-events:auto;
  z-index:50;
}

/* Keep tooltip clearly visible above everything */
.floating-avatars span::after{
  z-index:100;
  bottom:-64px;
  font-size:15px;
  padding:12px 16px;
}

/* Move left-side tooltip slightly to the right so it does not collide */
.floating-avatars.left span::after{
  left:115%;
  bottom:50%;
  transform:translateY(50%) translateX(8px);
}

.floating-avatars.left span:hover::after{
  transform:translateY(50%) translateX(0);
}

/* Move right-side tooltip slightly to the left */
.floating-avatars.right span::after{
  left:auto;
  right:115%;
  bottom:50%;
  transform:translateY(50%) translateX(-8px);
}

.floating-avatars.right span:hover::after{
  transform:translateY(50%) translateX(0);
}


/* Smooth elegant fading for floating circles */
.floating-avatars span{
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22,1,.36,1),
    filter .55s ease,
    box-shadow .35s ease;
}

.hero:has(.floating-avatars span:hover) .floating-avatars span{
  opacity:.12;
  transform:scale(.88);
  filter:blur(.5px);
}

.hero:has(.floating-avatars span:hover) .floating-avatars span:hover{
  opacity:1;
  transform:scale(1.08);
  filter:blur(0);
}


/* Mobile fix: keep subject circles visible under the hero title */
@media(max-width:950px){

  .hero{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:22px !important;
  }

  .floating-avatars{
    display:flex !important;
    flex-direction:row !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:14px !important;
    width:100% !important;
    margin:8px auto !important;
    order:2;
  }

  .floating-avatars.left,
  .floating-avatars.right{
    position:static !important;
  }

  .hero-content{
    order:1;
  }

  .floating-avatars span{
    width:70px !important;
    height:70px !important;
    font-size:20px !important;
  }
}

@media(max-width:520px){

  .floating-avatars span{
    width:62px !important;
    height:62px !important;
    font-size:18px !important;
  }

  .floating-avatars{
    gap:10px !important;
  }
}


/* Cleaner support section visual: no redundant fake session card */
.support-visual{
  display:none !important;
}

.value-visual{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.value-card{
  background:white;
  border:2px solid var(--ink);
  border-radius:26px;
  padding:28px;
  box-shadow:6px 6px 0 rgba(0,0,0,.12);
}

.value-card.main-value{
  grid-column:1 / -1;
  background:linear-gradient(135deg,#fff1b8,#ffffff);
}

.value-label{
  display:inline-block;
  font-weight:900;
  color:#ff7a1a;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:14px;
}

.value-card strong{
  display:block;
  font-size:54px;
  line-height:1;
  letter-spacing:-2px;
}

.value-card p{
  margin:10px 0 0;
  font-size:20px;
  font-weight:800;
  color:var(--muted);
  line-height:1.35;
}

@media(max-width:700px){
  .value-visual{
    grid-template-columns:1fr;
  }

  .value-card.main-value{
    grid-column:auto;
  }

  .value-card strong{
    font-size:44px;
  }
}


/* Remove leftover mini pills from previous visual */
.mini-card,
.price,
.hours,
.subjects{
  display:none !important;
}


/* Remove underline/highlight effect under $60/month */
.highlight::after,
.highlight::before{
  display:none !important;
  content:none !important;
}


/* Elegant floating animation for $60/month */
.highlight{
  display:inline-block;
  animation: floatingTitle 4.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatingTitle{
  0%,100%{
    transform:translateY(0px);
  }
  25%{
    transform:translateY(-4px);
  }
  50%{
    transform:translateY(-8px);
  }
  75%{
    transform:translateY(-4px);
  }
}
