:root {
    /* Enfin Colors */
    --primary-green: #4d7c74;
    --primary-green-dark: #3a615a;
    --secondary-orange: #ef6a46;
    --bg-beige: #f8f7f4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --black: #000000;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: rgba(248, 247, 244, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

@media (max-width: 767px) {
    .header {
        height: 64px;
    }
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }
}

.logo-icon {
    color: var(--text-dark);
}

.nav {
    display: none;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-dark);
}

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

@media (max-width: 767px) {
    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-text,
    .header-actions .btn-primary {
        display: none;
    }

    .lang-switcher {
        margin-right: 8px;
        gap: 4px;
    }

    .lang-btn {
        font-size: 11px;
        padding: 3px 6px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-text {
    color: var(--text-dark);
}

.btn-text:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

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

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

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    gap: 8px;
    margin-right: 24px;
}

.lang-btn {
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    padding: 4px 0;
    transition: all 0.2s ease;
    box-shadow: none;
    position: relative;
}

.lang-btn:hover {
    color: var(--text-dark);
    background: transparent;
}

.lang-btn.active {
    background: transparent;
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: none;
}

/* Optional underline for active state if desired, or just bold/color */
/*
.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
}
*/

.lang-separator {
    display: none;
    /* Removing separator as we are using distinct buttons now, or we can keep it if the design strictly demands it, but usually boxes imply separation */
}

/* If the user specifically wants the | separator WITH boxes as shown in the image */
.lang-switcher-with-separators {
    gap: 4px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 600;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
    width: 100%;
}

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

@media (max-width: 767px) {
    .hero {
        padding: 40px 0 60px;
    }
}

/* Dynamic Background for Hero to match the orange/green vibe but cleaner */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(239, 106, 70, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(77, 124, 116, 0.15) 0%, transparent 40%);
    z-index: -1;
}

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

.hero-title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #232935, #577c78);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        margin: 0 auto 48px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 28px;
    }
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.email-form {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
}

@media (max-width: 767px) {
    .email-form {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .email-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .btn-white {
        width: 100%;
    }
}

.email-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
}

.email-input::placeholder {
    color: #9ca3af;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 767px) {
    .hero-social-proof {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-text {
        font-size: 13px;
    }
}

.avatars {
    display: flex;
    align-items: center;
    gap: 0;
}

.company-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, z-index 0.2s;
    overflow: hidden;
}

.company-logo:hover {
    transform: translateY(-2px) scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.company-logo:first-child {
    margin-left: 0;
}

.company-logo svg {
    display: block;
    width: 100%;
    height: 100%;
}

.social-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    /* Assuming this sits on a colored bg in the original, but here we need contrast */
    color: var(--text-dark);
}

/* Stats */
.stats {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Features Path */
.features-path {
    padding: 100px 0 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .features-path {
        display: none;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.path-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 767px) {
    .path-tabs {
        padding: 4px;
        gap: 4px;
        width: 100%;
        max-width: 100%;
    }
}

.path-tab {
    padding: 20px 40px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(1);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .path-tab {
        padding: 12px 16px;
        font-size: 14px;
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .path-tab {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.path-tab:hover {
    color: var(--text-dark);
    transform: scale(1.08);
}

.path-tab.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
    font-weight: 700;
}

.path-tab.active:hover {
    transform: scale(1.1);
}

/* Cards */
.cards-section {
    padding: 40px 0 100px;
}

@media (max-width: 767px) {
    .cards-section {
        padding: 30px 0 60px;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    transition: grid-template-columns 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

@media (max-width: 767px) {
    .cards-grid {
        gap: 16px;
    }
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 400px;
    /* Fixed height for alignment */
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, filter;
}

@media (max-width: 767px) {
    .card {
        padding: 24px;
        height: auto;
        min-height: 350px;
    }
}

.blur-card {
    opacity: 0.4;
    transform: scale(0.9);
    filter: blur(2px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blur-card:hover {
    opacity: 0.6;
    transform: scale(0.95);
    filter: blur(1px);
}

.main-card {
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
    min-height: 640px;
    justify-content: space-between;
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
    .main-card {
        height: auto;
        min-height: 400px;
        transform: scale(1);
    }

    .blur-card {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
    
    /* On mobile, all cards should be fully visible */
    .card {
        opacity: 1 !important;
        filter: blur(0) !important;
        transform: scale(1) !important;
    }
}

.card-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.blur-card .card-content {
    opacity: 0.7;
}

.main-card .card-content {
    opacity: 1;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card-content h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .card-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .card-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .expert-profile {
        padding: 10px;
        margin-bottom: 20px;
    }

    .expert-avatar {
        width: 36px;
        height: 36px;
    }

    .expert-info .name {
        font-size: 13px;
    }

    .expert-info .role {
        font-size: 11px;
    }

    .stats-mini-grid {
        gap: 8px;
        margin-bottom: 20px;
    }

    .mini-stat .val {
        font-size: 16px;
    }

    .mini-stat .lbl {
        font-size: 10px;
    }
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 50px;
    width: fit-content;
}

.expert-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.expert-info {
    display: flex;
    flex-direction: column;
}

.expert-info .name {
    font-weight: 600;
    font-size: 14px;
}

.expert-info .role {
    font-size: 12px;
    color: var(--text-light);
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

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

.mini-stat .val {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.mini-stat .lbl {
    font-size: 11px;
    color: var(--text-light);
}

.card-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }
}

.copyright {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 767px) {
    .copyright {
        font-size: 12px;
        margin-top: 12px;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
}

/* Dynamic Card Flow Styles */
.dynamic-card {
    position: relative;
    overflow: hidden;
    background: #F9F8F6;
    min-height: 640px;
    height: 640px;
}

@media (max-width: 767px) {
    .dynamic-card {
        height: auto;
        min-height: 400px;
    }
}

.dynamic-card-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.dynamic-flow {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dynamic-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.dynamic-flow.hidden {
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
    pointer-events: none;
}

/* Flow Header */
.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.flow-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-replay-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a29e;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.flow-replay-btn:hover {
    color: #78716c;
}

.replay-icon {
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s;
}

.flow-replay-btn.playing .replay-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Elements */
.skeleton-text {
    background: #e7e5e0;
    border-radius: 9999px;
    height: 12px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.skeleton-title {
    width: 128px;
    height: 24px;
    background: #292524;
}

.skeleton-subtitle {
    width: 192px;
    height: 12px;
}

.skeleton-label {
    width: 96px;
    height: 16px;
    background: #292524;
}

.skeleton-text-medium {
    width: 160px;
    height: 12px;
    background: #d6d3d1;
}

.skeleton-text-selected {
    width: 128px;
    height: 12px;
    background: #547870;
}

.skeleton-text-small {
    width: 80px;
    height: 8px;
    background: rgba(84, 120, 112, 0.5);
    margin-top: 4px;
}

.skeleton-text-center {
    width: 128px;
    height: 8px;
    opacity: 0.3;
    margin: 0 auto;
}

.skeleton-item-title {
    width: 96px;
    height: 12px;
    background: #57534e;
}

.skeleton-item-subtitle {
    width: 64px;
    height: 8px;
    margin-top: 4px;
}

.skeleton-item-price {
    width: 48px;
    height: 12px;
    background: #292524;
}

.skeleton-add-text {
    width: 64px;
    height: 8px;
}

.skeleton-status-text {
    width: 32px;
    height: 8px;
    opacity: 0.4;
}

.skeleton-modal-title {
    width: 128px;
    height: 20px;
    background: #292524;
}

.skeleton-input-label {
    width: 96px;
    height: 10px;
    background: #d6d3d1;
    margin-bottom: 8px;
}

.skeleton-input-label-small {
    width: 48px;
    height: 10px;
    background: #d6d3d1;
    margin-bottom: 8px;
}

.skeleton-input-text {
    width: 66%;
    height: 8px;
    background: #f5f5f4;
}

.skeleton-input-text-small {
    width: 50%;
    height: 8px;
    background: #f5f5f4;
}

.skeleton-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f5f5f4;
}

/* Flow Sections */
.flow-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-section {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #f5f5f4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.template-section {
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipient-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-sim {
    position: relative;
    width: 100%;
    height: 48px;
    background: #fafaf9;
    border: 1px solid #e7e5e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    justify-content: space-between;
    transition: all 0.15s ease;
}

.dropdown-sim.active {
    border-color: #547870;
    background: #F0FDF9;
}

.dropdown-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.dropdown-selected {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chevron-icon {
    color: #a8a29e;
    flex-shrink: 0;
}

.cursor-indicator {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #547870;
    opacity: 0;
    pointer-events: none;
}

.cursor-indicator.visible {
    opacity: 1;
    animation: cursorPulse 1s ease-in-out infinite;
}

.cursor-indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(84, 120, 112, 0.5);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes cursorPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.items-section {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.items-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
}

.items-filled {
    width: 100%;
    background: #fafaf9;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #f5f5f4;
    animation: fadeInUp 0.2s ease;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.add-item-btn {
    height: 32px;
    width: 100%;
    border: 1px dashed #d6d3d1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a8a29e;
    transition: all 0.2s;
}

.add-item-btn:hover {
    border-color: #547870;
    color: #547870;
}

.plus-icon {
    flex-shrink: 0;
}

/* Abstract Buttons */
.abstract-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.abstract-btn-primary {
    background: #547870;
    color: white;
}

.abstract-btn-primary:hover {
    background: #4a6b64;
    transform: scale(0.98);
}

.abstract-btn-primary.active {
    animation: buttonPulse 0.3s ease;
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.abstract-btn-secondary {
    background: #F2F0EB;
    color: #57534e;
}

.abstract-btn-secondary:hover {
    background: #e7e5e0;
}

.btn-label {
    display: inline-block;
}

/* Flow Footer */
.flow-footer {
    margin-top: auto;
    padding-top: 24px;
}

/* Actions Flow */
.actions-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F9F8F6;
    padding: 32px;
}

.status-pill {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.5s ease;
    background: #e7e5e0;
    color: #78716c;
}

.status-pill.success {
    background: #dcfce7;
    color: #166534;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transition: all 0.3s ease;
}

.status-pill.success .status-indicator {
    display: none;
}

.status-pill.success::before {
    content: '✓';
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}

.actions-content {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.file-icon-wrapper {
    opacity: 0.1;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.file-icon {
    color: #a8a29e;
}

.actions-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.action-button-wrapper .action-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    display: inline-flex;
    justify-content: center; /* Align text/content to center */
    align-items: center; /* Vertically center */
}

.action-button-wrapper .action-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.action-button-wrapper .action-btn .action-icon {
    margin-right: 8px; /* Add spacing between icon and text */
}


.action-icon {
    flex-shrink: 0;
}

.success-check {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    animation: checkAppear 0.3s ease;
}

@keyframes checkAppear {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Modal */
.modal-overlay {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 384px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 24px;
    animation: slideUp 0.15s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
    }
}

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

.modal-close {
    background: none;
    border: none;
    color: #a8a29e;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #78716c;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-row {
    display: flex;
    gap: 16px;
}

.input-box {
    width: 100%;
    height: 40px;
    border: 1px solid #e7e5e0;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding-top: 16px;
}

.modal-btn-secondary {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    background: #f5f5f4;
}

.modal-btn-primary {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    background: #A3B1AE;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn-primary:hover {
    background: #8a9b97;
}

/* Responsive */
@media (max-width: 767px) {
    .dynamic-flow {
        padding: 20px;
        min-height: 400px;
    }

    .actions-flow {
        padding: 24px;
    }

    .modal-overlay {
        align-items: center;
    }

    .modal-content {
        max-width: 100%;
    }

    .planning-container {
        flex-direction: column;
        gap: 16px;
    }

    .planning-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #f5f5f4;
        padding-right: 0;
        padding-bottom: 12px;
    }

    .task-card {
        min-width: 200px;
    }
}

/* Planning Card Styles */
.planning-card {
    position: relative;
    overflow: visible;
    background: #F9F8F6;
}

.planning-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.planning-card-content h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Calendar Visual Hero */
.planning-calendar-visual {
    position: relative;
    width: 100%;
    height: 280px;
    background: #fafaf9;
    border-radius: 16px;
    border: 1px solid #f5f5f4;
    overflow: hidden;
    margin-bottom: 24px;
    cursor: default;
    user-select: none;
}

.calendar-visual-header {
    display: flex;
    border-bottom: 1px solid #e7e5e0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
}

.calendar-header-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #78716c;
}

.calendar-header-dots {
    margin-left: auto;
    display: flex;
    gap: 4px;
}

.header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.header-dot.red {
    background: rgba(239, 68, 68, 0.5);
}

.header-dot.yellow {
    background: rgba(234, 179, 8, 0.5);
}

.calendar-visual-grid {
    position: relative;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: calc(100% - 49px);
}

.time-label-visual {
    position: absolute;
    left: 8px;
    font-size: 10px;
    color: #d6d3d1;
    font-family: monospace;
    z-index: 1;
}

.calendar-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.existing-items {
    opacity: 0.4;
}

.existing-item {
    height: 48px;
    width: 100%;
    background: #e7e5e0;
    border-radius: 8px;
}

.existing-item.small {
    height: 32px;
}

.drop-zone {
    position: relative;
}

.drop-zone-placeholder {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    height: 56px;
    border: 2px dashed rgba(77, 124, 116, 0.3);
    border-radius: 8px;
    background: rgba(77, 124, 116, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drop-zone-placeholder.visible {
    opacity: 1;
}

.sidebar-palette {
    background: #f5f5f4;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    gap: 8px;
}

.palette-header {
    height: 8px;
    width: 32px;
    background: #e7e5e0;
    border-radius: 9999px;
    margin-bottom: 4px;
}

.palette-task {
    width: 100%;
    height: 32px;
    background: white;
    border: 1px solid #e7e5e0;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 6px;
}

.palette-task-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.palette-task-line {
    height: 6px;
    width: 48px;
    background: #f5f5f4;
    border-radius: 9999px;
}

.palette-task-line.short {
    width: 32px;
}

/* Animated Cursor with Dragged Card */
.animated-cursor-wrapper {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.animated-cursor-wrapper.visible {
    opacity: 1;
}

.animated-cursor-wrapper.moving {
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dragged-card {
    background: var(--primary-green);
    color: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 112px;
    transform: translateX(-50%) translateY(-100%);
    margin-bottom: 8px;
}

.dragged-card-line {
    height: 6px;
    width: 48px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    margin-bottom: 6px;
}

.dragged-card-line.short {
    width: 32px;
    margin-bottom: 0;
}

.cursor-hand-icon {
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cursor-ping {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: cursorPing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes cursorPing {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Planning Features Compact */
.planning-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(77, 124, 116, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Planning Footer */
.planning-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    margin-top: auto;
    gap: 16px;
}

.planning-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark); /* Matches theme dark text color usually */
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.planning-cta:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.planning-cta svg {
    transition: transform 0.2s ease;
}

.planning-cta:hover svg {
    transform: translateX(4px);
}

.planning-persona {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.planning-persona:hover {
    opacity: 1;
}

.persona-info {
    text-align: right;
    display: none;
}

@media (min-width: 640px) {
    .persona-info {
        display: block;
    }
}

.persona-name {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
}

.persona-role {
    font-size: 10px;
    color: #78716c;
}

.persona-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e7e5e0;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (max-width: 767px) {
    .planning-calendar-visual {
        height: 180px;
    }

    .planning-features {
        gap: 16px;
    }

    .planning-feature-label {
        font-size: 10px;
    }

    .planning-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .planning-cta {
        width: 100%;
        justify-content: center;
    }

    .planning-persona {
        justify-content: center;
    }
}

/* Cashflow Flow Styles */
.cashflow-flow {
    position: relative;
}

.cashflow-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.cashflow-graph-area {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 12px;
    border: 1px solid #f5f5f4;
    padding: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.cashflow-graph {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#incomeLine {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

#incomeArea {
    opacity: 0;
    transition: opacity 1s ease;
}

#incomeArea.visible {
    opacity: 0.2;
}

.expense-bar {
    position: absolute;
    bottom: 16px;
    /* Match padding */
    width: 12px;
    background: #ef6a46;
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expense-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

.cashflow-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.indicator-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e7e5e0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.indicator-card.highlight {
    background: #F0FDF9;
    border-color: #547870;
}

.indicator-label {
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
}

.vat-bucket {
    height: 8px;
    background: #f5f5f4;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.vat-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: #ef6a46;
    transition: width 0.1s linear;
}

.vat-value {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #ef6a46;
}

.balance-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #dcfce7;
    color: #166534;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.safe-badge.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 767px) {
    .cashflow-indicators {
        grid-template-columns: 1fr;
    }
}

/* Cashflow Bar Chart Styles */
.cashflow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.header-stats {
    display: flex;
    gap: 24px;
}

.mini-stat-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
}

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

.cashflow-chart-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 24px;
    /* Space for labels */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    border-bottom: 1px dashed #e7e5e0;
    position: relative;
}

.grid-line span {
    position: absolute;
    left: -4px;
    top: -8px;
    font-size: 10px;
    color: #d6d3d1;
    transform: translateX(-100%);
}

.chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 8px;
    /* Space for grid labels if needed, or just spacing */
    padding-bottom: 16px;
    /* Space for labels */
    position: relative;
    z-index: 1;
}

.chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.bar-group {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.bar {
    width: 12px;
    border-radius: 2px 2px 0 0;
    height: var(--h);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar.income {
    background: #3e6b63;
    /* Dark Green from screenshot */
}

.bar.expense {
    background: #f26b48;
    /* Orange from screenshot */
}

.month-label {
    position: absolute;
    bottom: -16px;
    font-size: 11px;
    color: #a8a29e;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #78716c;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.income {
    background: #3e6b63;
}

.dot.expense {
    background: #f26b48;
}

@media (max-width: 767px) {
    .chart-grid-lines .grid-line span {
        display: none;
        /* Hide y-axis labels on mobile if too tight */
    }

    .bar {
        width: 8px;
    }
}/* Blog Page Styles */
.blog-hero {
    padding: 120px 0 60px;
    background: #F9F8F6;
    text-align: center;
}

.blog-section {
    padding: 60px 0 120px;
    background: #F9F8F6;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e7e5e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
    border-color: #d6d3d1;
}

.blog-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-placeholder {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: #78716c;
}

.blog-category {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #547870;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: #57534e;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: #547870;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.blog-link:hover {
    gap: 8px;
    color: #3e6b63;
}

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

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

    .blog-hero {
        padding: 100px 0 40px;
    }
}/* Integrations Page Styles */
.integrations-hero {
    padding: 120px 0 60px;
    background: #F9F8F6;
    text-align: center;
}

.integrations-section {
    padding: 60px 0 120px;
    background: #F9F8F6;
}

.integration-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e7e5e0;
}

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

.integration-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e7e5e0;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
    border-color: #d6d3d1;
}

.integration-logo-box {
    width: 64px;
    height: 64px;
    background: #f5f5f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #57534e;
    font-size: 14px;
    margin-bottom: 16px;
}

.integration-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.integration-desc {
    font-size: 13px;
    color: #78716c;
    line-height: 1.5;
}

.integration-request {
    text-align: center;
    background: #e7e5e0;
    padding: 48px;
    border-radius: 16px;
    margin-top: 60px;
}

.integration-request h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.integration-request p {
    color: #57534e;
    margin-bottom: 24px;
}

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

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

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

    .integrations-hero {
        padding: 100px 0 40px;
    }
}

/* Pricing Page */
.pricing-hero {
    padding: 120px 0 60px;
    background: #F9F8F6;
    text-align: center;
}

.pricing-section {
    padding: 60px 0 120px;
    background: #F9F8F6;
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e7e5e0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(77, 124, 116, 0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 20px 40px rgba(77, 124, 116, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 4px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-features li {
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Mobile Static Card Versions */
@media (max-width: 767px) {
    /* Show static versions on mobile, hide animated */
    .mobile-static-invoice,
    .mobile-static-cashflow {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    /* Hide static versions on desktop, show animated */
    .mobile-static-invoice,
    .mobile-static-cashflow {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Static Invoice Card Styles */
.mobile-static-invoice {
    padding: 24px 0;
}

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

.static-status-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.static-status-item {
    flex: 1;
    height: 48px;
    background: #1e293b;
    border-radius: 8px;
}

.static-status-success {
    flex: 1;
    height: 48px;
    background: #dcfce7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.static-status-bar-light {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #86efac;
    border-radius: 0 0 8px 8px;
}

.static-file-icon {
    opacity: 0.3;
    color: #d6d3d1;
}

.static-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.static-btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
}

.static-btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #f8f7f4;
    color: #1e293b;
    border: 1px solid #e7e5e0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

/* Static Cashflow Card Styles */
.mobile-static-cashflow {
    padding: 24px 0;
}

.static-cashflow-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.static-cashflow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.static-stats {
    display: flex;
    gap: 24px;
    flex: 1;
}

.static-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.static-stat-label {
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
}

.static-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.static-chart-container {
    position: relative;
    min-height: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.static-chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.static-grid-line {
    width: 100%;
    border-bottom: 1px dashed #e7e5e0;
    position: relative;
}

.static-grid-line span {
    position: absolute;
    left: -4px;
    top: -8px;
    font-size: 10px;
    color: #d6d3d1;
    transform: translateX(-100%);
}

.static-chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 8px;
    padding-bottom: 16px;
    position: relative;
    z-index: 1;
    min-height: 200px;
    height: 200px;
}

.static-chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.static-bar-group {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: center;
    position: relative;
    min-height: 160px;
}

.static-bar {
    width: 12px;
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    min-height: 4px;
    flex-shrink: 0;
    align-self: flex-end;
}

.static-bar-income {
    background: #3e6b63;
}

.static-bar-expense {
    background: #f26b48;
}

/* Ensure bars are visible on mobile */
@media (max-width: 767px) {
    .static-bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.static-month-label {
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
}

.static-chart-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding-top: 16px;
}

.static-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1e293b;
}

.static-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.static-dot-income {
    background: #3e6b63;
}

.static-dot-expense {
    background: #f26b48;
}
