/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #1a1a1a;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.4rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Colors */
.primary-bg {
    background-color: #2563EB;
}

.secondary-bg {
    background-color: #f3f4f6;
}

.accent {
    color: #2563EB;
}

/* Sections */
section {
    padding: 5rem 0;
}

.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1, .hero .subheadline {
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Make video responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 2rem;
}

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


/* Cards and features */
/* Cards and features */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    border-top: 4px solid #2563EB;
}

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

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 1.8rem;
    color: #2563EB;
    margin-bottom: 1rem;
}

/* Who this is not for section */
.not-for {
    background-color: #fff7ed;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #f97316;
}

.not-for h3 {
    color: #c2410c;
}

/* Results section */
.results {
    background-color: #f3f4f6;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* Case Study Styles */
.case-study-container {
    margin: 3rem 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.results-data {
    margin-top: 2rem;
    text-align: center;
}

.image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.yellow {
    background-color: #fbbf24;
}

.green {
    background-color: #22c55e;
}

.full-width-image {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #e0f2fe;
    border-radius: 8px;
    color: #1e40af;
}

.result-caption {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.testimonial-author {
    font-weight: 600;
    font-style: italic;
    color: #4b5563;
    margin-top: 0.5rem;
}

.before {
    border-top: 4px solid #eab308;
}

.after {
    border-top: 4px solid #22c55e;
}

/* Guarantee section */
.guarantee {
    text-align: center;
    padding: 3rem 0;
}

.guarantee-badge {
    background-color: #dcfce7;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #22c55e;
}

.guarantee-badge span {
    color: #166534;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
}

/* CTA styles */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.cta-section h2, .cta-section p {
    color: white;
}

.btn {
    display: inline-block;
    background-color: #f97316;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    border-radius: 10px;
}

/* Testimonials */
.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 6rem;
    color: #2563EB;
    font-family: Georgia, serif;
    opacity: 0.2;
}

/* List styles */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Check mark list */
.check-list {
    list-style: none;
    margin-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.check-list li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 2px;
}

/* Limited spots badge */
.limited-spots {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin: 2rem 0;
    text-align: center;
    border: 2px dashed #b91c1c;
}

/* Image placeholders */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-image {
    width: 100%;
    height: 300px;
    background-color: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.grid-image.before {
    background-color: #fef3c7;
}

.grid-image.after {
    background-color: #d1fae5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .results-grid, .image-grid, .case-study-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Custom emoji styles */
.emoji {
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Section headers with emoji */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header .emoji {
    margin-right: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #777;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    padding: 20px;
    margin: 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.calendar-container {
    padding: 0;
    overflow: auto;
    flex: 1;
}

.calendar-container iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Button style (if you don't already have it) */
.btn {
    display: inline-block;
    background-color: #f97316;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    border-radius: 10px;
}