/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    font-size: 16px;
}

/* Base anchor styles */
a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: #2c2c2c;
    font-weight: 400;
    font-size: 1.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.nav-logo a {
    color: #2c2c2c;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.nav-menu a:hover {
    color: #1f2937;
}

.cta-button {
    background: #d32f2f;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: calc(100vh - 200px);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.mercury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.highlight {
    color: #d32f2f;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    background: #d32f2f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.secondary-button {
    background: white;
    color: #2c2c2c;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.secondary-button:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

/* Sales Letter Section */
.sales-letter {
    padding: 80px 0;
    background: white;
}

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

.sales-letter-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-letter-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-letter-content strong {
    color: #2c2c2c;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.benefits-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefits-list li i {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.sales-close {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.sales-close-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #fafafa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Name Origin Section */
.name-origin {
    padding: 80px 0;
    background: #d32f2f;
}

.name-origin-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.name-origin-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.name-origin-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Guest Speakers Section */
.guest-speakers {
    padding: 80px 0;
    background: #000000;
    overflow: hidden;
}

.guest-speakers .section-header {
    margin-bottom: 3rem;
}

.guest-speakers .section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 50s linear infinite;
    will-change: transform;
    width: fit-content;
}

.carousel-item {
    flex: 0 0 auto;
    width: calc((min(1200px, 100%) - 4rem) / 3); /* Show 3 images, accounting for 2 gaps, max container width */
    aspect-ratio: 896 / 1394; /* Maintain original image aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: white;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
}

.carousel-item:hover .carousel-overlay {
    height: 35%;
}

.overlay-content {
    padding: 1.5rem;
    padding-top: 2rem;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.carousel-item:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.speaker-company {
    font-size: 1rem;
    color: #d32f2f;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.speaker-company a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.speaker-company a:hover {
    color: #ff5252;
    text-decoration: underline;
}

.speaker-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Georgia', 'Times New Roman', serif;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance, -1696px));
    }
}

/* Pause animation on hover */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-header p {
    font-size: 1.125rem;
    color: #666;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: center;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.currency {
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.amount {
    font-size: 4rem;
    font-weight: 400;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.period {
    font-size: 1.25rem;
    color: #666;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-feature i {
    color: #d32f2f;
    font-size: 1.125rem;
}

.pricing-feature span {
    color: #666;
    font-size: 1rem;
}

.pricing-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-info {
    margin-top: 2rem;
    text-align: center;
}

.pricing-explanation {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #fafafa;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-brand p {
    color: #9ca3af;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .sales-letter-content h2,
    .section-header h2,
    .pricing-header h2,
    .cta-content h2,
    .name-origin-content h2 {
        font-size: 2rem;
    }

    .name-origin-content {
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        justify-content: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .guest-speakers .section-header h2 {
        font-size: 2rem;
    }

    .carousel-item {
        width: calc((100% - 2rem) / 3); /* Show 3 images on mobile too, but adjust gap */
    }

    .overlay-content {
        padding: 1rem;
    }

    .speaker-name {
        font-size: 1.125rem;
    }

    .speaker-company {
        font-size: 0.9375rem;
    }

    .speaker-description {
        font-size: 0.875rem;
    }
}

