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

:root {
    --primary-color: #10b981;
    --primary-dark: #047857;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --gold-thread: #d4af37;
    --gold-light: #f3e5ab;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-light: #f0fdf4;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #dc2626;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --transition: all 0.2s ease-in-out;
}

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



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

/* Navigation */
.navbar {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
}

.method-step {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.method-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgb(0 0 0 / 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.method-step span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--background-light);
}

.problem-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.problem-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 2px;
}

.problem-item p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.problem-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.problem-solution {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Method Section */
.method-section {
    padding: 100px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.method-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgb(0 0 0 / 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.method-icon.root { background: linear-gradient(135deg, #10b981, #047857); }
.method-icon.route { background: linear-gradient(135deg, #22c55e, #15803d); }
.method-icon.thread { background: linear-gradient(135deg, #d4af37, #b8860b); }
.method-icon.diagnosis { background: linear-gradient(135deg, #059669, #065f46); }

.method-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.method-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.method-card ul {
    list-style: none;
    text-align: left;
}

.method-card li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.method-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.method-cta {
    text-align: center;
}

/* Demo Teaser */
.demo-teaser {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 0;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.demo-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.demo-preview {
    display: flex;
    justify-content: center;
}

.demo-mockup {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 400px;
    position: relative;
}

.demo-header-mini {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.demo-text-sample {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-sample {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    padding: 2px 4px;
    border-radius: 3px;
    text-decoration: underline;
    text-decoration-color: #f59e0b;
    text-decoration-style: dotted;
}

.demo-tooltip-sample {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tooltip-mini {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.tooltip-mini.root {
    background: linear-gradient(135deg, #059669, #047857);
}

.tooltip-mini.route {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Study Planner Teaser */
.planner-teaser {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3730a3);
    color: white;
}

.planner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.planner-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.planner-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.calendar-mockup {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.resource-block {
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.resource-block.uworld { background: #1e40af; }
.resource-block.pathoma { background: #dc2626; }
.resource-block.sketchy { background: #059669; }
.resource-block.anki { background: #7c3aed; }

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--background-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 80px;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 80px;
    color: var(--text-dark);
}

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

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.waitlist-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.waitlist-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit i {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.benefit span {
    color: var(--text-dark);
    font-weight: 500;
}

.email-capture {
    max-width: 600px;
    margin: 0 auto 40px;
}

.waitlist-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: #3b82f6;
}

.waitlist-form button {
    white-space: nowrap;
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Form status messages */
.form-status {
    margin-top: 16px;
    text-align: center;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button loading states */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none !important;
    align-items: center;
    gap: 8px;
}

/* Ensure spinner only animates when visible and needed */
.btn-loading .fa-spinner {
    animation: fa-spin 1s infinite linear;
}

.btn-loading[style*="display: none"] .fa-spinner,
.btn-loading:not([style*="display: inline-flex"]) .fa-spinner {
    animation: none !important;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.next-steps {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
}

.next-steps h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--background-light);
    border-radius: 8px;
    text-align: left;
}

.step-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 24px;
}

.step-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-section {
    margin: 40px 0;
}

.cta-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.return-home {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.return-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.return-link:hover {
    color: var(--primary-color);
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .waitlist-form .form-group {
        flex-direction: column;
    }
    
    .waitlist-content h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.keywords-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #374151;
}

.keywords-footer small {
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }

    .planner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* Planner CTA Buttons */
.planner-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.planner-cta-buttons .cta-button.large {
    background: var(--primary-color);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

.planner-cta-buttons .cta-button.secondary.large {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
}

.planner-cta-buttons .cta-button.secondary.large:hover {
    background: var(--primary-color);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .cta-button.large {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

.cta-buttons .cta-button.large:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.cta-buttons .cta-button.secondary.large {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
}

.cta-buttons .cta-button.secondary.large:hover {
    background: white;
    color: var(--primary-color);
}

.cta-guarantee {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .planner-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .planner-cta-buttons .cta-button.large {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-item {
        padding: 24px 20px;
    }
    
    .final-cta-content h2 {
        font-size: 32px;
    }
    
    .final-cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons .cta-button.large {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
} 