/* Reset and Base Styles */
*, *::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;
    line-height: 1.6;
    color: #111827;
    background-color: #fff;
}

/* Typography */
.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    background-color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    border-bottom: 1px solid #f3f4f6;
}

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

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 32px;
    }
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    margin-left: 12px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 48px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a,
.nav-links button:not(.btn) {
    color: #4b5563;
    font-size: 0.875rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links button:not(.btn):hover {
    color: #111827;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #111827;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    padding: 16px 32px;
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-secondary {
    background-color: transparent;
    color: #374151;
    padding: 16px 32px;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

/* Hero Section */
.hero {
    padding-top: 128px;
    padding-bottom: 96px;
}

.hero .container {
    max-width: 896px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f9fafb;
    border-radius: 9999px;
    margin-bottom: 48px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 12px;
}

.badge span:last-child {
    color: #374151;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 64px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    max-width: 896px;
    margin: 0 auto;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    background-color: #f9fafb;
    padding: 16px 32px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-logo {
    width: 32px;
    height: 32px;
}

.dashboard-title {
    font-weight: 500;
    color: #111827;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
}

.dashboard-status span:last-child {
    font-size: 0.875rem;
    color: #4b5563;
}

.dashboard-body {
    padding: 32px;
}

.stats-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid;
}

.stat-blue {
    background-color: #eff6ff;
    border-color: #dbeafe;
}

.stat-blue .stat-header h4 {
    color: #1e3a8a;
}

.stat-blue .stat-header svg {
    color: #2563eb;
}

.stat-blue .stat-value {
    color: #1e3a8a;
}

.stat-blue .stat-label {
    color: #1d4ed8;
}

.stat-purple {
    background-color: #faf5ff;
    border-color: #f3e8ff;
}

.stat-purple .stat-header h4 {
    color: #581c87;
}

.stat-purple .stat-value {
    color: #581c87;
}

.stat-purple .stat-label {
    color: #7e22ce;
}

.stat-green {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}

.stat-green .stat-header h4 {
    color: #14532d;
}

.stat-green .stat-header svg {
    color: #16a34a;
}

.stat-green .stat-value {
    color: #14532d;
}

.stat-green .stat-label {
    color: #15803d;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stat-header h4 {
    font-weight: 500;
    font-size: 0.875rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-dot.purple {
    background-color: #a855f7;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Activity Section */
.activity-section h4 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

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

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.purple {
    background-color: #f3e8ff;
}

.activity-icon.purple svg {
    color: #9333ea;
}

.activity-icon.blue {
    background-color: #dbeafe;
}

.activity-icon.blue svg {
    color: #2563eb;
}

.activity-icon.green {
    background-color: #dcfce7;
}

.activity-icon.green svg {
    color: #16a34a;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.activity-meta {
    font-size: 0.75rem;
    color: #6b7280;
}

.activity-badge {
    font-size: 0.875rem;
    font-weight: 500;
}

.activity-badge.green {
    color: #16a34a;
}

.activity-badge.blue {
    color: #2563eb;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 96px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 32px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 768px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.75;
}

/* Features Section */
.features-section {
    padding: 128px 0;
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.red {
    background-color: #fef2f2;
}

.feature-icon.red svg {
    color: #dc2626;
}

.feature-icon.black {
    background-color: #000;
}

.feature-icon.black svg {
    color: #fff;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
}

.feature-item p {
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
}

/* AI Card */
.ai-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.ai-card-icon {
    width: 64px;
    height: 64px;
    background-color: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.ai-card-icon svg {
    color: #fff;
}

.ai-card h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 32px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-item svg {
    color: #16a34a;
    flex-shrink: 0;
}

.check-item span {
    color: #374151;
    font-weight: 300;
}

/* How it Works Section */
.how-it-works-section {
    padding: 128px 0;
}

.agents-grid {
    display: grid;
    gap: 64px;
}

@media (min-width: 1024px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.agent-card {
    border-radius: 24px;
    padding: 48px;
    border: 1px solid;
}

.agent-card.maya {
    background: linear-gradient(to bottom right, #faf5ff, #eff6ff);
    border-color: #f3e8ff;
}

.agent-card.xeni {
    background: linear-gradient(to bottom right, #eff6ff, #f0fdfa);
    border-color: #dbeafe;
}

.agent-header {
    text-align: center;
    margin-bottom: 48px;
}

.agent-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.agent-icon.purple {
    background-color: #9333ea;
}

.agent-icon.blue {
    background-color: #2563eb;
}

.agent-icon svg {
    color: #fff;
}

.agent-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

.agent-role {
    font-weight: 500;
}

.agent-role.purple {
    color: #9333ea;
}

.agent-role.blue {
    color: #2563eb;
}

.agent-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agent-feature {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f3f4f6;
}

.agent-feature h4 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
}

.agent-feature p {
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
}

/* Workflow Section */
.workflow-section {
    padding: 128px 0;
    background-color: #f9fafb;
}

.workflow-title {
    font-size: 3rem !important;
}

@media (min-width: 768px) {
    .workflow-title {
        font-size: 3.75rem !important;
    }
}

.workflow-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 300;
    margin-top: 16px;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-0.5px);
    height: 100%;
    width: 1px;
    background-color: #e5e7eb;
}

@media (min-width: 1024px) {
    .timeline-line {
        display: block;
    }
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .timeline-item {
        flex-direction: row;
    }
}

.timeline-content {
    width: 100%;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .timeline-content {
        width: 50%;
        margin-bottom: 0;
    }

    .timeline-content.left {
        padding-right: 64px;
    }

    .timeline-content.right {
        padding-left: 64px;
    }
}

.timeline-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid #f3f4f6;
    position: relative;
    text-align: center;
}

.timeline-card.purple {
    background: linear-gradient(to bottom right, #faf5ff, #f3e8ff);
    border-color: #e9d5ff;
}

.timeline-card.blue {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
}

.timeline-card.green {
    background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
}

.step-number {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    background-color: #111827;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
}

.step-number.purple {
    background-color: #9333ea;
    right: -16px;
    left: auto;
}

.step-number.blue {
    background-color: #2563eb;
    right: -16px;
    left: auto;
}

.step-number.green {
    background-color: #16a34a;
}

.maya-label,
.xeni-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.maya-label svg {
    color: #9333ea;
}

.maya-label span {
    font-size: 1.125rem;
    font-weight: 500;
    color: #581c87;
}

.xeni-label svg {
    color: #2563eb;
}

.xeni-label span {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e3a8a;
}

.timeline-stat {
    font-size: 3.75rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.timeline-card:not(.purple):not(.blue):not(.green) .timeline-stat {
    color: #111827;
}

.timeline-card.purple .timeline-stat {
    color: #581c87;
}

.timeline-card.blue .timeline-stat {
    color: #1e3a8a;
}

.timeline-card.green .timeline-stat {
    color: #14532d;
}

.timeline-stat-label {
    font-size: 1.125rem;
    font-weight: 300;
}

.timeline-card:not(.purple):not(.blue):not(.green) .timeline-stat-label {
    color: #4b5563;
}

.timeline-card.purple .timeline-stat-label {
    color: #7e22ce;
}

.timeline-card.blue .timeline-stat-label {
    color: #1d4ed8;
}

.timeline-card.green .timeline-stat-label {
    color: #15803d;
}

.timeline-stat-sub {
    font-size: 0.875rem;
    margin-top: 8px;
}

.timeline-card:not(.purple):not(.blue):not(.green) .timeline-stat-sub {
    color: #6b7280;
}

.timeline-card.purple .timeline-stat-sub {
    color: #9333ea;
}

.timeline-card.blue .timeline-stat-sub {
    color: #2563eb;
}

.timeline-card.green .timeline-stat-sub {
    color: #16a34a;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.timeline-content > p {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f0fdf4;
    border-radius: 9999px;
    margin-top: 24px;
}

.success-badge svg {
    color: #16a34a;
}

.success-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #15803d;
}

/* Workflow Stats */
.workflow-stats {
    display: grid;
    gap: 32px;
    max-width: 896px;
    margin: 96px auto 0;
}

@media (min-width: 768px) {
    .workflow-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.workflow-stat {
    text-align: center;
}

.workflow-stat-value {
    font-size: 1.875rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 8px;
}

.workflow-stat p {
    color: #4b5563;
    font-weight: 300;
}

/* Impact Section */
.impact-section {
    padding: 128px 0;
}

.impact-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-card {
    text-align: center;
}

.impact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.impact-icon.green {
    background-color: #f0fdf4;
}

.impact-icon.green svg {
    color: #16a34a;
}

.impact-icon.blue {
    background-color: #eff6ff;
}

.impact-icon.blue svg {
    color: #2563eb;
}

.impact-icon.purple {
    background-color: #faf5ff;
}

.impact-icon.purple svg {
    color: #9333ea;
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 24px;
}

.impact-card > p {
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 32px;
}

.impact-stat-box {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

.impact-stat-value {
    font-size: 2.25rem;
    font-weight: 300;
}

.impact-stat-value.green {
    color: #16a34a;
}

.impact-stat-value.blue {
    color: #2563eb;
}

.impact-stat-value.purple {
    color: #9333ea;
}

.impact-stat-box p {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 8px;
    font-weight: 300;
}

/* Strategy Section */
.strategy-section {
    padding: 128px 0;
    background-color: #f9fafb;
}

.strategy-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.strategy-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.strategy-item p {
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
}

.strategy-visual {
    display: flex;
    justify-content: center;
}

.strategy-visual img {
    width: 100%;
    max-width: 512px;
    height: auto;
}

/* CTA Section */
.cta-section {
    padding: 128px 0;
    background-color: #fff;
}

.cta-section .container {
    max-width: 896px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 32px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 64px;
    line-height: 1.75;
    font-weight: 300;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    color: #6b7280;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 64px 0;
    border-top: 1px solid #f3f4f6;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 300;
}

/* ==========================================
   PRICING PAGE STYLES
   ========================================== */

/* Back Link */
.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #111827;
}

/* Pricing Hero */
.pricing-hero {
    padding-top: 128px;
    padding-bottom: 64px;
    text-align: center;
}

.pricing-hero .container {
    max-width: 896px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3.75rem;
    }
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 300;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 9999px;
    padding: 4px;
    margin-bottom: 64px;
}

.toggle-btn {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: #4b5563;
}

.toggle-btn:hover {
    color: #111827;
}

.toggle-btn.active {
    background-color: #fff;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.save-badge {
    margin-left: 8px;
    font-size: 0.75rem;
    background-color: #dcfce7;
    color: #15803d;
    padding: 4px 8px;
    border-radius: 9999px;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding-bottom: 96px;
}

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

@media (min-width: 1024px) {
    .container-lg {
        padding: 0 32px;
    }
}

.pricing-grid {
    display: grid;
    gap: 32px;
}

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

/* Pricing Card */
.pricing-card {
    position: relative;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    padding: 40px 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #1f2937;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: #fff;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 32px;
}

.pricing-card-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.pricing-card-header > p {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 300;
    color: #111827;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

.price-savings {
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: none;
}

.price-savings.visible {
    display: block;
}

.price-spacer {
    height: 21px;
    margin-bottom: 24px;
}

.price-spacer.hidden {
    display: none;
}

.full-width {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
}

.pricing-card .btn-outline {
    border: 1px solid #d1d5db;
    background: #fff;
}

.pricing-card .btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.pricing-card .btn-primary {
    background-color: #111827;
}

.pricing-card .btn-primary:hover {
    background-color: #374151;
}

/* Pricing Features */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.x-icon {
    color: #d1d5db;
    flex-shrink: 0;
}

.feature-row span {
    color: #374151;
    font-weight: 300;
}

/* Comparison Section */
.comparison-section {
    padding: 96px 0;
    background-color: #f9fafb;
}

.comparison-section .section-header {
    margin-bottom: 64px;
}

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

/* Desktop Table */
.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
}

.comparison-table-wrapper {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: center;
}

.comparison-table thead th {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead th:first-child {
    text-align: left;
    color: #111827;
    font-weight: 600;
}

.comparison-table th.highlight {
    background-color: #f3f4f6;
}

.comparison-table td.highlight {
    background-color: rgba(243, 244, 246, 0.5);
}

.comparison-table td {
    color: #374151;
    font-size: 0.9375rem;
}

.comparison-table td:first-child {
    text-align: left;
    color: #374151;
    font-weight: 400;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table .section-row {
    background-color: #f9fafb;
}

.comparison-table .section-row td {
    font-weight: 600;
    color: #374151;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    padding: 16px 24px;
}

.comparison-table svg {
    margin: 0 auto;
}

.comparison-table .check-icon {
    color: #16a34a;
}

.comparison-table .x-icon {
    color: #d1d5db;
}

/* Mobile Comparison */
.mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }
}

.mobile-comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-comparison-card {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.mobile-comparison-header {
    background-color: #f9fafb;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-comparison-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-feature h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    font-size: 1rem;
}

.mobile-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mobile-plan {
    text-align: center;
    padding: 16px 8px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.mobile-plan.highlight {
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

.mobile-plan .plan-name {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
}

.mobile-plan > span:last-child,
.mobile-plan > .plan-value {
    font-size: 0.9375rem;
    color: #111827;
    font-weight: 500;
}

.mobile-plan .x-icon {
    color: #d1d5db;
}

/* FAQ Section */
.faq-section {
    padding: 96px 0;
}

.faq-section .container {
    max-width: 896px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 32px;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.faq-item p {
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
}

/* Bottom CTA */
.bottom-cta {
    padding: 96px 0;
    background-color: #f9fafb;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 24px;
}

.bottom-cta p {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 300;
    margin-bottom: 48px;
}

.bottom-cta .btn {
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-header {
        margin-bottom: 64px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 64px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 48px;
    }

    .hero-buttons {
        margin-bottom: 48px;
    }

    .features-section,
    .how-it-works-section,
    .workflow-section,
    .impact-section,
    .strategy-section,
    .cta-section {
        padding: 80px 0;
    }

    .dashboard-header {
        padding: 12px 16px;
    }

    .dashboard-body {
        padding: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .activity-item {
        flex-wrap: wrap;
    }

    .activity-badge {
        width: 100%;
        margin-top: 8px;
    }

    .timeline-card {
        padding: 32px;
    }

    .step-number {
        top: -12px;
        left: -12px;
        width: 40px;
        height: 40px;
    }

    .step-number.purple,
    .step-number.blue {
        right: -12px;
    }

    .timeline-stat {
        font-size: 3rem;
    }
}
