/* General Styles */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #343a40;
    --accent-color: #28a745;
    --accent-dark: #218838;
    --light-background: #f8f9fa;
    --white-color: #ffffff;
    --dark-text: #212529;
    --light-text: #f8f9fa;
    --gray-text: #6c757d;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--white-color);
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 5%;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Header */
.animated-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    max-width: 150px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color), 0 0 15px var(--accent-color);
    }
    50% {
        box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite alternate;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    padding: 18px 36px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 1.2em;
}

.microcopy {
    font-size: 0.9em;
    color: var(--gray-text);
    margin-top: 10px;
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3em;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1em;
    color: var(--dark-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9em;
    color: var(--gray-text);
    font-weight: 500;
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.play-button i {
    font-size: 2em;
    margin-left: 5px;
}

.video-overlay h4 {
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
}

/* What You'll Learn Section */
.what-you-learn-section {
    padding: 100px 0;
    background: var(--white-color);
}

.learn-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.learn-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.learn-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.learn-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5em;
    flex-shrink: 0;
}

.learn-item p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

/* Why Fail Section */
.why-fail-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-fail-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.fail-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--danger-color);
    margin-bottom: 20px;
}

.fail-intro {
    font-size: 1.2em;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.fail-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.fail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.fail-icon {
    width: 40px;
    height: 40px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.bridge-text {
    padding: 30px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.bridge {
    font-style: italic;
    font-size: 1.1em;
    color: var(--gray-text);
    margin: 0;
}

.warning-graphic {
    text-align: center;
    padding: 40px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.warning-icon {
    width: 120px;
    height: 120px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 3em;
}

.warning-text {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--danger-color);
    margin-bottom: 10px;
}

.warning-subtext {
    font-size: 1.1em;
    color: var(--gray-text);
}

/* My Story Section */
.my-story-section {
    padding: 100px 0;
    background: var(--white-color);
}

.my-story-section .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.photo-frame {
    position: relative;
    text-align: center;
}

.story-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

.photo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.experience-badge {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge span {
    font-size: 1.2em;
    font-weight: 700;
    display: block;
}

.experience-badge small {
    font-size: 0.8em;
}

.story-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white-color);
    box-shadow: var(--shadow-light);
}

.timeline-item p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

.pull-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    font-size: 1.3em;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.pull-quote i:first-child {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1.5em;
    opacity: 0.7;
}

.pull-quote i:last-child {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 1.5em;
    opacity: 0.7;
}

/* Sales Process Section */
.sales-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sales-process-section .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.process-diagram {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    position: relative;
    text-align: center;
}

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

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9em;
}

.step-arrow {
    font-size: 2em;
    color: var(--primary-color);
    font-weight: bold;
}

.process-overlay {
    font-size: 4em;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caption {
    font-size: 0.9em;
    color: var(--gray-text);
    font-style: italic;
    margin-top: 20px;
}

.process-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-content h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.process-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.bridge-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.bridge-cta p {
    margin: 0;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--dark-text);
}

/* Scarcity & Urgency Section */
.scarcity-urgency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 4em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.scarcity-urgency-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}

.urgency-text p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.timer-number {
    font-size: 2.5em;
    font-weight: 800;
    display: block;
    color: var(--white-color);
}

.timer-label {
    font-size: 0.9em;
    opacity: 0.8;
}

.scarcity-urgency-section .cta-button {
    background: var(--accent-color);
    font-size: 1.3em;
    padding: 20px 40px;
}

.scarcity-urgency-section .cta-button:hover {
    background: var(--accent-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white-color);
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-background);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    padding: 25px 30px;
    margin: 0;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    font-weight: 600;
    transition: var(--transition);
}

.faq-item h3:hover {
    background: rgba(0, 123, 255, 0.05);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 1.5em;
    transition: var(--transition);
}

.faq-item.active h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item .answer {
    display: none;
    padding: 0 30px 30px;
    border-top: 1px solid #dee2e6;
}

.faq-item.active .answer {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--white-color);
    border-radius: 8px;
    font-size: 0.95em;
    box-shadow: var(--shadow-light);
}

.service-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
    color: var(--white-color);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}

.final-description p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-cta-button-container {
    margin-top: 40px;
}

.mega-button {
    font-size: 1.4em;
    padding: 25px 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    position: relative;
    overflow: hidden;
}

.mega-button:hover {
    transform: translateY(-3px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mega-button:hover .button-shine {
    left: 100%;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white-color);
    margin: 5% auto;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-heavy);
    animation: fadeInUp 0.3s ease-out;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.5em;
}

.close {
    color: var(--gray-text);
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--danger-color);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container,
    .why-fail-section .container,
    .my-story-section .container,
    .sales-process-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .learn-points {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: center;
    }

    .countdown-timer {
        gap: 15px;
    }

    .timer-item {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 2em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2em;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .timer-item {
        flex: 1;
        min-width: 120px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1em;
    }

    .mega-button {
        padding: 20px 30px;
        font-size: 1.2em;
    }

    .container {
        width: 95%;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
