/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: white;
    font-weight: 800;
    border-radius: var(--radius);
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--background-alt) 0%, var(--background) 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dots span:first-child {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #f59e0b;
}

.dashboard-dots span:nth-child(3) {
    background: #10b981;
}

.dashboard-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.dashboard-content {
    padding: 24px;
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.chat-message.ai .avatar {
    background: var(--gradient);
    color: white;
}

.chat-message.user .avatar {
    background: var(--text-light);
    color: white;
}

.chat-message .message {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
    max-width: 280px;
}

.chat-message.user .message {
    background: var(--primary);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.problem-content h2 {
    color: white;
    margin-bottom: 16px;
    max-width: 600px;
}

.problem-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 48px;
}

.problem-list {
    display: grid;
    gap: 32px;
    max-width: 700px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
}

.problem-item strong {
    display: block;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Solution/Features Section */
.solution-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
}

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

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-content h3 {
    margin-bottom: 12px;
}

/* Case Study */
.case-study {
    padding: 100px 0;
    background: var(--background-alt);
}

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

.case-study-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.case-study-content h2 {
    margin-bottom: 48px;
}

.case-study-highlight {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
}

.highlight-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.case-study-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text);
}

.case-study-cta {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.case-study .btn {
    margin-top: 8px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--background-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    padding: 40px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header p {
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--secondary);
}

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

/* Demo Section with Calendly */
.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.demo-intro {
    padding-top: 40px;
}

.demo-greeting {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.demo-intro h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.demo-intro > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.demo-benefits {
    list-style: none;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 16px;
}

.demo-benefits svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

.demo-calendly {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: var(--radius-lg);
}

/* Legacy form styles for contact page */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
}

.footer-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-highlight {
        gap: 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .case-study-highlight {
        flex-direction: column;
        gap: 32px;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem-section,
    .solution-section,
    .how-it-works,
    .case-study,
    .cta-section {
        padding: 60px 0;
    }

    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-intro {
        padding-top: 0;
        text-align: center;
    }

    .demo-intro h2 {
        font-size: 2rem;
    }

    .demo-benefits {
        display: inline-block;
        text-align: left;
    }
}

/* Legal Pages */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

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

.legal-content h1 {
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 48px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

/* About Page */
.about-page {
    padding: 140px 0 80px;
}

.about-hero {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 24px;
}

.about-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 64px;
}

.about-section h2 {
    margin-bottom: 24px;
}

.about-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.belief-card {
    padding: 24px;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.belief-card h3 {
    margin-bottom: 12px;
}

.belief-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.about-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 64px;
    background: var(--background-alt);
    border-radius: var(--radius-xl);
}

.about-cta h2 {
    margin-bottom: 16px;
}

.about-cta p {
    margin-bottom: 24px;
}

/* Contact Page */
.contact-page {
    padding: 140px 0 80px;
}

.contact-hero {
    text-align: center;
    margin-bottom: 64px;
}

.contact-hero h1 {
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-detail {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.contact-form-section h2 {
    margin-bottom: 32px;
}

.contact-form {
    background: var(--background-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-page,
    .about-page,
    .contact-page {
        padding: 120px 0 60px;
    }
}

/* Landing Page Styles */
.landing-hero {
    text-align: center;
}

.landing-hero .container {
    display: block;
}

.landing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.landing-hero .hero-cta {
    justify-content: center;
}

.landing-hero .hero-stats {
    justify-content: center;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

.content-main h2 {
    margin-bottom: 24px;
}

.content-main p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-main ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-main li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.content-main li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.content-main li strong {
    color: var(--secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.faq-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Vertical Steps */
.steps-vertical {
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 64px;
    width: 2px;
    height: calc(100% - 32px);
    background: var(--border);
}

.step-item .step-number {
    margin: 0;
    flex-shrink: 0;
}

.step-item .step-content {
    text-align: left;
    padding-top: 12px;
}

.step-item .step-content h3 {
    margin-bottom: 8px;
}

/* CTA Section adjustments for landing pages */
.cta-section .cta-content {
    text-align: center;
}

.cta-section .cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* Updated Footer Grid for 5 columns */
.footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .step-item .step-number {
        margin: 0 auto 16px;
    }

    .step-item .step-content {
        text-align: center;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
