/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== LUXURY COLOR PALETTE ===== */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #128C7E;
    --dark-charcoal: #1a1a1a;
    --light-charcoal: #2d2d2d;
    --warm-white: #fefefe;
    --cream: #f8f6f0;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --border-light: #e8e8e8;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

.luxury-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.nav-cta {
    background: var(--gradient-whatsapp);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== HERO SECTION ===== */
.luxury-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--primary-gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
	color: white;
}

.title-subtitle {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
	color: white;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-image {
    position: relative;
    z-index: 10;
    animation: slideInRight 1s ease-out 0.3s both;
}

.image-frame {
    position: relative;
    z-index: 15;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: white;
    padding: 10px;
}

.chef-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 20;
}

.image-frame:hover .chef-photo {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

/* ===== LUXURY BUTTONS ===== */
.luxury-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    text-align: center;
}

.luxury-cta.primary {
    background: var(--gradient-whatsapp);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.luxury-cta.secondary {
    background: var(--gradient-dark);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}

.luxury-cta.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    min-width: 300px;
}

.luxury-cta.mega {
    padding: 1.75rem 3.5rem;
    font-size: 1.3rem;
    min-width: 350px;
}

.luxury-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.luxury-cta.primary:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-text {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.luxury-cta:hover .cta-icon {
    transform: translateX(5px);
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== SECTIONS ===== */
.luxury-section {
    padding: 6rem 0;
    position: relative;
}

.luxury-section:nth-child(even) {
    background: var(--cream);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== PROBLEM SECTION ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* ===== SOLUTION SECTION ===== */
.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
    text-align: center;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    text-align: center;
}

.benefits-container {
    margin: 3rem 0;
}

.benefits-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-charcoal);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border-left: 4px solid var(--whatsapp-green);
}

.benefit-check {
    color: var(--whatsapp-green);
    font-size: 1.3rem;
    font-weight: bold;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--gradient-whatsapp);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===== CHEF SECTION ===== */
.chef-profile {
    max-width: 1000px;
    margin: 0 auto;
}

.chef-name {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.chef-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow-light);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.credential-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-top: 0.5rem;
}

.credential-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.credential-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px var(--shadow-light);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
}

/* ===== CURRICULUM SECTION ===== */
.curriculum-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.marker-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-left: 4px solid var(--primary-gold);
}

.timeline-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.curriculum-list {
    list-style: none;
    padding: 0;
}

.curriculum-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 2rem;
}

.curriculum-list li:last-child {
    border-bottom: none;
}

.curriculum-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--whatsapp-green);
    font-weight: bold;
}

/* ===== BENEFITS SHOWCASE ===== */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.benefit-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.benefit-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.benefit-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* ===== AUDIENCE SECTION ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--whatsapp-green);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.audience-icon {
    color: var(--whatsapp-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.audience-text {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.value-comparison {
    margin: 3rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.comparison-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.comparison-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.comparison-duration {
    color: var(--medium-gray);
    font-size: 1rem;
}

.value-propositions {
    margin: 4rem 0;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-left: 4px solid var(--primary-gold);
}

.prop-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-top: 0.5rem;
}

.prop-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.prop-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.pricing-reveal {
    text-align: center;
    margin: 4rem 0;
}

.original-value {
    margin-bottom: 2rem;
}

.value-text {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.special-offer {
    background: var(--gradient-whatsapp);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.final-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price-main {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-installments {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.urgency-badge {
    display: inline-block;
    background: var(--gradient-whatsapp);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.urgency-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
}

.event-date {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--whatsapp-green);
}

.event-description {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.scarcity-warning {
    font-size: 1.2rem;
    color: var(--whatsapp-green);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border-left: 4px solid var(--primary-gold);
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.final-badge {
    display: inline-block;
    background: var(--gradient-whatsapp);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.final-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    color: var(--whatsapp-green);
    font-weight: bold;
}

.highlight-text {
    font-weight: 600;
}

.contact-info {
    margin-top: 3rem;
    opacity: 0.8;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--whatsapp-green);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.luxury-footer {
    background: var(--dark-charcoal);
    color: white;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--medium-gray);
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    color: var(--whatsapp-green);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
    }
    
    .hero-image {
        position: relative;
        z-index: 15;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.5rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .luxury-cta {
        min-width: 200px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .luxury-cta.large {
        min-width: 250px;
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .luxury-cta.mega {
        min-width: 280px;
        padding: 1.5rem 2.75rem;
        font-size: 1.2rem;
    }
    
    .problems-grid,
    .benefits-showcase,
    .audience-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .curriculum-timeline::before {
        display: none;
    }
    
    .final-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .price-main {
        font-size: 3rem;
    }
    
    .urgency-title,
    .final-title {
        font-size: 2.5rem;
    }
    
    .event-date {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .luxury-cta {
        min-width: 180px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .luxury-cta.large {
        min-width: 220px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .luxury-cta.mega {
        min-width: 250px;
        padding: 1.25rem 2.25rem;
        font-size: 1.1rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .urgency-title,
    .final-title {
        font-size: 2rem;
    }
    
    .event-date {
        font-size: 1.8rem;
    }
}

