/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Basic Reset */
* {
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.2;
    color: #1f2937;
    margin-top: 0;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background-color: #f47c65;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(244, 124, 101, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e06a55;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(244, 124, 101, 0.25);
}

/* Section styles */
section {
    padding: 80px 0;
}

.highlight {
    background-color: #f5f0e0;
    opacity: 90%;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

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

.highlight-beige {
    background-color: #f5f0e0;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Limited Offer Banner */
.limited-offer-banner {
    background-color: #1f2937;
    color: #ffffff;
    padding: 10px 0;
    position: relative;
}

.limited-offer-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.offer-label {
    background-color: #ffffff;
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}

.limited-offer-banner p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
}

.close-banner {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Header */
header {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}

.logo span {
    color: #f47c65;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

nav ul li a:hover {
    color: #f47c65;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 30px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    color: #4b5563;
}

.notification {
    background-color: #ccf7b9;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    position: absolute;
    right: 16px;
    color: #4b5563;
}

/* Schedule Section */
.schedule {
    text-align: center;
    background-color: #ffffff;
    padding-top: 60px;
}

.schedule-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.4;
    color: #4b5563;
}

.calendly-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 700px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

/* FAQs Section */
.faqs {
    background-color: #f9fafb;
    text-align: center;
    padding: 80px 0;
}

.faqs h2 span {
    color: #f47c65;
}

.faqs > .container > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    text-align: left;
    font-weight: 600;
}

.chevron {
    font-size: 1.5rem;
    color: #f47c65;
    transition: all 0.2s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item:first-child {
    border-left: 3px solid #f47c65;
}

.convinced-text {
    margin-top: 40px;
    font-size: 1.125rem;
}

.scroll-indicator {
    color: #f47c65;
    font-size: 2rem;
    margin-top: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Video Vault Section */
.video-vault {
    text-align: center;
    padding: 80px 0;
}

.video-vault h2 span {
    color: #f47c65;
}

.video-vault > .container > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    background-color: #000;
    border-radius: 8px;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.coming-soon-box {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.coming-soon-box h3 {
    color: #92400e;
}

/* Footer */
footer {
    background-color: #f9fafb;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 500px;
}

.footer-logo h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.footer-logo span {
    color: #f47c65;
}

.company-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.company-info p {
    margin-bottom: 5px;
    font-size: 0.875rem;
    color: #6b7280;
}

.quick-links h3 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    transition: all 0.2s ease;
    font-size: 1rem;
    color: #4b5563;
}

.quick-links ul li a:hover {
    color: #f47c65;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.875rem;
    transition: all 0.2s ease;
    color: #6b7280;
}

.legal-links a:hover {
    color: #f47c65;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.25rem;
    }
    
    .schedule-text {
        font-size: 1.25rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .hero h2 {
        font-size: 1.875rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .schedule-text {
        font-size: 1.125rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .limited-offer-banner .container {
        flex-direction: column;
        padding: 12px;
        text-align: center;
    }
    
    .close-banner {
        position: static;
        transform: none;
        margin-top: 8px;
    }
    
    nav ul {
        gap: 12px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .video-container {
        padding: 20px;
    }
}