/* Landing Page Specific Styles */

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 96px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero h1 .line1 {
    display: block;
    color: #059669;
    font-weight: 900;
}

.hero h1 .line2 {
    display: block;
    color: #059669;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 24px;
    color: #5E4A42;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-description {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 24px;
    color: #5E4A42;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 700;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-primary {
    background: #10b981;
    padding: 18px 48px;
    font-size: 22px;
}

.cta-primary:hover {
    background: #059669;
}

.cta-secondary {
    background: #3d3835;
    padding: 18px 48px;
    font-size: 22px;
}

.cta-secondary:hover {
    background: #2f2b28;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.platform-support {
    font-size: 18px;
    color: #6b6b6b;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.scarcity-line {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 16px;
    color: #059669;
    font-weight: 600;
    padding-top: 12px;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

/* Features Section */
.features-section {
    padding: 80px 0 40px;
    text-align: center;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.features-header {
    margin-bottom: 60px;
}

.features-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.features-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #5E4A42;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    border: 2px solid #10b981;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.feature-preview {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 40px;
    }

    .features-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-preview {
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .features-title {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-preview {
        padding: 16px;
        min-height: 200px;
    }
}

/* Dashboard Preview */
.dashboard-preview {
    background: linear-gradient(to bottom, #10b981 0%, #059669 100%);
    padding: 24px;
    border-radius: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    box-sizing: border-box;
    overflow: hidden;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.dashboard-main {
    background: white;
    border-radius: 16px;
    padding: 20px;
    min-width: 0;
}

.preview-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    min-width: 0;
}

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

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title-large {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.status-badge {
    background: #fef3cd;
    color: #c47519;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.goal-stats {
    margin-bottom: 16px;
}

.goal-number-display {
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1;
    margin-bottom: 8px;
}

.goal-current {
    color: #10b981;
}

.goal-separator {
    color: #d1d5db;
}

.goal-target {
    color: #2d2d2d;
}

.goal-label {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.5;
}

.goal-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-bar-fill {
    height: 100%;
    background: #10b981;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    background: #f3f4f6;
    color: #2d2d2d;
    pointer-events: none;
}

.btn-full {
    width: 100%;
}

.edit-icon {
    width: 16px;
    height: 16px;
}

.streak-content {
    text-align: center;
}

.streak-number-display {
    margin-bottom: 20px;
}

.streak-number {
    font-size: 64px;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    display: block;
}

.streak-label {
    font-size: 18px;
    color: #6b6b6b;
    font-weight: 500;
}

.streak-chart-container {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.streak-bar {
    width: 32px;
    background: #10b981;
    border-radius: 4px 4px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.streak-bar-label {
    position: absolute;
    top: -20px;
    font-size: 11px;
    font-weight: 600;
    color: #2d2d2d;
}

.freeze-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.freeze-icon {
    width: 16px;
    height: 16px;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.kpi-item {
    background: #f9fafb;
    padding: 12px;
    border-radius: 12px;
}

.kpi-label {
    font-size: 12px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.kpi-value {
    font-size: 36px;
    font-weight: 800;
    color: #2d2d2d;
}

.kpi-score {
    color: #10b981;
}

.chart-wrapper {
    margin-top: 32px;
    height: 300px;
}

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.chart-canvas {
    width: 100%;
    height: 250px;
}

@media (max-width: 968px) {
    .dashboard-preview {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .dashboard-sidebar {
        gap: 10px;
    }

    .preview-card {
        padding: 14px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .kpi-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .kpi-item {
        padding: 12px;
    }

    .kpi-value {
        font-size: 28px;
    }

    .chart-wrapper {
        height: 250px;
    }

    .chart-canvas {
        height: 200px;
    }

    .goal-number-display {
        font-size: 40px;
    }

    .streak-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .dashboard-preview {
        padding: 12px;
        gap: 10px;
    }

    .preview-card {
        padding: 10px;
    }

    .dashboard-main {
        padding: 12px;
    }

    .kpi-row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .kpi-item {
        padding: 10px;
    }

    .card-title-large {
        font-size: 20px;
    }

    .kpi-value {
        font-size: 24px;
    }

    .goal-number-display {
        font-size: 32px;
    }

    .streak-number {
        font-size: 40px;
    }
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 20px;
        padding: 0 16px;
    }

    .cta-group {
        flex-direction: column;
        padding: 0 24px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 16px 32px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 {
        font-size: 72px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 40px 0;
    scroll-margin-top: 100px;
}

.how-it-works-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-it-works-content {
    text-align: left;
}

.how-it-works-header {
    margin-bottom: 60px;
}

.how-it-works-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 16px;
}

.how-it-works-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5E4A42;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #10b981;
    min-width: 48px;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.6;
}

.how-it-works-closing {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.how-it-works-closing p {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    font-style: italic;
}

/* Visual Side - Dashboard Mockup */
.how-it-works-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Expense Widget - Pie Chart */
.expense-widget {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    padding: 28px;
    width: 100%;
    max-width: 360px;
}

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

.widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.widget-period {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b6b6b;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 20px;
}

.widget-chart {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

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

.pie-segment {
    fill: none;
    stroke-width: 20;
    stroke-linecap: round;
}

.segment-food { stroke: #10b981; }
.segment-transport { stroke: #3b82f6; }
.segment-shopping { stroke: #f59e0b; }
.segment-entertainment { stroke: #8b5cf6; }
.segment-bills { stroke: #ef4444; }

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-total-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-total-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #2d2d2d;
    margin-top: 4px;
}

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

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

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.color-food { background: #10b981; }
.color-transport { background: #3b82f6; }
.color-shopping { background: #f59e0b; }
.color-entertainment { background: #8b5cf6; }
.color-bills { background: #ef4444; }

.legend-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
    flex: 1;
}

.legend-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
}

.dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    padding: 24px;
    width: 100%;
    max-width: 480px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.mockup-user {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.mockup-welcome {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    color: white;
}

.mockup-welcome-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.mockup-welcome-name {
    font-size: 24px;
    font-weight: 700;
}

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

.mockup-stat-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
}

.mockup-stat-label {
    font-size: 12px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.mockup-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #2d2d2d;
}

.mockup-stat-value.streak {
    color: #10b981;
}

.mockup-stat-suffix {
    font-size: 14px;
    font-weight: 500;
    color: #6b6b6b;
}

.mockup-progress {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.mockup-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mockup-progress-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.mockup-progress-count {
    font-size: 14px;
    font-weight: 700;
}

.mockup-progress-count span {
    color: #10b981;
}

.mockup-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.mockup-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    width: 67%;
}

.mockup-notification {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mockup-notification-icon {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.mockup-notification-time {
    color: #9a8a82;
    font-weight: 500;
    margin-left: 4px;
}

.mockup-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.mockup-platforms-label {
    font-size: 12px;
    color: #6b6b6b;
}

.mockup-platform-icons {
    display: flex;
    gap: 8px;
}

.mockup-platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

@media (max-width: 968px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .how-it-works-content {
        order: 1;
    }

    .how-it-works-visual {
        order: 2;
        padding: 20px;
    }

    .how-it-works-title {
        font-size: 36px;
    }

    .dashboard-mockup {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .how-it-works-title {
        font-size: 28px;
    }

    .steps-container {
        gap: 32px;
    }

    .step {
        gap: 16px;
    }

    .step-number {
        font-size: 28px;
        min-width: 40px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .dashboard-mockup {
        padding: 16px;
    }

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

    .mockup-stat-value {
        font-size: 28px;
    }
}

/* Platforms Section */
.platforms-section {
    padding: 20px 0 80px;
    text-align: center;
}

.platforms-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #9a8a82;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.platforms-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.platform-item {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.platform-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.platform-more {
    background: #f9fafb;
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 600;
}

.platforms-tagline {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #5E4A42;
}

@media (max-width: 480px) {
    .platforms-row {
        gap: 20px;
    }

    .platform-item {
        width: 56px;
        height: 56px;
    }

    .platform-item img {
        width: 32px;
        height: 32px;
    }

    .platforms-tagline {
        font-size: 16px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #2d2d2d;
    color: white;
    scroll-margin-top: 100px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pricing-toggle-label.active {
    color: white;
}

.pricing-toggle-switch {
    width: 56px;
    height: 30px;
    background: #4d4d4d;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pricing-toggle-switch.yearly {
    background: #10b981;
}

.pricing-toggle-knob {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.2s ease;
}

.pricing-toggle-switch.yearly .pricing-toggle-knob {
    transform: translateX(26px);
}

.pricing-save-badge {
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #3d3d3d;
    border-radius: 24px;
    padding: 32px;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scale(1.02);
}

.pricing-card.featured .pricing-card-subtitle,
.pricing-card.featured .pricing-card-price-period,
.pricing-card.featured .pricing-card-yearly {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #059669;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-tier {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-card-tier {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card-subtitle {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 24px;
}

.pricing-card-price {
    margin-bottom: 8px;
}

.pricing-card-price-amount {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
}

.pricing-card-price-period {
    font-size: 16px;
    color: #a0a0a0;
}

.pricing-card-yearly {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 24px;
}

.pricing-card-cta {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-card-cta.primary {
    background: white;
    color: #059669;
}

.pricing-card-cta.secondary {
    background: #4d4d4d;
    color: white;
}

.pricing-card-cta:hover {
    transform: translateY(-2px);
}

/* Feature Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #3d3d3d;
}

.comparison-table th {
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td:not(:first-child) {
    text-align: center;
    color: #d0d0d0;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-mark {
    color: #10b981;
}

.dash-mark {
    color: #6b6b6b;
}

@media (max-width: 968px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .pricing-title {
        font-size: 36px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 28px;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-card-price-amount {
        font-size: 40px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

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

.testimonials-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5E4A42;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 24px 40px;
        margin: 0 -24px;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }
}

.testimonial-quote-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #5E4A42;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

.testimonial-author-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 36px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .testimonial-quote-highlight {
        font-size: 18px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0 0 80px;
    scroll-margin-top: 100px;
}

.faq-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 48px;
}

.faq-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-family: 'Switzer', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5E4A42;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
    transition: background 0.2s ease;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #10b981;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #5E4A42;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 64px;
}

.faq-cta-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 24px;
    }

    .faq-answer-content {
        padding: 0 24px 20px;
    }

    .faq-cta-title {
        font-size: 28px;
    }
}

/* Feature Icons (for new expense tracking layout) */
.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 100px;
}

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

.benefits-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #f0fdf4;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.benefit-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #5E4A42;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-title {
        font-size: 36px;
    }
}

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

    .benefits-title {
        font-size: 28px;
    }
}

/* Single Pricing Plan Layout */
.pricing-cards.single-plan {
    display: flex;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.pricing-cards.single-plan .pricing-card {
    width: 100%;
}

.pricing-card-currency {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    margin-right: 4px;
}

.pricing-card-trial {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pricing-features li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: "✓";
    color: white;
    font-weight: 700;
    margin-right: 10px;
}

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

.pricing-card-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    padding-top: 12px;
}

/* Language Switcher */
.lang-switch {
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lang-switch:hover {
    opacity: 1;
}
