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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --accent-color: #f59e0b;
    --primary-text: #1f2937;
    --body-text: #4b5563;
    --light-bg: #f3f4f6;
}

/* Typography Base Styles */
.montserrat-text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: var(--body-text);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

/* Specific heading styles */
h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

/* Navigation */
.nav-brand {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-text);
    z-index: 11;
}

/* Buttons */
.cta-button {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* Hero section */
.hero-title {
    font-weight: 800;
}

.hero-subtitle {
    font-weight: 500;
}

/* Stats */
.stat-number {
    font-weight: 700;
}

.stat-label {
    font-weight: 500;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    width: auto;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-text);
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: #f3f4f6;
    color: #374151;
}

.cta-button.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.primary-cta {
    font-size: 1.2rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.primary-cta:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    min-height: 90vh;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

/* Temporarily hidden urgency banner styles
.urgency-banner {
    background-color: #dc2626;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.urgency-banner i {
    color: #fef3c7;
}
*/

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.highlight {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.guarantee:before {
    content: "🛡️";
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    left: 0;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 0;
    right: 20%;
    animation-delay: 4s;
}

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

.floating-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.floating-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.floating-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: #f9fafb;
    text-align: center;
}

.social-proof-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    opacity: 0.7;
}

/* Problem Solution */
.problem-solution {
    padding: 5rem 0;
    background: white;
}

.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem, .solution {
    padding: 2rem;
}

.problem {
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.solution {
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
}

.problem h2, .solution h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.problem h2 {
    color: #dc2626;
}

.solution h2 {
    color: #16a34a;
}

.pain-points, .benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-point, .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.pain-point i {
    color: #dc2626;
    font-size: 1.1rem;
}

.benefit i {
    color: #16a34a;
    font-size: 1.1rem;
}

/* Course Details */
.course-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.course-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
}

.price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.old-price {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.discount {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.feature i {
    color: #2563eb;
    font-size: 1.1rem;
}

/* Curriculum */
.curriculum {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.curriculum h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #1f2937;
}

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

.curriculum-item {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.week-number {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.curriculum-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    margin-top: 0.5rem;
}

.curriculum-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.curriculum-item li {
    padding-left: 1.5rem;
    position: relative;
    color: #6b7280;
}

.curriculum-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .name {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.testimonial-author .title {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
}

/* Scarcity Section */
.scarcity {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
}

.scarcity-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scarcity-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enrollment Section */
.enrollment {
    padding: 5rem 0;
    background: #f9fafb;
}

.enrollment-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.step {
    display: none;
    padding: 3rem;
}

.step.active {
    display: block;
}

.step h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Order Summary */
.order-summary {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.course-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.summary-details span {
    color: #6b7280;
    font-size: 0.9rem;
}

.summary-details span:before {
    content: "✓ ";
    color: #16a34a;
    font-weight: bold;
}

.price-summary {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-line.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Schedule Options */
.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.schedule-option {
    cursor: pointer;
    position: relative;
}

.schedule-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.schedule-option input[type="radio"]:checked + .option-content {
    border-color: #2563eb;
    background: #eff6ff;
}

.option-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.option-content p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.availability {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Payment Form */
.payment-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.step-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Success Message */
.success-message {
    text-align: center;
}

.success-message i {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.success-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.next-steps {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.next-steps h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.next-steps ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.next-steps li {
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: var(--primary-text);
    position: relative;
}

.faq-question span {
    flex: 1;
    padding-right: 2rem; /* Add space for the arrow */
}

.faq-question i {
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--body-text);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.made-with-love {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--body-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.made-with-love i {
    color: #e11d48;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav {
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        gap: 0;
        z-index: 9;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-links .cta-button {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 140px 1rem 60px;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat {
        min-width: 100px;
        flex: 1;
        max-width: 120px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }

    .primary-cta {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .guarantee {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .hero-visual {
        display: none;
    }

    /* Strategy Session */
    .strategy-session {
        padding: 3rem 0;
    }

    .session-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .session-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .session-benefits li {
        font-size: 1rem;
    }

    .session-stats {
        justify-content: center;
        gap: 1rem;
    }

    .consultation-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Problem Solution */
    .problem-solution .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem, .solution {
        padding: 2rem 1.5rem;
    }

    /* Course Details */
    .course-card {
        margin: 0 1rem;
    }
    
    .course-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price {
        align-self: flex-start;
    }

    /* Curriculum */
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .curriculum-item {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Scarcity Section */
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.75rem;
    }

    /* Enrollment Form */
    .enrollment-form {
        padding: 2rem 1rem;
    }

    .step {
        padding: 2rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .step-buttons button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .made-with-love {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .session-text h2 {
        font-size: 1.75rem;
    }

    .session-content {
        padding: 1rem;
    }

    .session-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step {
        padding: 1.5rem 0.75rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .curriculum-item {
        padding: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .primary-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .consultation-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .faq-question {
        min-height: 60px;
    }

    .schedule-option {
        min-height: 60px;
    }
}

/* Strategy Session */
.strategy-session {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, var(--light-bg));
}

.session-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.exclusive-tag {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.session-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, var(--primary-text), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.session-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--body-text);
}

.session-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.session-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.session-benefits i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.session-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.session-stats .stat {
    text-align: center;
}

.session-stats .number {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-text);
    display: block;
}

.session-stats .label {
    font-size: 0.875rem;
    color: var(--body-text);
    display: block;
    margin-top: 0.25rem;
}

.session-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.availability-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b91c1c;
    font-weight: 500;
    font-size: 0.875rem;
}

.consultation-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-color);
    transition: transform 0.2s ease;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.no-obligation {
    font-size: 0.875rem;
    color: var(--body-text);
    text-align: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--body-text);
}

.indicator i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .session-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .session-text h2 {
        font-size: 2rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 60px;
    background-color: #fff;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--body-text);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--body-text);
}

.legal-page ul, .legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--body-text);
}

.legal-page strong {
    color: var(--primary-text);
    font-weight: 600;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }

    .legal-page .container {
        padding: 0 1rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }

    .legal-page h3 {
        font-size: 1.125rem;
    }

    .legal-page ul, .legal-page ol {
        padding-left: 1.5rem;
    }
} 