﻿/* Landing Page Styles */

/* Landing Brand */
.landing-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--title-color);
    text-decoration: none;
}

.landing-brand .fa-piggy-bank {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px
}

/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Identity Hero - full height for login/register pages */
.identity-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.identity-hero .landing-brand {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.identity-hero .auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.landing-hero .container {
    max-width: 1100px !important;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 320px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-hero-primary:hover {
    background: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-hero-secondary {
    background: #fff;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

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

.hero-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 24px;
    max-width: 380px;
    width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 16px;
}

.mockup-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.mockup-title-group h4 {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.mockup-title-group .profit-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin: 0;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

.mockup-transactions h5 {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.mock-transaction {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mock-transaction:last-child {
    border-bottom: none;
}

.mock-tx-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #64748b;
}

.mock-tx-details {
    flex: 1;
}

.mock-tx-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.mock-tx-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.mock-tx-profit {
    font-weight: 600;
    color: #059669;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.trust-badge i {
    color: #10b981;
}

/* Supported Platforms Section */
.platforms-section {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.platforms-section .container {
    max-width: 1000px;
}

.platforms-label {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.platforms-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
}

.platform-logo {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.platform-logo:hover {
    opacity: 0.8;
}

.platform-logo img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .platforms-logos {
        gap: 24px 32px;
    }

    .platform-logo img {
        height: 22px;
    }
}

/* Section Common Styles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Features Section - Bento Grid */
.features-section {
    background: #f8fafc;
    padding: 80px 0;
}

.features-section .container {
    max-width: 900px !important;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bento-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.bento-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.bento-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bento-large {
    grid-row: span 2;
}

.bento-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
}

.bento-highlight .bento-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.bento-highlight h3,
.bento-highlight p {
    color: #fff;
}

.bento-highlight p {
    opacity: 0.9;
}

/* App Preview Mockup in Bento Card */
.bento-app-preview {
    padding: 0;
    overflow: hidden;
    background: #f8fafc;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.app-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.app-header-text {
    display: flex;
    flex-direction: column;
}

.app-label {
    font-size: 0.75rem;
    color: #64748b;
}

.app-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.app-add-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-year-header {
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.app-month {
    background: #fff;
    margin-bottom: 1px;
}

.app-month-title {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.app-month-title span {
    font-weight: 400;
    color: #94a3b8;
}

.app-transaction {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.app-transaction:last-child {
    border-bottom: none;
}

.app-tx-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.app-tx-details {
    flex: 1;
    min-width: 0;
}

.app-tx-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-tx-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}

.app-tx-profit {
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
    margin-left: 12px;
}

/* App Preview - Users & Chart Layout */
.app-preview-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-users-list {
    padding: 20px;
    background: #fff;
    flex: 1;
}

.app-user-row {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.app-user-row:last-child {
    border-bottom: none;
}

.app-user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.app-user-amounts {
    display: flex;
    gap: 24px;
    margin-bottom: 10px;
}

.app-amount-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.app-amount-item i {
    font-size: 0.8rem;
}

.app-amount-item strong {
    color: #1e293b;
    font-weight: 600;
}

.app-amount-bank i {
    color: #3b82f6;
}

.app-amount-cash i {
    color: #93c5fd;
}

.app-user-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
}

.progress-bar {
    height: 100%;
    transition: width 0.3s ease;
}

.progress-bar-bank {
    background: #3b82f6;
}

.progress-bar-cash {
    background: #93c5fd;
}

.progress-bar-primary {
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.progress-bar-secondary {
    background: linear-gradient(90deg, #93c5fd 0%, #bfdbfe 100%);
}

.app-chart-section {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.donut-chart {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.donut {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot-primary {
    background: #3b82f6;
}

.legend-dot-secondary {
    background: #93c5fd;
}

.legend-text {
    display: flex;
    flex-direction: column;
}

.legend-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

.legend-value {
    font-size: 0.8rem;
    color: #64748b;
}

.bento-wide {
    grid-column: span 2;
    padding: 24px 32px;
}

.bento-visual {
    margin-top: 20px;
}

.mini-form {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.mini-field {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.mini-field:last-of-type {
    border-bottom: none;
}

.field-label {
    color: #64748b;
}

.field-value {
    color: #1e293b;
    font-weight: 500;
}

.mini-result {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.mini-result span:first-child {
    color: #059669;
}

.result-value {
    color: #059669;
    font-size: 1.1rem;
}

.bento-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 6px;
}

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

    .bento-large {
        grid-row: span 1;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .bento-stats {
        flex-direction: column;
        gap: 20px;
    }

    .pain-strip {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    .app-amount {
        font-size: 1.1rem;
    }

    .app-add-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .app-transaction {
        padding: 10px 16px;
    }

    .app-tx-name {
        font-size: 0.85rem;
    }
}

/* Old feature styles - kept for reference but not used */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-section {
    background: #fff;
    padding: 80px 0;
}

.how-section .container {
    max-width: 1100px !important;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    max-width: 280px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.step-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: calc(100% + 10px);
    width: 30px;
    height: 2px;
    background: #e2e8f0;
}

/* Samen Verkopen Section */
.collab-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.collab-section .container {
    max-width: 1100px !important;
}

.collab-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.collab-text {
    flex: 1;
    min-width: 320px;
}

.collab-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.collab-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.collab-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collab-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.collab-features li i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.collab-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.collab-mockup {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 380px;
    width: 100%;
}

.mockup-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    position: relative;
    transition: background 0.2s;
}

.toggle-switch.active {
    background: var(--primary-color);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

.toggle-label {
    font-weight: 600;
    color: #1e293b;
}

.mockup-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mockup-field {
    margin-bottom: 16px;
}

.mockup-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.mockup-field label::after {
    content: ' *';
    color: #DB4437;
}

.mockup-select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.mockup-percentages {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.percent-btn {
    flex: 1;
    padding: 10px 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}

.percent-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.mockup-amount {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 50%, #3b82f6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section .container {
    max-width: 800px !important;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #fff;
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color-hover);
}

/* Pricing Section */
.pricing-section {
    background: #fff;
    padding: 80px 0;
}

.pricing-section .container {
    max-width: 1100px !important;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.pricing-card-featured:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-badge-subtle {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-color);
}

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

.pricing-card-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 14px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.85rem;
    color: #475569;
}

.pricing-features li i {
    color: #10b981;
    font-size: 0.8rem;
    margin-top: 3px;
}

.pricing-features li strong {
    color: #1e293b;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-pricing-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-pricing-primary:hover {
    background: var(--primary-color-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-pricing-secondary {
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.btn-pricing-secondary:hover {
    background: #f1f5f9;
    color: #1e293b;
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .pricing-card-featured {
        order: -1;
    }
}

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

.faq-section .container {
    max-width: 800px !important;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

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

.faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer Landing */
.landing-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
}

.landing-footer .container {
    max-width: 1100px !important;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 50px 0 70px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .trust-badges {
        justify-content: center;
    }

    .hero-mockup {
        max-width: 320px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .step-connector {
        display: none;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .btn-hero {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Landing page overrides */
body.landing-page {
    margin-bottom: 0;
}

body.landing-page .container {
    max-width: 1100px !important;
}
