/* Global Styles */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --dark-gray: #3a3a3a;
    --accent-orange: #FF6B35;
    --accent-light-orange: #FF8C42;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: var(--text-light);
    overflow-x: hidden;
}

/* Container visibility */
.container {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.background-svg {
    width: 100%;
    height: 100%;
}

.web-grid .grid-line {
    fill: var(--accent-orange);
    opacity: 0.1;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.graphics-elements circle,
.graphics-elements rect,
.graphics-elements polygon {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 2;
    opacity: 0.5;
}

.float-circle {
    animation: float 6s ease-in-out infinite;
}

.float-rect {
    animation: float 8s ease-in-out infinite reverse;
}

.float-triangle {
    animation: float 7s ease-in-out infinite;
}

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

.connections .connection-line {
    stroke: var(--accent-light-orange);
    stroke-width: 2;
    fill: none;
    opacity: 0.3;
    stroke-dasharray: 10, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

.code-symbols .code-text {
    fill: var(--accent-orange);
    font-size: 36px;
    font-weight: bold;
    opacity: 0.4;
    animation: codeFade 3s ease-in-out infinite;
}

@keyframes codeFade {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.course-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -2px;
    opacity: 1 !important;
    visibility: visible !important;
}

.course-title .title-line {
    display: block;
    background: linear-gradient(90deg, #FF6B35, #FFA500, #FF6B35);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Luxury Coaches Section */
.coaches-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.coaches-luxury-container {
    display: flex;
    min-height: 800px;
    width: 100%;
    max-width: 100%;
}

.coach-brand {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hani-brand {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-right: 1px solid rgba(255, 107, 53, 0.3);
}

.mohamed-brand {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Brand Backdrop Effects */
.brand-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
}

.code-particles, .design-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    font-size: 24px;
    color: var(--accent-orange);
    animation: floatParticle 20s linear infinite;
}

.code-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.code-particles .particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 2s; }
.code-particles .particle:nth-child(3) { left: 20%; top: 70%; animation-delay: 4s; }
.code-particles .particle:nth-child(4) { left: 60%; top: 80%; animation-delay: 6s; }
.code-particles .particle:nth-child(5) { left: 40%; top: 40%; animation-delay: 8s; }
.code-particles .particle:nth-child(6) { left: 70%; top: 60%; animation-delay: 10s; }

.design-particles .particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 1s; }
.design-particles .particle:nth-child(2) { left: 75%; top: 35%; animation-delay: 3s; }
.design-particles .particle:nth-child(3) { left: 25%; top: 65%; animation-delay: 5s; }
.design-particles .particle:nth-child(4) { left: 55%; top: 75%; animation-delay: 7s; }
.design-particles .particle:nth-child(5) { left: 35%; top: 45%; animation-delay: 9s; }
.design-particles .particle:nth-child(6) { left: 65%; top: 55%; animation-delay: 11s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 107, 53, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 107, 53, 0.03) 40px),
        repeating-linear-gradient(90deg, rgba(255, 107, 53, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 107, 53, 0.03) 40px);
}

.color-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: colorWave 10s ease-in-out infinite;
}

@keyframes colorWave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Coach Showcase */
.coach-showcase {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 60px 40px;
}

.image-container {
    position: relative;
    margin-bottom: 50px;
}

.luxury-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.frame-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), #ff4500, var(--accent-orange));
    border-radius: 20px;
    z-index: -1;
    animation: glowRotate 4s linear infinite;
}

.gradient-glow {
    background: linear-gradient(45deg, #FF6B35, #FFA500, #FF4500, #FF6B35);
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

/* Fallback when image is missing */
.coach-image:not([src]), .coach-image[src=""] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-image:not([src])::before, .coach-image[src=""]::before {
    content: "Coach Image";
    color: var(--accent-orange);
    font-size: 1.2rem;
    opacity: 0.5;
}

.luxury-frame:hover .coach-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.luxury-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-orange);
    font-family: 'Courier New', monospace;
}

.overlay-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-orange);
}

.design-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatBadge 6s ease-in-out infinite;
    animation-delay: var(--delay);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.floating-badge.gradient {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
}

.floating-badge:nth-child(1) { top: -30px; left: -30px; }
.floating-badge:nth-child(2) { top: -30px; right: -30px; }
.floating-badge:nth-child(3) { bottom: -30px; left: -30px; }
.floating-badge:nth-child(4) { bottom: -30px; right: -30px; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Brand Content */
.brand-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.luxury-title {
    margin-bottom: 30px;
}

.title-accent {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(90deg, #FF6B35, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-content .coach-name {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 15px 0;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-title .title-line {
    width: 100px;
    height: 3px;
    background: var(--accent-orange);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.gradient-line {
    background: linear-gradient(90deg, #FF6B35, #FFA500, #FF6B35);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    color: var(--text-gray);
    font-size: 1rem;
}

.separator {
    color: var(--accent-orange);
}

.specialization-box {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.gradient-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 165, 0, 0.05));
}

.specialization-box h3 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialization-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.achievement {
    text-align: center;
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.achievement-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature-quote {
    position: relative;
    padding: 25px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border-left: 3px solid var(--accent-orange);
}

.signature-quote i {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--accent-orange);
    opacity: 0.3;
    font-size: 1.5rem;
}

.signature-quote p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    padding-left: 20px;
}

/* Luxury Curriculum Section */
.curriculum-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.curriculum-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 3rem;
    color: var(--accent-orange);
    animation: floatElement 20s linear infinite;
}

.code-element { left: 10%; top: 20%; animation-delay: 0s; }
.design-element { right: 15%; top: 30%; animation-delay: 5s; }
.ai-element { left: 20%; bottom: 25%; animation-delay: 10s; }
.web-element { right: 10%; bottom: 20%; animation-delay: 15s; }

@keyframes floatElement {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { opacity: 0.3; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 0.1; }
    75% { opacity: 0.2; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.1; }
}

.curriculum-title-section {
    text-align: center;
    margin-bottom: 80px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.decoration-diamond {
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.curriculum-main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-word {
    display: inline-block;
    margin: 0 15px;
    color: var(--text-light);
}

.gradient-word {
    background: linear-gradient(135deg, #FF6B35, #FFA500, #FF6B35);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.curriculum-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.8;
}

.curriculum-luxury-container {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.curriculum-track {
    flex: 1;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.3));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.curriculum-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0.5;
}

.track-header {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.track-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
}

.gradient-glow {
    background: linear-gradient(45deg, #FF6B35, #FFA500, #FF4500, #FF6B35);
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.track-icon {
    text-align: center;
    margin-bottom: 20px;
}

.icon-background {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
}

.icon-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.track-title {
    text-align: center;
    margin-bottom: 20px;
}

.track-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-title p {
    font-size: 1rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.track-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.gradient-badge {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
}

.modules-list {
    padding: 40px 30px;
}

.module-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4), rgba(26, 26, 26, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), #FFA500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.module-item:hover::before {
    transform: scaleY(1);
}

.module-item:hover {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.8));
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.module-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #FFA500);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    flex-shrink: 0;
}

.module-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6B35, #FFA500, #FF6B35);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-item:hover .module-number::after {
    opacity: 1;
}

.module-content {
    flex: 1;
}

.module-content h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.module-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    opacity: 0.9;
}

/* Luxury Learning Outcomes Section */
.outcomes-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.outcomes-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.success-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.success-particles .particle {
    position: absolute;
    font-size: 2.5rem;
    animation: successFloat 25s linear infinite;
}

.success-icon { left: 5%; top: 15%; animation-delay: 0s; }
.trophy-icon { right: 10%; top: 25%; animation-delay: 5s; }
.star-icon { left: 15%; bottom: 20%; animation-delay: 10s; }
.rocket-icon { right: 20%; bottom: 30%; animation-delay: 15s; }
.diamond-icon { left: 50%; top: 10%; animation-delay: 20s; }

@keyframes successFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
    25% { opacity: 0.3; }
    50% { transform: translateY(-80px) rotate(180deg) scale(1.2); opacity: 0.1; }
    75% { opacity: 0.2; }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.1; }
}

.outcomes-title-section {
    text-align: center;
    margin-bottom: 80px;
}

.outcomes-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}

.decoration-star {
    position: relative;
    width: 30px;
    height: 30px;
}

.star-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(45deg) scale(1.2); }
}

.decoration-waves {
    display: flex;
    gap: 5px;
}

.wave {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--accent-orange), transparent);
    border-radius: 2px;
    animation: waveMotion 2s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

@keyframes waveMotion {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.outcomes-main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.outcomes-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.8;
}

.outcomes-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.outcome-luxury-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.4));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.outcome-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcome-luxury-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.outcome-luxury-card:hover .card-glow {
    opacity: 0.3;
}

.outcome-luxury-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0.4;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.outcome-luxury-icon {
    margin-bottom: 30px;
    position: relative;
}

.icon-orbit {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: orbitRotate 8s linear infinite;
}

.orbit-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.outcome-luxury-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.outcome-luxury-card:hover .outcome-luxury-icon i {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.outcome-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.outcome-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    opacity: 0.9;
}

/* Luxury Requirements Section */
.requirements-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.requirements-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.requirement-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.requirement-particles .particle {
    position: absolute;
    font-size: 2.5rem;
    animation: requirementFloat 30s linear infinite;
}

.req-laptop { left: 8%; top: 20%; animation-delay: 0s; }
.req-brain { right: 12%; top: 30%; animation-delay: 6s; }
.req-heart { left: 20%; bottom: 25%; animation-delay: 12s; }
.req-bulb { right: 25%; bottom: 35%; animation-delay: 18s; }
.req-gear { left: 45%; top: 15%; animation-delay: 24s; }

@keyframes requirementFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
    20% { opacity: 0.3; }
    50% { transform: translateY(-100px) rotate(180deg) scale(1.3); opacity: 0.1; }
    80% { opacity: 0.2; }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.1; }
}

.requirements-title-section {
    text-align: center;
    margin-bottom: 80px;
}

.requirements-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 40px;
}

.decoration-hexagon {
    position: relative;
    width: 40px;
    height: 40px;
}

.hexagon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--accent-orange);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexagonSpin 4s ease-in-out infinite;
}

@keyframes hexagonSpin {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
}

.decoration-pulse {
    position: relative;
    width: 60px;
    height: 60px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: pulseExpand 3s ease-out infinite;
}

.pulse-ring:nth-child(1) { animation-delay: 0s; }
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

@keyframes pulseExpand {
    0% { width: 20px; height: 20px; opacity: 1; }
    100% { width: 60px; height: 60px; opacity: 0; }
}

.requirements-main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.requirements-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.8;
}

.requirements-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.requirement-luxury-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.4));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.requirement-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.requirement-luxury-card:hover::before {
    opacity: 1;
}

.card-glow-req {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.requirement-luxury-card:hover .card-glow-req {
    opacity: 0.3;
}

.requirement-luxury-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.req-category {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.requirement-luxury-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.icon-hexagon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.requirement-luxury-card:hover .icon-hexagon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.icon-hexagon i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    z-index: 2;
}

.icon-particles {
    position: absolute;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.mini-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: miniParticleOrbit 8s linear infinite;
}

.mini-particle:nth-child(1) {
    top: 10px;
    left: 50%;
    animation-delay: 0s;
}

.mini-particle:nth-child(2) {
    top: 50%;
    right: 10px;
    animation-delay: 2.67s;
}

.mini-particle:nth-child(3) {
    bottom: 10px;
    left: 50%;
    animation-delay: 5.33s;
}

@keyframes miniParticleOrbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.requirement-content {
    text-align: center;
}

.requirement-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.requirement-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    opacity: 0.9;
}

/* Ensure visibility fallback */
.requirements-section .requirements-main-title,
.requirements-section .requirements-luxury-grid {
    opacity: 1 !important;
}

/* Exclusive Gifts Section */
.gifts-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, #0a0a0a 60%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.gifts-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gift-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gift-particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: giftFloat 25s linear infinite;
}

.gift-particle:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
.gift-particle:nth-child(2) { right: 8%; top: 25%; animation-delay: 4s; }
.gift-particle:nth-child(3) { left: 15%; bottom: 20%; animation-delay: 8s; }
.gift-particle:nth-child(4) { right: 20%; bottom: 30%; animation-delay: 12s; }
.gift-particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 16s; }
.gift-particle:nth-child(6) { right: 45%; bottom: 15%; animation-delay: 20s; }

@keyframes giftFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
    25% { opacity: 0.3; }
    50% { transform: translateY(-80px) rotate(180deg) scale(1.3); opacity: 0.15; }
    75% { opacity: 0.25; }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.1; }
}

.gift-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: sparkleFloat 8s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.sparkle:nth-child(2) { right: 25%; top: 40%; animation-delay: 1.6s; }
.sparkle:nth-child(3) { left: 60%; bottom: 35%; animation-delay: 3.2s; }
.sparkle:nth-child(4) { right: 15%; bottom: 25%; animation-delay: 4.8s; }
.sparkle:nth-child(5) { left: 80%; top: 20%; animation-delay: 6.4s; }

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.gifts-header {
    text-align: center;
    margin-bottom: 80px;
}

.gift-box-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.box-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.gift-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.box-body {
    width: 80px;
    height: 60px;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.box-lid {
    width: 84px;
    height: 25px;
    background: linear-gradient(145deg, #ffab00, #ff8c42);
    border-radius: 8px 8px 4px 4px;
    position: absolute;
    top: 15px;
    left: -2px;
    box-shadow: 0 4px 15px rgba(255, 171, 0, 0.3);
    animation: lidFloat 4s ease-in-out infinite;
}

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

.box-ribbon-v {
    width: 8px;
    height: 80px;
    background: linear-gradient(180deg, #ff4444, #cc3333);
    position: absolute;
    left: 36px;
    top: 0;
    z-index: 2;
}

.box-ribbon-h {
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg, #ff4444, #cc3333);
    position: absolute;
    top: 36px;
    left: 0;
    z-index: 2;
}

.box-bow {
    position: absolute;
    top: -5px;
    left: 32px;
    z-index: 3;
}

.bow-left, .bow-right {
    width: 16px;
    height: 12px;
    background: linear-gradient(145deg, #ff4444, #cc3333);
    border-radius: 50% 10px 50% 10px;
    position: absolute;
}

.bow-left {
    transform: rotate(-45deg);
    left: -8px;
}

.bow-right {
    transform: rotate(45deg);
    right: -8px;
}

.bow-center {
    width: 8px;
    height: 8px;
    background: linear-gradient(145deg, #cc3333, #aa2222);
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 2px;
}

.gift-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: giftGlow 3s ease-in-out infinite;
}

@keyframes giftGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.gifts-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.gift-emoji {
    display: block;
    font-size: 4rem;
    margin-bottom: 10px;
    animation: emojiPulse 2s ease-in-out infinite;
}

@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.title-main {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-sub {
    display: block;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    margin-top: 5px;
}

.gifts-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    opacity: 0.9;
    font-style: italic;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gift-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.4));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.gift-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gift-card:hover .gift-card-glow {
    opacity: 0.4;
}

.gift-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.gift-card:hover .gift-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.gift-icon i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.gift-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gift-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.gift-value {
    background: linear-gradient(45deg, var(--accent-orange), #ff8c42);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gifts-value-highlight {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.6));
    border: 2px solid var(--accent-orange);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.value-container {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.value-icon {
    font-size: 4rem;
    animation: valueIconPulse 2s ease-in-out infinite;
}

@keyframes valueIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.value-content {
    flex: 1;
    text-align: left;
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.value-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
}

.value-note {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-style: italic;
}

.value-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #ffab00);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes giftIconSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

/* Enhanced CTA Registration Section */
.cta-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, #0a0a0a 60%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.cta-backdrop-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: ctaFloat 20s linear infinite;
}

.floating-element:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-element:nth-child(2) { right: 15%; top: 30%; animation-delay: 5s; }
.floating-element:nth-child(3) { left: 20%; bottom: 25%; animation-delay: 10s; }
.floating-element:nth-child(4) { right: 25%; bottom: 35%; animation-delay: 15s; }

@keyframes ctaFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
    25% { opacity: 0.3; }
    50% { transform: translateY(-60px) rotate(180deg) scale(1.2); opacity: 0.1; }
    75% { opacity: 0.2; }
    100% { transform: translateY(0) rotate(360deg) scale(1); opacity: 0.1; }
}

/* Ensure visibility fallback */
.cta-section .cta-container {
    opacity: 1 !important;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.title-decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    position: relative;
}

.title-decoration-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-style: italic;
    opacity: 0.9;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.pricing-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.6));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 40px;
    width: 320px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.card-premium-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover .card-premium-glow {
    opacity: 0.4;
}

.featured-glow {
    opacity: 0.2;
    background: linear-gradient(45deg, var(--accent-orange), #ff8c42, var(--accent-orange));
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

/* Creative Discount Banner */
.creative-discount-banner {
    position: relative;
    margin-bottom: 20px;
    z-index: 5;
}

.banner-ribbon {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffab00 100%);
    padding: 12px 40px;
    border-radius: 0;
    transform: rotate(-5deg);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 107, 53, 0.4);
    animation: ribbonFloat 4s ease-in-out infinite;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-ribbon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
    z-index: -1;
    animation: ribbonShimmer 3s ease-in-out infinite;
}

@keyframes ribbonShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes ribbonFloat {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-3deg) translateY(-5px); }
}

.ribbon-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ribbon-tail-left,
.ribbon-tail-right {
    position: absolute;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
}

.ribbon-tail-left {
    left: 0;
    border-width: 15px 0 0 20px;
    border-color: transparent transparent transparent #cc5429;
}

.ribbon-tail-right {
    right: 0;
    border-width: 15px 20px 0 0;
    border-color: transparent #cc5429 transparent transparent;
}

.discount-banner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: discountPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

@keyframes discountPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.discount-flame {
    animation: flameFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.discount-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.location-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-orange);
    padding: 12px 18px;
    border-radius: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.price-display {
    margin-bottom: 30px;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
    vertical-align: top;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.original-price {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.7;
}

.price-features {
    text-align: left;
    margin-bottom: 25px;
}

.price-features p {
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.price-features p:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.price-features i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.price-features .highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.featured-trust {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Legendary Button Design */
.cta-button-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.button-energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: energyExpand 4s ease-out infinite;
}

.energy-ring:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.energy-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 1.3s; }
.energy-ring:nth-child(3) { width: 160px; height: 160px; animation-delay: 2.6s; }

@keyframes energyExpand {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

.legendary-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffab00 100%);
    color: white;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.btn-holographic-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-energy-core {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.btn-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-icon-orbit {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-orbit i {
    font-size: 1.5rem;
    z-index: 2;
}

.orbit-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: orbitSpin 2s linear infinite;
}

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
}

.btn-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-lightning-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightning-bolt {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lightningStrike 0.5s ease-in-out infinite alternate;
}

.lightning-bolt:nth-child(1) { left: 30%; animation-delay: 0s; }
.lightning-bolt:nth-child(2) { right: 30%; animation-delay: 0.25s; }

@keyframes lightningStrike {
    0% { opacity: 0; transform: scaleY(0); }
    100% { opacity: 1; transform: scaleY(1); }
}

.btn-particle-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { right: 20%; top: 30%; animation-delay: 0.6s; }
.particle:nth-child(3) { left: 30%; bottom: 20%; animation-delay: 1.2s; }
.particle:nth-child(4) { right: 30%; bottom: 30%; animation-delay: 1.8s; }
.particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 2.4s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Hover Effects */
.legendary-register-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(255, 107, 53, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: white;
}

.legendary-register-btn:hover .btn-holographic-layer {
    opacity: 1;
}

.legendary-register-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.legendary-register-btn:hover .btn-lightning-effects {
    opacity: 1;
}

.legendary-register-btn:hover .btn-particle-system {
    opacity: 1;
}

.legendary-register-btn:hover .orbit-trail {
    animation-duration: 0.5s;
}

.legendary-register-btn:active {
    transform: translateY(-5px) scale(1.02);
}

/* Enhanced Footer with Coaches */
.footer-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 60px 0 20px;
    position: relative;
}

.footer-coaches-section {
    text-align: center;
    margin-bottom: 50px;
}

.footer-title {
    margin-bottom: 40px;
}

.footer-title h3 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.footer-coaches-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-coach-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.4));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    min-width: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-coach-card:hover::before {
    opacity: 1;
}

.footer-coach-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.coach-avatar-container {
    position: relative;
    margin-bottom: 20px;
}

.avatar-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: avatarPulse 3s ease-in-out infinite;
}

.footer-coach-card:hover .avatar-glow {
    opacity: 0.6;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coach-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-coach-card:hover .coach-avatar {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.coach-status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 3;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.coach-info {
    text-align: center;
}

.coach-name {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-coach-card:hover .coach-name {
    color: var(--accent-orange);
}

.coach-title {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.coach-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.coach-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.coach-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coaches-luxury-container {
        flex-direction: column;
    }
    
    .coach-brand {
        min-height: 700px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .luxury-frame {
        width: 240px;
        height: 240px;
    }

    
    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .curriculum-luxury-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .curriculum-main-title {
        font-size: 2.5rem;
    }
    
    .title-word {
        margin: 0 8px;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .course-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .coach-showcase {
        padding: 40px 20px;
    }
    
    .luxury-frame {
        width: 200px;
        height: 200px;
    }
    
    .brand-content .coach-name {
        font-size: 1.8rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .brand-tagline {
        flex-direction: column;
        gap: 5px;
    }
    
    .brand-tagline .separator {
        display: none;
    }
    
    .curriculum-main-title {
        font-size: 2rem;
    }
    
    .curriculum-subtitle {
        font-size: 1rem;
    }
    
    .track-header {
        padding: 30px 20px;
    }
    
    .track-title h3 {
        font-size: 1.4rem;
    }
    
    .modules-list {
        padding: 30px 20px;
    }
    
    .module-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .module-number {
        align-self: center;
    }
    
    .element {
        font-size: 2rem;
    }
    
    .outcomes-luxury-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .outcomes-main-title {
        font-size: 2rem;
    }
    
    .outcomes-subtitle {
        font-size: 1rem;
    }
    
    .outcome-luxury-card {
        padding: 30px 20px;
    }
    
    .icon-orbit {
        width: 80px;
        height: 80px;
    }
    
    .outcome-luxury-icon i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .outcome-content h3 {
        font-size: 1.2rem;
    }
    
    .success-particles .particle {
        font-size: 2rem;
    }
    
    .requirements-luxury-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirements-main-title {
        font-size: 2rem;
    }
    
    .requirements-subtitle {
        font-size: 1rem;
    }
    
    .requirement-luxury-card {
        padding: 30px 20px;
    }
    
    .icon-hexagon {
        width: 80px;
        height: 80px;
    }
    
    .icon-hexagon i {
        font-size: 2rem;
    }
    
    .requirement-content h3 {
        font-size: 1.2rem;
    }
    
    .requirement-particles .particle {
        font-size: 2rem;
    }
    
    .decoration-hexagon {
        width: 30px;
        height: 30px;
    }
    
    .hexagon-inner {
        width: 20px;
        height: 20px;
    }
    
    .cta-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .title-decoration-line {
        width: 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .banner-ribbon {
        padding: 10px 30px;
        transform: rotate(-3deg);
    }
    
    .ribbon-tail-left {
        border-width: 12px 0 0 15px;
    }
    
    .ribbon-tail-right {
        border-width: 12px 15px 0 0;
    }
    
    .legendary-register-btn {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .btn-text-container {
        align-items: center;
        text-align: center;
    }
    
    .btn-content-wrapper {
        gap: 15px;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .button-energy-field {
        width: 150px;
        height: 150px;
    }
    
    .energy-ring:nth-child(1) { width: 60px; height: 60px; }
    .energy-ring:nth-child(2) { width: 90px; height: 90px; }
    .energy-ring:nth-child(3) { width: 120px; height: 120px; }
    
    .footer-coaches-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-coach-card {
        min-width: 250px;
        max-width: 300px;
    }
    
    .footer-title h3 {
        font-size: 2rem;
    }
    
    .coach-avatar {
        width: 70px;
        height: 70px;
    }
    
    .coach-links {
        gap: 12px;
    }
    
    .coach-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .gifts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gifts-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .gift-card {
        padding: 30px 20px;
    }
    
    .gift-icon {
        width: 70px;
        height: 70px;
    }
    
    .gift-icon i {
        font-size: 1.8rem;
    }
    
    .value-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .value-content {
        text-align: center;
    }
    
    .value-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .gifts-value-highlight {
        padding: 30px 20px;
    }
    
    .box-container {
        width: 100px;
        height: 100px;
    }
    
    .gift-box {
        width: 70px;
        height: 70px;
    }
    
    .box-body {
        width: 70px;
        height: 50px;
    }
    
    .box-lid {
        width: 74px;
        height: 20px;
    }
    
    .box-ribbon-v {
        width: 6px;
        height: 70px;
        left: 32px;
    }
    
    .box-ribbon-h {
        width: 70px;
        height: 6px;
        top: 32px;
    }
}
