html{
  scroll-behavior:smooth;
  font-size:16px;
}

body.page-template-template-inot-custom{
  --color-primary:#FFD717;
  --color-accent:#d4af37;
  --color-dark:#05051F;
  --color-darker:#03030f;
  --color-panel:#0d1430;
  --color-panel-soft:rgba(21,37,55,.45);
  --color-text:#b8b8b8;
  --color-text-light:#a8b8d8;
  --color-border:rgba(212,175,55,.22);
  --transition:all .3s cubic-bezier(.25,.46,.45,.94);

  background-color:var(--color-dark);
  color:var(--color-text);
  font-family:'Poppins',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

body.page-template-template-inot-custom,
.inot-custom-page{
  overflow-x:hidden;
  max-width:100%;
}

.inot-custom-page,
.inot-custom-page *{
  box-sizing:border-box;
}

.inot-custom-page{
  font-family:'Poppins',sans-serif;
}

.inot-custom-page h1 {
  font-family:'Playfair Display',serif;
  font-size:4rem;
  color:var(--color-primary);
  margin-bottom:20px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:2px;
  line-height:1.1;
  text-shadow:2px 2px 4px rgba(0,0,0,0.5);
  }
  
.inot-custom-page h2,
.inot-custom-page h3,
.inot-custom-page .section-title h2,
.inot-custom-page .contact-form h2,
.inot-custom-page .info-item h3,
.inot-custom-page .schedule-day-badge,
.inot-custom-page .schedule-time,
.inot-custom-page .price-value{
  font-family:'Playfair Display',serif;
}

.inot-custom-page section,
.inot-custom-page div,
.inot-custom-page img{
  max-width:100%;
}

.inot-custom-page .schedule,
.inot-custom-page .program,
.inot-custom-page .faq,
.inot-custom-page .contact{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:80px 20px;
}

/* Buttons */

.inot-custom-page .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 35px;
  border:2px solid var(--color-primary);
  border-radius:999px;
  background:transparent;
  color:var(--color-primary);
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  text-decoration:none;
  cursor:pointer;
  transition:var(--transition);
}

.inot-custom-page .btn-primary{
  background:var(--color-primary);
  color:var(--color-dark);
}

.inot-custom-page .btn-primary:hover{
  background:transparent;
  color:var(--color-primary);
  box-shadow:0 0 20px rgba(255,215,23,.3);
  transform:translateY(-3px);
}

.inot-custom-page .btn-secondary{
  background:transparent;
  color:var(--color-primary);
}

.inot-custom-page .btn-secondary:hover{
  background:var(--color-primary);
  color:var(--color-dark);
  box-shadow:0 0 20px rgba(255,215,23,.3);
  transform:translateY(-3px);
}

/* Hero */

.inot-custom-page .hero{
  margin-top:70px;
  min-height:calc(100vh - 70px);
  padding:40px 20px;
  background:
    linear-gradient(135deg, rgba(5,5,31,.6) 0%, rgba(21,37,55,.6) 100%),
    url('../../images/Olimpic-club-cursuri.webp');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.inot-custom-page .hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 50%, rgba(255,215,23,.08) 0%, transparent 50%);
  pointer-events:none;
}

.inot-custom-page .hero-content{
  position:relative;
  z-index:1;
  max-width:900px;
  padding:20px;
  text-align:center;
  animation:fadeInUp 1s ease-out;
}

.inot-custom-page .hero h1{
  margin:0 0 20px;
  color:var(--color-primary);
  font-size:4rem;
  font-weight:800;
  line-height:1.1;
  letter-spacing:2px;
  text-transform:uppercase;
  text-shadow:2px 2px 4px rgba(0,0,0,.5);
}

.inot-custom-page .hero p{
  max-width:760px;
  margin:0 auto 40px;
  color:var(--color-text-light);
  font-size:1.2rem;
  line-height:1.8;
  text-shadow:1px 1px 2px rgba(0,0,0,.3);
}

.inot-custom-page .hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* Section title */

.inot-custom-page .section-title{
  margin-bottom:60px;
  text-align:center;
  animation:fadeInUp .8s ease-out;
}

.inot-custom-page .section-title h2{
  margin:0 0 15px;
  color:var(--color-primary);
  font-size:2.5rem;
  font-weight:800;
  line-height:1.15;
  letter-spacing:1px;
  text-transform:uppercase;
  text-wrap:balance;
}

.inot-custom-page .section-title p{
  max-width:700px;
  margin:0 auto;
  color:var(--color-text-light);
  font-size:1.1rem;
}

/* Schedule + Price */

.inot-custom-page .schedule-wrapper{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:24px;
  align-items:stretch;
  animation:fadeInUp .8s ease-out;
}

.inot-custom-page .schedule-container{
  width:100%;
  padding:42px 32px;
  border-radius:22px;
  background:transparent;
  border:1px solid rgba(212,175,55,.12);
  backdrop-filter:none;
  box-shadow:none;
  position:relative;
  overflow:hidden;
}

.inot-custom-page .schedule-container::before,
.inot-custom-page .schedule-container::after{
  display:none;
}

.inot-custom-page .schedule-timeline{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  position:relative;
  z-index:1;
}

.inot-custom-page .schedule-item-enhanced{
  background:rgba(255,215,23,.06);
  border:2px solid rgba(212,175,55,.22);
  border-radius:16px;
  padding:22px 16px;
  text-align:center;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  backdrop-filter:none;
}

.inot-custom-page .schedule-item-enhanced::before{
  content:'';
  position:absolute;
  top:0;
  left:-100px;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,215,23,.10), transparent);
  transition:left .6s ease;
}

.inot-custom-page .schedule-item-enhanced::after{
  content:'';
  position:absolute;
  bottom:0;
  right:0;
  width:0;
  height:0;
  background:linear-gradient(135deg, transparent, rgba(255,215,23,.08));
  border-radius:16px;
  transition:width .3s,height .3s;
}

.inot-custom-page .schedule-item-enhanced:hover{
  border-color:rgba(255,215,23,.45);
  background:rgba(255,215,23,.1);
  box-shadow:none;
  transform:translateY(-4px);
}

.inot-custom-page .schedule-item-enhanced:hover::before{
  left:100%;
}

.inot-custom-page .schedule-item-enhanced:hover::after{
  width:100%;
  height:100%;
}

.inot-custom-page .schedule-day-badge{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  color:var(--color-primary);
  font-size:1.45rem;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.inot-custom-page .schedule-time-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}

.inot-custom-page .time-icon{
  font-size:1.25rem;
  animation:pulse 2s infinite;
}

.inot-custom-page .schedule-time{
  color:var(--color-text-light);
  font-size:1.02rem;
  font-weight:600;
  letter-spacing:.2px;
  line-height:1.35;
}

.inot-custom-page .price-section{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:stretch;
}

.inot-custom-page .price-badge-enhanced{
  width:100%;
  max-width:260px;
  margin:0 auto;
  padding:22px 16px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-content:start;
  border:2px solid rgba(212,175,55,.22);
  border-radius:16px;
  background:rgba(255,215,23,.06);
  backdrop-filter:none;
  box-shadow:none;
  position:relative;
  overflow:hidden;
  transition:var(--transition);
}

.inot-custom-page .price-badge-enhanced::before,
.inot-custom-page .price-badge-enhanced::after{
  display:none;
}

.inot-custom-page .price-badge-enhanced:hover{
  border-color:rgba(255,215,23,.45);
  background:rgba(255,215,23,.1);
  box-shadow:none;
  transform:translateY(-4px);
}

.inot-custom-page .price-label-shared{
  margin:0;
  text-align:center;
}

.inot-custom-page .price-content{
  position:relative;
  z-index:1;
  width:100%;
  text-align:center;
}

.inot-custom-page .price-label{
  color:var(--color-text-light);
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.8px;
  line-height:1.35;
  margin:0;
  font-weight:700;
}

.inot-custom-page .price-amount{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:8px;
  margin-bottom:6px;
}

.inot-custom-page .currency{
  font-size:.76rem;
  color:var(--color-primary);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.inot-custom-page .price-value{
  font-size:2.2rem;
  color:var(--color-primary);
  font-weight:800;
  line-height:1;
}

.inot-custom-page .price-note{
  color:var(--color-text);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.35px;
  line-height:1.35;
  margin:0;
}

/* Program */

.inot-custom-page .program-shell{
  max-width:1200px;
  margin:0 auto;
  padding:50px 40px;
  border:1px solid rgba(212,175,55,.2);
  border-radius:18px;
  background:linear-gradient(135deg, rgba(21,37,55,.3) 0%, rgba(5,5,31,.5) 100%);
}

.inot-custom-page .program-block-title{
  margin:0 0 30px;
  color:var(--color-primary);
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.inot-custom-page .program-block-title-spaced{
  margin-top:50px;
}

.inot-custom-page .why-choose-list{
  list-style:none;
  max-width:760px;
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.inot-custom-page .why-choose-item{
  position:relative;
  padding-left:40px;
  min-height:100%;
  text-align:left;
}

.inot-custom-page .why-choose-item::before{
  content:'✓';
  position:absolute;
  top:0;
  left:0;
  color:var(--color-primary);
  font-size:24px;
  font-weight:700;
  line-height:1;
}

.inot-custom-page .why-choose-item h4{
  margin:0 0 8px;
  color:var(--color-primary);
  font-family:'Poppins',sans-serif;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
}

.inot-custom-page .why-choose-item p{
  margin:0;
  color:var(--color-text);
  font-size:1.02rem;
  line-height:1.8;
}

.inot-custom-page .program-image-placeholder{
  margin:50px 0 0;
  padding:80px 40px;
  border:2px dashed rgba(212,175,55,.3);
  border-radius:15px;
  background:linear-gradient(135deg, rgba(21,37,55,.4) 0%, rgba(5,5,31,.6) 100%);
  position:relative;
  overflow:hidden;
  text-align:center;
}

.inot-custom-page .program-image-placeholder::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(255,215,23,.08) 0%, transparent 70%);
  pointer-events:none;
}

.inot-custom-page .program-image-placeholder-content{
  position:relative;
  z-index:1;
}

.inot-custom-page .program-image-placeholder-icon{
  margin-bottom:20px;
  font-size:4rem;
  opacity:.6;
}

.inot-custom-page .program-image-placeholder-title{
  margin:0 0 10px;
  color:var(--color-primary);
  font-family:'Poppins',sans-serif;
  font-size:1.2rem;
  font-weight:600;
}

.inot-custom-page .program-image-placeholder-text{
  margin:0;
  color:var(--color-text);
  font-size:.9rem;
  opacity:.8;
}

.inot-custom-page .beneficiile-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.inot-custom-page .beneficiu-card{
  padding:30px;
  border:1px solid rgba(212,175,55,.15);
  border-radius:14px;
  background:rgba(212,175,55,.05);
  transition:var(--transition);
}

.inot-custom-page .beneficiu-card:hover{
  border-color:rgba(255,215,23,.4);
  background:linear-gradient(135deg, rgba(255,215,23,.08) 0%, rgba(212,175,55,.03) 100%);
  transform:translateY(-5px);
}

.inot-custom-page .beneficiu-card h4{
  margin:0 0 12px;
  color:var(--color-primary);
  font-family:'Poppins',sans-serif;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:.2px;
  text-transform:none;
}

.inot-custom-page .beneficiu-card p{
  margin:0;
  color:var(--color-text);
  font-size:.95rem;
  line-height:1.8;
}

/* FAQ */

.inot-custom-page .faq-container{
  max-width:800px;
  margin:0 auto;
  display:grid;
  gap:20px;
}

.inot-custom-page .faq-item{
  position:relative;
  overflow:hidden;
  padding:25px;
  border:2px solid rgba(212,175,55,.25);
  border-radius:15px;
  background:linear-gradient(135deg, rgba(255,215,23,.08) 0%, rgba(212,175,55,.03) 100%);
  transition:var(--transition);
}

.inot-custom-page .faq-item::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:4px;
  height:100%;
  background:var(--color-primary);
  opacity:0;
  transition:opacity var(--transition);
}

.inot-custom-page .faq-item:hover{
  border-color:var(--color-primary);
  box-shadow:0 10px 40px rgba(255,215,23,.2);
  transform:translateX(8px);
}

.inot-custom-page .faq-item:hover::before,
.inot-custom-page .faq-item.active::before{
  opacity:1;
}

.inot-custom-page .faq-item.active{
  border-color:var(--color-primary);
  background:linear-gradient(135deg, rgba(255,215,23,.15) 0%, rgba(212,175,55,.08) 100%);
}

.inot-custom-page .faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--color-primary);
  font-size:1.1rem;
  font-weight:700;
  cursor:pointer;
}

.inot-custom-page .faq-toggle{
  flex:0 0 auto;
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,215,23,.1);
  font-size:1.8rem;
  transition:var(--transition);
}

.inot-custom-page .faq-item.active .faq-toggle{
  transform:rotate(180deg);
  background:rgba(255,215,23,.2);
}

.inot-custom-page .faq-answer{
  max-height:0;
  margin-top:0;
  overflow:hidden;
  color:var(--color-text);
  font-size:.95rem;
  line-height:1.8;
  transition:max-height .4s ease;
}

.inot-custom-page .faq-item.active .faq-answer{
  max-height:500px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(212,175,55,.2);
}

.inot-custom-page .faq-special-cta{
  position:relative;
  overflow:hidden;
  margin-top:50px;
  padding:40px;
  border:2px solid rgba(212,175,55,.2);
  border-radius:20px;
  background:linear-gradient(135deg, rgba(255,215,23,.06) 0%, rgba(212,175,55,.03) 100%);
  text-align:center;
  transition:var(--transition);
}

.inot-custom-page .faq-special-cta::before{
  content:'';
  position:absolute;
  top:-20px;
  right:-20px;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(255,215,23,.15) 0%, transparent 70%);
  pointer-events:none;
}

.inot-custom-page .faq-special-cta:hover{
  border-color:var(--color-primary);
  box-shadow:0 20px 50px rgba(255,215,23,.2);
  transform:translateY(-5px);
}

.inot-custom-page .faq-special-cta h3{
  position:relative;
  z-index:1;
  margin:0 0 15px;
  color:var(--color-primary);
  font-size:2rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.inot-custom-page .faq-special-cta p{
  position:relative;
  z-index:1;
  max-width:700px;
  margin:0 auto 30px;
  color:var(--color-text-light);
  font-size:1.1rem;
  line-height:1.7;
}

/* Contact */

.inot-custom-page .contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.inot-custom-page .contact-form h2{
  margin:0 0 15px;
  color:var(--color-primary);
  font-size:2rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.inot-custom-page .contact-form p{
  margin:0 0 30px;
  color:var(--color-text);
  line-height:1.8;
}

.inot-custom-page .olimpic-homepage .wpcf7,
.inot-custom-page .olimpic-homepage .wpcf7 form{
  width:100%;
}

.inot-custom-page .olimpic-homepage .wpcf7 form p{
  margin-bottom:20px;
}

.inot-custom-page .olimpic-homepage .wpcf7 label{
  display:block;
  margin-bottom:8px;
  color:var(--color-primary);
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.inot-custom-page .olimpic-homepage .wpcf7 input[type="text"],
.inot-custom-page .olimpic-homepage .wpcf7 input[type="email"],
.inot-custom-page .olimpic-homepage .wpcf7 input[type="tel"],
.inot-custom-page .olimpic-homepage .wpcf7 select,
.inot-custom-page .olimpic-homepage .wpcf7 textarea{
  width:100%;
  padding:12px 15px;
  border:1px solid rgba(212,175,55,.3);
  border-radius:8px;
  background:rgba(21,37,55,.5);
  color:var(--color-text);
  font-family:'Poppins',sans-serif;
  font-size:14px;
  transition:var(--transition);
}

.inot-custom-page .olimpic-homepage .wpcf7 input[type="text"]:focus,
.inot-custom-page .olimpic-homepage .wpcf7 input[type="email"]:focus,
.inot-custom-page .olimpic-homepage .wpcf7 input[type="tel"]:focus,
.inot-custom-page .olimpic-homepage .wpcf7 select:focus,
.inot-custom-page .olimpic-homepage .wpcf7 textarea:focus{
  outline:none;
  border-color:var(--color-primary);
  background:rgba(21,37,55,.8);
  box-shadow:0 0 10px rgba(255,215,23,.2);
}

.inot-custom-page .olimpic-homepage .wpcf7 textarea{
  min-height:120px;
  resize:vertical;
}

.inot-custom-page .olimpic-homepage .wpcf7 .wpcf7-submit{
  width:100%;
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 35px;
  border:2px solid var(--color-primary);
  border-radius:999px;
  background:var(--color-primary);
  color:var(--color-dark);
  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:var(--transition);
}

.inot-custom-page .olimpic-homepage .wpcf7 .wpcf7-submit:hover{
  background:transparent;
  color:var(--color-primary);
  box-shadow:0 0 20px rgba(255,215,23,.3);
  transform:translateY(-3px);
}

.inot-custom-page .olimpic-homepage .wpcf7-list-item{
  margin:0;
}

.inot-custom-page .olimpic-homepage .wpcf7-acceptance label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--color-text);
  font-size:13px;
  line-height:1.6;
  text-transform:none;
}

.inot-custom-page .olimpic-homepage .wpcf7-acceptance input[type="checkbox"]{
  width:20px;
  height:20px;
  margin-top:2px;
  flex-shrink:0;
  cursor:pointer;
  accent-color:var(--color-primary);
}

.inot-custom-page .olimpic-homepage .wpcf7-acceptance a{
  color:var(--color-accent);
  text-decoration:none;
}

.inot-custom-page .olimpic-homepage .wpcf7-acceptance a:hover{
  color:var(--color-primary);
  text-decoration:underline;
}

.inot-custom-page .contact-info .info-item{
  margin-bottom:30px;
  padding:20px 0;
  border-bottom:1px solid rgba(212,175,55,.2);
}

.inot-custom-page .contact-info .info-item:last-child{
  margin-bottom:0;
  border-bottom:none;
}

.inot-custom-page .info-item h3{
  margin:0 0 15px;
  color:var(--color-primary);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.inot-custom-page .info-item p{
  margin:0 0 8px;
  color:var(--color-text);
  line-height:1.7;
}

.inot-custom-page .info-item a{
  color:var(--color-accent);
  text-decoration:none;
  transition:var(--transition);
}

.inot-custom-page .info-item a:hover{
  color:var(--color-primary);
}

.inot-custom-page .social-row{
  display:flex;
  gap:20px;
  margin-top:15px;
}

.inot-custom-page .social-pill{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(212,175,55,.1);
  text-decoration:none;
  transition:var(--transition);
}

.inot-custom-page .social-pill:hover{
  background:var(--color-accent);
  transform:translateY(-3px);
}

.inot-custom-page .social-pill img{
  width:50px;
  height:50px;
  object-fit:contain;
  filter:brightness(1.2);
}

/* Animations */

@keyframes fadeInUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.82;transform:scale(1.08)}
}

/* Responsive */

@media (max-width:1200px){
  .inot-custom-page .schedule-wrapper{
    grid-template-columns:1fr;
    gap:20px;
  }

  .inot-custom-page .price-badge-enhanced{
    max-width:320px;
  }

  .inot-custom-page .schedule-timeline{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .inot-custom-page .hero h1{
    font-size:2.5rem;
    line-height:1.08;
    letter-spacing:.6px;
  }

  .inot-custom-page .hero p{
    font-size:1rem;
  }

  .inot-custom-page .hero-buttons{
    flex-direction:column;
    gap:15px;
  }

  .inot-custom-page .btn{
    width:100%;
  }

  .inot-custom-page .section-title h2{
    font-size:2rem;
    line-height:1.12;
    letter-spacing:.4px;
  }

  .inot-custom-page .schedule,
  .inot-custom-page .program,
  .inot-custom-page .faq,
  .inot-custom-page .contact{
    padding:60px 15px;
  }

  .inot-custom-page .schedule-wrapper{
    grid-template-columns:1fr !important;
    gap:20px !important;
  }

  .inot-custom-page .schedule-container{
    width:100% !important;
    padding:28px 20px !important;
  }

  .inot-custom-page .schedule-timeline{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
  }

  .inot-custom-page .schedule-item-enhanced{
    padding:18px 14px !important;
  }

  .inot-custom-page .schedule-day-badge{
    font-size:1.2rem;
  }

  .inot-custom-page .schedule-time{
    font-size:.95rem;
  }

  .inot-custom-page .price-section{
    width:100% !important;
    display:block !important;
  }

  .inot-custom-page .price-badge-enhanced{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    padding:20px 16px !important;
    border-radius:16px !important;
    align-self:stretch !important;
    justify-self:stretch !important;
  }

  .inot-custom-page .price-content{
    width:100% !important;
    max-width:none !important;
  }

  .inot-custom-page .price-value{
    font-size:2rem !important;
  }

  .inot-custom-page .program-shell{
    padding:36px 24px;
  }

  .inot-custom-page .why-choose-list{
    grid-template-columns:1fr !important;
    gap:18px !important;
    margin:0 auto !important;
  }

  .inot-custom-page .why-choose-item{
    padding-left:28px !important;
  }

  .inot-custom-page .why-choose-item::before{
    top:2px;
    font-size:18px;
  }

  .inot-custom-page .beneficiile-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .inot-custom-page .contact-container{
    grid-template-columns:1fr;
    gap:30px;
  }
}

@media (max-width:480px){
  .inot-custom-page .hero{
    margin-top:50px;
    min-height:calc(100vh - 50px);
  }

  .inot-custom-page .hero h1{
    max-width:10ch;
    margin-left:auto;
    margin-right:auto;
    font-size:2rem;
    line-height:1.05;
    letter-spacing:.2px;
  }

  .inot-custom-page .hero p{
    max-width:32ch;
    margin-left:auto;
    margin-right:auto;
    font-size:.95rem;
    line-height:1.65;
  }

  .inot-custom-page .section-title h2{
    max-width:14ch;
    margin-left:auto;
    margin-right:auto;
    font-size:1.55rem;
    line-height:1.15;
    letter-spacing:.2px;
  }

  .inot-custom-page .time-icon{
    font-size:1.6rem;
  }

  .inot-custom-page .schedule-time{
    font-size:1rem;
  }

  .inot-custom-page .program-shell{
    padding:28px 18px;
  }

  .inot-custom-page .program-block-title{
    font-size:1.35rem;
    line-height:1.2;
  }

  .inot-custom-page .program-image-placeholder{
    padding:48px 20px;
  }

  .inot-custom-page .beneficiu-card{
    padding:20px 16px;
  }

  .inot-custom-page .faq-special-cta{
    padding:30px 18px;
  }

  .inot-custom-page .faq-special-cta h3{
    font-size:1.5rem;
  }

  .inot-custom-page .why-choose-list{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .inot-custom-page .schedule-wrapper{
    grid-template-columns:1fr !important;
  }

  .inot-custom-page .schedule-container{
    width:100% !important;
    padding:20px 14px !important;
    border-radius:18px !important;
  }

  .inot-custom-page .schedule-timeline{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .inot-custom-page .schedule-item-enhanced{
    padding:16px 12px !important;
    border-radius:14px !important;
  }

  .inot-custom-page .price-section{
    width:100% !important;
    display:block !important;
  }

  .inot-custom-page .price-badge-enhanced{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    padding:18px 14px !important;
    border-radius:14px !important;
  }

  .inot-custom-page .price-content{
    width:100% !important;
    max-width:none !important;
  }

  .inot-custom-page .price-value{
    font-size:1.85rem !important;
  }

  .inot-custom-page .price-note{
    font-size:.78rem !important;
  }

  .inot-custom-page .contact-container{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }
}