/* ============================================
   CINEMATIC PROFESSIONAL THEME - IMAGE INSPIRED
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #a50628;
  color: #e8edff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============ BACKGROUND LAYERS ============ */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, #79082a, #1a0a10 70%);
  pointer-events: none;
}

.bg-glow-1 {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(138, 43, 226, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: glowFloat 18s ease-in-out infinite;
}

.bg-glow-2 {
  position: fixed;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 193, 7, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: glowFloat 22s ease-in-out infinite reverse;
}

.bg-glow-3 {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(100, 50, 200, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

@keyframes glowFloat {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-30px, 20px) scale(1.1);
  }
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 193, 7, 0.025) 25%, rgba(255, 193, 7, 0.025) 26%, transparent 27%, transparent 74%, rgba(255, 193, 7, 0.025) 75%, rgba(255, 193, 7, 0.025) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(255, 193, 7, 0.025) 25%, rgba(255, 193, 7, 0.025) 26%, transparent 27%, transparent 74%, rgba(255, 193, 7, 0.025) 75%, rgba(255, 193, 7, 0.025) 76%, transparent 77%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============ BRAND TAG ============ */
.brand-tag {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(255, 193, 7, 0.08);
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 193, 7, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.05);
}

/* ============ BUTTONS - CINEMATIC ============ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(145deg, #ffc107, #f57c00);
  color: #0a0c1a;
  box-shadow: 0 8px 32px rgba(255, 193, 7, 0.25);
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 193, 7, 0.4);
  background: linear-gradient(145deg, #ffd54f, #ffa000);
}

.btn-secondary {
  background: rgba(255, 193, 7, 0.06);
  border: 2px solid rgba(255, 193, 7, 0.35);
  color: #ffc107;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 193, 7, 0.12);
  border-color: #ffc107;
  box-shadow: 0 0 50px rgba(255, 193, 7, 0.15);
  transform: translateY(-4px);
}

/* ============ SECTION LABEL ============ */
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffc107;
  display: inline-block;
  background: rgba(255, 193, 7, 0.06);
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 193, 7, 0.15);
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

/* ============ HERO ============ */
.hero {
  padding: 50px 0 30px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 193, 7, 0.08);
}

.sub-headline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #a8b8ff;
  max-width: 700px;
  margin: 0 auto 28px;
  font-weight: 400;
}

.sub-headline i {
  color: #ffc107;
  margin-right: 8px;
}

/* ============ HERO IMAGE FRAME (NEW) ============ */
.hero-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 30px;
}

.hero-image-frame {
  position: relative;
  display: inline-block;
  padding: 8px;
  border-radius: 24px;
  background: transparent;
}

.frame-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.25), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  opacity: 0.8;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.frame-outer {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffc107, #b8860b);
  padding: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(255, 193, 7, 0.08);
}

.frame-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0c1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-inner img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.frame-inner img:hover {
  transform: scale(1.02);
}

/* Corner accents */
.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #ffc107;
  border-style: solid;
  border-width: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.9;
}

.corner-tl {
  top: 12px;
  left: 12px;
  border-top-width: 3px;
  border-left-width: 3px;
  border-radius: 4px 0 0 0;
}

.corner-tr {
  top: 12px;
  right: 12px;
  border-top-width: 3px;
  border-right-width: 3px;
  border-radius: 0 4px 0 0;
}

.corner-bl {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-radius: 0 0 0 4px;
}

.corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-radius: 0 0 4px 0;
}

/* Accent bars */
.accent-bar {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  left: 15%;
  right: 15%;
  z-index: 5;
  opacity: 0.6;
  border-radius: 4px;
}

.accent-bar.top {
  top: 8px;
}

.accent-bar.bottom {
  bottom: 8px;
}

/* Hero Image Caption */
.hero-image-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 6px 24px;
  background: rgba(255, 193, 7, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.12);
  border-radius: 60px;
  backdrop-filter: blur(6px);
}

.caption-line {
  flex: 0 0 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffc107);
  border-radius: 4px;
}

.caption-line:last-child {
  background: linear-gradient(90deg, #ffc107, transparent);
}

.caption-text {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.caption-sub {
  font-weight: 400;
  font-size: 0.7rem;
  color: #a8b8ff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ============ CTA GROUP ============ */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

/* ============ VIDEO ============ */
.video-section {
  margin: 40px 0 30px;
}

.video-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
  margin-bottom: 12px;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 177%;
  background: #0a0c1a;
  border-radius: 40px;
  overflow: hidden;
  border: 10px solid #14182b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 0 40px rgba(255, 193, 7, 0.04);
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 24px;
  background: #0a0c1a;
  border-radius: 0 0 30px 30px;
  z-index: 10;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 26, 0.5);
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: opacity 0.5s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-big {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc107, #f57c00);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #0a0c1a;
  cursor: pointer;
  box-shadow: 0 0 60px rgba(255, 193, 7, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-big:hover {
  transform: scale(1.12);
  box-shadow: 0 0 90px rgba(255, 193, 7, 0.5);
}

.video-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #8899ee;
  text-align: center;
  font-weight: 500;
}

.video-note i {
  color: #ffc107;
  margin-right: 6px;
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
  margin: 30px 0 40px;
}

.proof-content {
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.02));
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.06);
  animation: proofGlow 4s ease-in-out infinite;
}

@keyframes proofGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.06);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 193, 7, 0.15);
  }
}

.proof-content i {
  font-size: 1.6rem;
  color: #ff6b6b;
  margin-bottom: 8px;
  display: block;
}

.proof-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 4px;
}

.proof-content p {
  font-size: 0.95rem;
  color: #a8b8ff;
  font-weight: 500;
}

/* ============ FIRST IMPRESSION PACKAGES ============ */
.offer-section {
  margin: 50px 0 40px;
}

.offer-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
  color: #fff;
}

.offer-sub {
  text-align: center;
  color: #a8b8ff;
  font-size: 1rem;
  margin-bottom: 28px;
}

.offer-sub strong {
  color: #ffc107;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.offer-item {
  text-align: center;
  padding: 24px 18px;
  background: linear-gradient(145deg, rgba(20, 24, 43, 0.5), rgba(10, 12, 26, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(8px);
}

.offer-item:hover {
  border-color: rgba(255, 193, 7, 0.3);
  background: linear-gradient(145deg, rgba(30, 36, 65, 0.6), rgba(10, 12, 26, 0.6));
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-item i {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.offer-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.offer-item p {
  font-size: 0.85rem;
  color: #9aabff;
  margin-bottom: 12px;
  flex: 1;
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(255, 193, 7, 0.05);
  padding: 4px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.price-original {
  font-size: 0.7rem;
  color: #8899ee;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 2px 8px;
  border-radius: 40px;
  border: 1px solid rgba(255, 107, 107, 0.15);
}

.price-final {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffc107;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(145deg, #ffc107, #f57c00);
  color: #0a0c1a;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(255, 193, 7, 0.2);
}

.btn-book:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 40px rgba(255, 193, 7, 0.35);
  background: linear-gradient(145deg, #ffd54f, #ffa000);
}

.offer-deadline {
  margin-top: 24px;
  text-align: center;
  padding: 12px 18px;
  background: linear-gradient(145deg, rgba(255, 193, 7, 0.06), rgba(255, 193, 7, 0.02));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 60px;
  font-size: 0.9rem;
  color: #a8b8ff;
  backdrop-filter: blur(4px);
}

.offer-deadline .highlight {
  color: #ffc107;
  font-weight: 800;
}

.offer-deadline i {
  color: #ffc107;
  margin-right: 8px;
}

/* ============ ABOUT + INSTRUCTOR ============ */
.about-section {
  margin: 50px 0 30px;
  background: linear-gradient(145deg, rgba(20, 24, 43, 0.4), rgba(10, 12, 26, 0.4));
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.about-section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffc107;
}

.about-section p {
  font-size: 0.95rem;
  color: #a8b8ff;
  margin-bottom: 12px;
  line-height: 1.8;
}

.about-section strong {
  color: #ffc107;
}

.about-instructor {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(255, 193, 7, 0.04);
  border-radius: 14px;
  border-left: 4px solid #ffc107;
}

.instructor-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc107, #f57c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a0c1a;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.2);
}

.instructor-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.instructor-info .title-role {
  font-size: 0.85rem;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 6px;
}

.instructor-info p {
  font-size: 0.9rem;
  color: #a8b8ff;
  margin-bottom: 0;
}

.programs-list {
  margin-top: 24px;
}

.programs-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.program-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  background: rgba(255, 193, 7, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #a8b8ff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-item:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.program-item i {
  font-size: 1.4rem;
  color: #ffc107;
}

/* ============ PACKAGES ============ */
.packages-section {
  margin: 40px 0 30px;
  scroll-margin-top: 20px;
}

.packages-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
}

.packages-sub {
  text-align: center;
  font-size: 1rem;
  color: #a8b8ff;
  margin-bottom: 28px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.package-card {
  background: linear-gradient(145deg, rgba(20, 24, 43, 0.5), rgba(10, 12, 26, 0.5));
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  backdrop-filter: blur(8px);
}

.package-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.package-card.featured {
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.06);
}

.package-card.featured::after {
  content: '⭐ MOST POPULAR';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: #ffc107;
  color: #0a0c1a;
  padding: 3px 12px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.pkg-badge {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffc107;
  background: rgba(255, 193, 7, 0.08);
  padding: 4px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255, 193, 7, 0.12);
  margin-bottom: 12px;
}

.pkg-icon {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 8px;
}

.pkg-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.pkg-audience {
  font-size: 0.8rem;
  color: #8899ee;
  font-weight: 500;
  margin-bottom: 10px;
}

.pkg-desc {
  font-size: 0.9rem;
  color: #a8b8ff;
  margin-bottom: 14px;
  line-height: 1.5;
  flex: 1;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(255, 193, 7, 0.1);
  margin-bottom: 16px;
}

.pkg-price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8899ee;
}

.btn-pkg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(145deg, #ffc107, #f57c00);
  color: #0a0c1a;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(255, 193, 7, 0.2);
  width: 100%;
  justify-content: center;
}

.btn-pkg:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(255, 193, 7, 0.35);
  background: linear-gradient(145deg, #ffd54f, #ffa000);
}

/* ============ PAYMENT ============ */
.payment-section {
  margin: 40px 0 30px;
  background: linear-gradient(145deg, rgba(20, 24, 43, 0.4), rgba(10, 12, 26, 0.4));
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  scroll-margin-top: 20px;
  transition: box-shadow 0.6s ease;
  backdrop-filter: blur(8px);
}

.payment-section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.pay-sub {
  color: #a8b8ff;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 12px;
  padding: 14px 24px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  min-width: 130px;
  justify-content: center;
}

.payment-method:hover {
  border-color: rgba(255, 193, 7, 0.3);
  background: rgba(255, 193, 7, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.payment-method i {
  font-size: 1.6rem;
  color: #ffc107;
}

.pm-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.pm-name small {
  font-weight: 400;
  color: #8899ee;
  font-size: 0.7rem;
  display: block;
}

.payment-note {
  background: rgba(255, 193, 7, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  max-width: 650px;
  margin: 0 auto 16px;
}

.payment-note p {
  color: #a8b8ff;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.payment-note strong {
  color: #ffc107;
}

.payment-wa-action {
  margin-top: 6px;
}

.payment-wa-action .btn-primary {
  padding: 12px 32px;
  font-size: 0.85rem;
}

/* ============ GUARANTEES ============ */
.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 30px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.03));
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #81c784;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.guarantee i {
  font-size: 1.1rem;
}

/* ============ SOCIAL FOOTER ============ */
.social-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 193, 7, 0.06);
  border-bottom: 1px solid rgba(255, 193, 7, 0.06);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 193, 7, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 50px;
  color: #a8b8ff;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.social-btn:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  color: #ffc107;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.social-btn i {
  font-size: 1.1rem;
}

.phone-contact {
  color: #8899ee;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.phone-contact i {
  color: #ffc107;
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
}

.float-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  font-size: 2.6rem;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.float-wa a:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 60px rgba(37, 211, 102, 0.45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 30px 0 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .play-big {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
  .video-container {
    padding-top: 200%;
    max-width: 380px;
    border-width: 8px;
    border-radius: 32px;
  }
  .proof-content {
    padding: 18px 20px;
  }
  .proof-content h3 {
    font-size: 1.1rem;
  }
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-section {
    padding: 24px 18px;
  }
  .about-instructor {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .instructor-avatar {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .package-card {
    padding: 20px 14px 18px;
  }
  .pkg-price {
    font-size: 1.6rem;
  }
  .payment-section {
    padding: 24px 18px;
  }
  .payment-methods {
    gap: 12px;
  }
  .payment-method {
    padding: 12px 16px;
    min-width: 110px;
  }
  .payment-method i {
    font-size: 1.4rem;
  }
  .guarantees {
    flex-direction: column;
    gap: 10px;
  }
  .guarantee {
    width: 100%;
    justify-content: center;
  }
  .social-footer {
    flex-direction: column;
    gap: 10px;
  }
  .social-btn {
    width: 100%;
    justify-content: center;
  }
  .float-wa a {
    width: 56px;
    height: 56px;
    font-size: 2.2rem;
  }
  .float-wa {
    bottom: 20px;
    right: 20px;
  }
  .offer-item {
    padding: 18px 12px;
  }
  .offer-item i {
    font-size: 1.8rem;
  }
  .package-card.featured::after {
    font-size: 0.5rem;
    padding: 2px 10px;
    top: 6px;
    right: 6px;
  }

  /* Hero frame responsive */
  .frame-inner img {
    max-width: 240px;
  }
  .corner {
    width: 16px;
    height: 16px;
  }
  .corner-tl,
  .corner-tr {
    top: 8px;
  }
  .corner-bl,
  .corner-br {
    bottom: 8px;
  }
  .corner-tl,
  .corner-bl {
    left: 8px;
  }
  .corner-tr,
  .corner-br {
    right: 8px;
  }
  .accent-bar {
    left: 10%;
    right: 10%;
  }
  .hero-image-caption {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px 16px;
  }
  .caption-text {
    font-size: 0.75rem;
  }
  .caption-sub {
    font-size: 0.6rem;
  }
  .caption-line {
    flex: 0 0 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .sub-headline {
    font-size: 0.9rem;
  }
  .brand-tag {
    font-size: 0.55rem;
    padding: 4px 12px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .payment-methods {
    flex-direction: column;
    align-items: center;
  }
  .payment-method {
    width: 100%;
    max-width: 240px;
  }
  .video-container {
    padding-top: 200%;
    max-width: 320px;
    border-width: 6px;
    border-radius: 28px;
  }
  .play-big {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .proof-content h3 {
    font-size: 1rem;
  }
  .proof-content p {
    font-size: 0.85rem;
  }
  .about-section h2 {
    font-size: 1.3rem;
  }
  .packages-section h2 {
    font-size: 1.3rem;
  }
  .payment-section h2 {
    font-size: 1.3rem;
  }
  .pkg-price {
    font-size: 1.4rem;
  }
  .package-card {
    padding: 16px 12px 14px;
  }
  .btn-pkg {
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  .btn-book {
    font-size: 0.7rem;
    padding: 7px 16px;
  }
  .offer-item h4 {
    font-size: 0.85rem;
  }
  .offer-item p {
    font-size: 0.8rem;
  }
  .price-final {
    font-size: 0.85rem;
  }

  /* Hero frame mobile */
  .frame-inner img {
    max-width: 180px;
  }
  .corner {
    width: 12px;
    height: 12px;
  }
  .corner-tl,
  .corner-tr {
    top: 6px;
  }
  .corner-bl,
  .corner-br {
    bottom: 6px;
  }
  .corner-tl,
  .corner-bl {
    left: 6px;
  }
  .corner-tr,
  .corner-br {
    right: 6px;
  }
  .accent-bar {
    display: none;
  }
  .hero-image-caption {
    padding: 4px 12px;
  }
  .caption-text {
    font-size: 0.65rem;
  }
  .caption-sub {
    font-size: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .video-container {
    padding-top: 150%;
    max-width: 450px;
  }
  .offer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .frame-inner img {
    max-width: 360px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .video-container {
    padding-top: 140%;
    max-width: 420px;
  }
  .about-section {
    padding: 44px 40px;
  }
  .payment-section {
    padding: 44px 40px;
  }
  .frame-inner img {
    max-width: 400px;
  }
}
