/* Yog24x7 - Premium Compact Design - FIXED */

/* ===== SMILE ANIMATION ===== */
.smile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.smile-container {
  text-align: center;
}

.smile-icon {
  font-size: 4rem;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== BASIC STYLES ===== */
.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* ===== HEADER - FIXED ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-image {
  height: 60px;
  width: auto;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #22c55e;
  background: #f0fdf4;
}

.nav-link-special {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: white !important;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.nav-link-special:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Hero - Compact */
.hero-compact {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

.hero-desc {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* FIXED: Hero Image Frame and Floating Badges */
.hero-image-frame {
  position: relative;
  border-radius: 50%;
  overflow: visible; /* CRITICAL: Allow badges to overflow */
  aspect-ratio: 1;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  max-width: 450px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%); /* Keep image circular */
}

.hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

/* FIXED: Floating Badges - Now TRULY outside the circle */
.floating-badge {
  position: absolute;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2); /* Stronger shadow */
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
  animation: float 3s ease-in-out infinite;
  z-index: 20;
  pointer-events: auto;
  border: 3px solid #f0fdf4;
  min-width: 180px;
}

.floating-badge:first-child { 
  top: 8%; 
  left: -25%; /* Far outside */
}

.floating-badge:last-child { 
  bottom: 12%; 
  right: -25%; /* Far outside */
  animation-delay: 1.5s; 
}

.floating-badge span {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-badge div div {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.2;
}

.floating-badge small {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Apply floating animation to hero images */
.hero-visual .hero-img {
  animation: float 3s ease-in-out infinite;
}

/* Hero Slider */
.hero-slider-wrapper {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

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

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #22c55e;
  width: 32px;
  border-radius: 6px;
}

/* Section Headers - Compact */
.section-header-compact {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-compact h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

.section-header-compact p {
  font-size: 1.1rem;
  color: #64748b;
}

/* Classes - Compact 3-Column */
.classes-compact {
  padding: 4rem 0;
  background: #f8faf9;
}

.classes-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.class-card-compact {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s;
}

.class-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #22c55e;
}

.class-card-compact.featured {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.class-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #22c55e;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.class-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.class-card-compact h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
}

.class-card-compact p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.class-features-compact {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.class-features-compact li {
  padding: 0.4rem 0;
  color: #64748b;
}

.class-timing-compact {
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
}

.class-timing-compact strong {
  display: block;
  margin-bottom: 0.5rem;
}

.class-timing-compact small {
  color: #64748b;
  line-height: 1.6;
}

/* Why Box - Compact */
.why-box-compact {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  padding: 1.5rem;
}

.why-box-compact h4 {
  font-size: 1.2rem;
  color: #92400e;
  margin: 0 0 1rem 0;
  text-align: center;
}

.why-items {
  display: grid;
  gap: 1rem;
}

.why-item {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  background: rgba(255,255,255,0.6);
  padding: 0.75rem;
  border-radius: 8px;
}

.why-item span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-item strong {
  display: block;
  color: #78350f;
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 0.85rem;
  color: #92400e;
  margin: 0;
}

/* Instructors - Compact - FIXED TIMING */
.instructors-compact {
  padding: 4rem 0;
  background: white;
}

.instructor-slider-wrapper {
  position: relative;
  min-height: 450px;
}

.instructor-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.instructor-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}

.instructor-img-col {
  position: relative;
}

.instructor-img-col img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.inst-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #22c55e;
}

.badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #22c55e;
}

.badge-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
}

.instructor-info-col h3 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
}

.inst-title {
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 1rem;
}

.inst-bio {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.inst-creds {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cred {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 0.9rem;
  border-left: 3px solid #22c55e;
}

.cred span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.inst-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.inst-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.inst-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

/* Social icons: green background with white icon outline */
.inst-social a.social-icon {
  background: #22c55e;
  color: white;
}

.instructor-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.instructor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.instructor-dot.active {
  background: #22c55e;
  width: 32px;
  border-radius: 6px;
}



/* Pricing - Compact 4-Column - FIXED BUTTON POSITION */
.pricing-compact {
  padding: 4rem 0;
  background: #f8faf9;
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.price-card-compact {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.price-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.price-card-compact.highlight {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-card-compact h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
}

.price-old {
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(148, 163, 184, 0.9);
  margin: -0.25rem 0 0.5rem 0;
  line-height: 1;
}

.price-old span {
  font-size: 0.9rem;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.price span {
  font-size: 1.5rem;
  font-weight: 600;
}

.price small {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.price-card-compact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0; /* Push button to bottom */
  font-size: 0.9rem;
  flex-grow: 1;
}

.price-card-compact li {
  padding: 0.6rem 0;
  color: #64748b;
  line-height: 1.4;
}

/* FIXED: Get Started button always at bottom */
.price-card-compact .btn {
  margin-top: 1.5rem;
}

/* NEW: Dedicated Testimonials Section - FIXED WITH CARDS */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border-radius: 16px 0 0 16px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
}

.rating {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  gap: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  flex-grow: 1;
  quotes: """ """ "'" "'";
}

.testimonial-card p::before {
  content: open-quote;
  font-size: 1.5rem;
  color: #22c55e;
  margin-right: 4px;
}

.testimonial-card p::after {
  content: close-quote;
  font-size: 1.5rem;
  color: #22c55e;
  margin-left: 4px;
}

.testimonial-card small {
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  display: block;
}

/* Story - Compact */
.story-compact {
  padding: 4rem 0;
  background: #f8faf9;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.story-grid h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

.story-grid p {
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1rem;
}

.values-compact {
  background: #f0fdf4;
  padding: 2rem;
  border-radius: 16px;
}

.values-compact h3 {
  text-align: center;
  margin: 0 0 1.5rem 0;
}

.value-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.value-item div {
  font-size: 0.95rem;
}

.value-item strong {
  display: block;
  color: #065f46;
  margin-bottom: 0.25rem;
}

.value-item p {
  color: #047857;
  margin: 0;
}

/* About - Compact - FIXED: Vision/Mission in ROW */
.about-compact {
  padding: 4rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-grid h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

.about-grid h3 {
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
}

.about-grid p {
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* FIXED: 2 columns */
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.vm-card {
  background: #f8faf9;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid #22c55e;
}

.vm-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.vm-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* NEW: Special Thanks Section */
.special-thanks-section {
  padding: 4rem 0;
  background: #f8faf9;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  aspect-ratio: 1;
  min-height: 120px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

.partner-logo {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Contact - Compact */
.contact-compact {
  padding: 4rem 0;
  background: #f8faf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-grid h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
}

.contact-items {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.contact-item span {
  font-size: 2rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: #64748b;
}

.contact-form-compact {
  display: grid;
  gap: 1rem;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.contact-form-compact input,
.contact-form-compact textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.contact-form-compact input:focus,
.contact-form-compact textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Footer - Compact */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  height: 40px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links h4 {
  color: white;
  margin: 0 0 1rem 0;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #334155;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-legal a:hover {
  color: #22c55e;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .instructor-grid,
  .story-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission {
    grid-template-columns: 1fr; /* Stack on tablet */
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
  }
  
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .classes-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Adjust floating badges for tablet */
  .floating-badge:first-child { 
    left: -10%; 
  }
  .floating-badge:last-child { 
    right: -10%; 
  }
  
  .hero-image-frame {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav-toggle {
    display: flex;
  }
  
  .nav-list {
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 200px;
    z-index: 1000;
  }
  
  .nav-list.open {
    display: flex;
  }
  
  .nav-link {
    padding: 12px 16px;
  }
  
  .nav-link-special {
    text-align: center;
    margin-top: 8px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
  
  /* Mobile: floating badges smaller but visible */
  .floating-badge {
    padding: 0.6rem 0.85rem;
    font-size: 0.75rem;
    min-width: 150px;
  }
  
  .floating-badge:first-child { 
    left: -5%;
    top: 3%; 
  }
  
  .floating-badge:last-child { 
    right: -5%;
    bottom: 5%; 
  }
  
  .floating-badge span {
    font-size: 1.3rem;
  }
  
  .floating-badge div div {
    font-size: 0.8rem;
  }
  
  .floating-badge small {
    font-size: 0.7rem;
  }
  
  .hero-image-frame {
    max-width: 320px;
  }
  
  .hero-compact {
    padding: 60px 0 40px;
  }
}