:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --text-primary: #000000;
    --text-secondary: #888888;
    --text-tertiary: #666666;
    --border-color: rgba(0, 0, 0, 0.06);
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-card: rgba(255, 255, 255, 0.95);
    --particle-color: rgba(11, 26, 60, 1);
    --shine-gradient: linear-gradient(90deg, #000 0%, #000 48%, #c0c0c0 50%, #000 52%, #000 100%);
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
    --surface-glass: rgba(26, 26, 26, 0.7);
    --surface-card: rgba(26, 26, 26, 0.95);
    --particle-color: rgba(100, 200, 255, 1);
    --shine-gradient: linear-gradient(90deg, #fff 0%, #fff 48%, #888 50%, #fff 52%, #fff 100%);
}


.theme-curtain {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    pointer-events: none;
    transition: none;
}

.theme-curtain.closing {
    animation: curtainClose 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.theme-curtain.opening {
    animation: curtainOpen 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes curtainClose {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

@keyframes curtainOpen {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

html {
    background: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#particles-canvas {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;

    pointer-events: none;

    background: transparent;


}


.content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}


.shine-text {
    position: relative;
    background: var(--shine-gradient);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 150s linear infinite;

    will-change: background-position;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }

    5.3% {

        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.content p {
    font-size: 18px;
    font-weight: 300;
    color: #888;
    margin-bottom: 40px;
    max-width: 600px;
    letter-spacing: 0.2px;
    line-height: 1.7;
}

.cta-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

    p {
        font-size: 18px;
    }
}


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

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

.content h1 {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.content p {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.content .cta-button {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
}





.plan-card.highlight {
    border-color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
    z-index: 2;
}

.plan-card.highlight:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.recommended-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.floating-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.5s ease-in-out, background-color 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.floating-header.hidden {
    transform: translate(-50%, -150%);
}

.header-logo {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

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

.header-login {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.header-login:hover {
    opacity: 0.7;
}


.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    position: relative;
    width: 36px;
    height: 36px;
}

.theme-toggle:hover {
    background: var(--border-color);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

@media (max-width: 768px) {
    .floating-header {
        padding: 6px 20px;
        width: 95%;
    }

    .header-nav {
        display: none;

    }
}








.features-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;

}

.section-title {
    font-size: 48px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}


.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 24px;
    height: 600px;

}

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

.bento-item {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--surface-card);
}

.dashboard-item {
    grid-column: 1;
}


.plans-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-title {
    font-size: 52px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto 12px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    width: 100%;
    display: block;
    line-height: 1.2;
}


.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px auto 48px;
}

.billing-label {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    transition: color 0.3s ease;
}

.billing-label.active {
    color: #000;
    font-weight: 500;
}

.save-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 12px;
    margin-left: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.toggle-slider:before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.billing-toggle input:checked+.toggle-slider {
    background: #000;
    border-color: #000;
}

.billing-toggle input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.billing-toggle:hover .toggle-slider {
    background: rgba(0, 0, 0, 0.12);
}

.billing-toggle input:checked:hover+.toggle-slider {
    background: #1a1a1a;
}


.price-value {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    width: 100%;
}

.plan-card {
    background: var(--surface-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.available {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.plan-chip {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    width: fit-content;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.plan-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.plan-price {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -2px;
    line-height: 1;
}

.plan-period {
    font-size: 16px;
    font-weight: 300;
    color: #888;
    margin-left: 4px;
}

.plan-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

.plan-button {
    width: 100%;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 32px;
    letter-spacing: 0.2px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-button.primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plan-button.primary:hover {
    opacity: 0.8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plan-button.primary:active {
    transform: translateY(0);
}

.plan-button.secondary {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
}


.site-footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    margin-top: 120px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    padding: 0 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.footer-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 40px 40px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-links {
        gap: 40px;
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        padding: 30px 20px 0;
        flex-direction: column-reverse;
        text-align: center;
    }
}

.plan-button.secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.plan-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--text-primary);
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .plans-container {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 0 20px;
        margin: 80px auto;
    }

    .plans-title {
        font-size: 36px;
        font-weight: 300;
        letter-spacing: -1px;
    }

    .plans-subtitle {
        font-size: 15px;
        font-weight: 300;
        margin-bottom: 50px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-title {
        font-size: 22px;
    }

    .plan-price {
        font-size: 32px;
    }
}

.report-item {
    flex: 1;
}

.wealth-item {
    flex: 1;
}

.mobile-item {
    grid-column: 3;
}

.bento-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 300;
}


.mock-ui {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    width: 100%;
    flex: 1;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}


.wealth-widget {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circular-progress {
    position: relative;
    width: 120px;

    height: 120px;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);

}

.bg-ring {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 8;
}

.progress-ring {
    fill: none;
    stroke: #000;

    stroke-width: 8;
    stroke-dasharray: 339.292;

    stroke-dashoffset: 339.292;

    transition: stroke-dashoffset 2s ease-out;
    stroke-linecap: round;
}

.wealth-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;

    font-weight: 600;
    color: #000;
}

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

    .dashboard-item {
        grid-column: 1 / -1;

        height: 400px;
    }

    .mobile-item {
        grid-column: 2;
        grid-row: 2 / 4;

    }

    .bento-column {
        grid-column: 1;
        grid-row: 2 / 4;
    }
}

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

    .mobile-item {
        grid-column: 1;
        grid-row: auto;
        height: 500px;
    }

    .bento-column {
        grid-column: 1;
        grid-row: auto;
    }

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


.dashboard-ui {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 180px;
}

.dash-header {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

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

.dash-stat .label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.dash-stat .value {
    font-size: 18px;
    font-weight: 600;
}

.dash-graph {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1));
    border-top: 2px solid #3b82f6;
    border-radius: 8px 8px 0 0;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}


.report-ui {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.report-icon {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
}

.report-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line {
    height: 6px;
    background: #f3f4f6;
    border-radius: 4px;
}

.line.short {
    width: 40%;
}

.line.long {
    width: 80%;
}


.mobile-ui {
    width: 240px;
    height: 460px;
    background: #000;
    border-radius: 36px;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #000;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px 20px 20px;
    gap: 14px;
}

.app-header {
    height: 24px;
    width: 40%;
    background: #f3f4f6;
    border-radius: 6px;
}

.app-card {
    height: 80px;
    background: #f3f4f6;
    border-radius: 12px;
    width: 100%;
}

.app-nav {
    margin-top: auto;
    height: 40px;
    background: #f3f4f6;
    border-radius: 12px;
    width: 100%;
}




.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title-large {
    font-size: 52px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.section-title-large strong {
    font-weight: 400;
}

.section-description {
    font-size: 17px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}







.use-cases-section {
    padding: 90px 0;
    position: relative;
    z-index: 10;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    margin-bottom: 20px;
    opacity: 0.9;
}

.use-case-icon svg {
    width: 32px;
    height: 32px;
    stroke: #b9b9b9;
}

.use-case-card h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.use-case-card p {
    font-size: 14px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    letter-spacing: 0.1px;
}

.use-cases-footer-text {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: #000;
    margin: 60px 0 32px;
    letter-spacing: 0.2px;
}

.use-cases-cta {
    display: inline-block;
    margin: 0 auto;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    text-align: center;
    width: auto;
}

.use-cases-cta:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.turning-point-section {
    padding: 110px 0;
    position: relative;
    z-index: 10;
    background: #fff;
}

.turning-point-features {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-number {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.feature-title {
    font-size: 42px;
    font-weight: 300;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.feature-text {
    font-size: 17px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

.feature-text strong {
    color: #000;
    font-weight: 400;
}

.feature-quote {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 24px;
    flex-shrink: 0;
    opacity: 0.8;
}

.feature-quote p {
    font-size: 15px;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.1px;
}

.feature-quote p strong {
    color: #000;
    font-weight: 400;
}


.expense-chart {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.chart-header span:first-child {
    font-size: 13px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.2px;
}

.chart-badge {
    font-size: 11px;
    font-weight: 400;
    background: rgba(255, 152, 0, 0.1);
    color: #e65100;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    letter-spacing: 0.3px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-label {
    font-size: 10px;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bar-value {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.3px;
}

.bar-container {
    height: 8px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.bar-green {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.bar-yellow {
    background: linear-gradient(90deg, #ffc107, #ffd54f);
}

.bar-orange {
    background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.bar-red {
    background: linear-gradient(90deg, #f44336, #ef5350);
}

.chart-insight {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.1px;
}

.insight-badge {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 400;
    flex-shrink: 0;
}


.recommendations-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rec-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.rec-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot-green {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.rec-status span:last-child {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rec-subtitle {
    font-size: 11px;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.2px;
}

.rec-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rec-item {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.rec-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.rec-blue {
    background: rgba(255, 255, 255, 0.95);
}

.rec-green {
    background: rgba(255, 255, 255, 0.95);
}

.rec-purple {
    background: rgba(255, 255, 255, 0.95);
}

.rec-icon {
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.rec-item h4 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.rec-item p {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
    letter-spacing: 0.1px;
}

.rec-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 300;
    color: #999;
}

.rec-tag {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
}


.advanced-features-section {
    padding: 110px 0;
    position: relative;
    z-index: 10;
    background: #fff;
}

.advanced-features-grid {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.advanced-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advanced-feature-block.reverse {
    direction: rtl;
}

.advanced-feature-block.reverse>* {
    direction: ltr;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    letter-spacing: 0.1px;
}


.wealth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.wealth-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.wealth-label {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.wealth-value-large {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.wealth-growth {
    font-size: 13px;
    font-weight: 300;
    color: #4caf50;
    letter-spacing: 0.2px;
}

.wealth-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wealth-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.wealth-item-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wealth-item-info {
    flex: 1;
}

.wealth-item-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.wealth-item-subtitle {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.1px;
}

.wealth-item-value {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.5px;
}


.evolution-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.evolution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.evolution-label {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.evolution-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    color: #4caf50;
    letter-spacing: 0.2px;
}

.evolution-level {
    font-size: 13px;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.1px;
}

.evolution-progress {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.progress-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    position: relative;
}

.progress-step.completed {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.progress-step.active {
    background: #000;
    color: #fff;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.progress-step:not(.completed):not(.active) {
    background: rgba(0, 0, 0, 0.03);
    color: #999;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.progress-line {
    flex: 1;
    height: 2px;
    margin: 0 12px;
    border-radius: 1px;
}

.progress-line.completed {
    background: #000;
}

.progress-line.active {
    background: linear-gradient(90deg, #000, #666);
}

.progress-line:not(.completed):not(.active) {
    background: rgba(0, 0, 0, 0.08);
}

.evolution-momentum {
    margin-top: 24px;
}

.momentum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #666;
    letter-spacing: 0.1px;
}

.momentum-value {
    font-weight: 400;
    color: #000;
}

.momentum-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.momentum-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #2196f3, #9c27b0);
    border-radius: 4px;
    transition: width 1.5s ease;
}


.faq-section {
    padding: 110px 0;
    position: relative;
    z-index: 10;
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item.active {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}


.chat-section {
    padding: 60px 0 100px;
    margin-top: -40px;
    position: relative;
    overflow: hidden;
}

.chat-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.chat-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.phone-mockup-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    perspective: 2000px;
    opacity: 0;
    transform: translateX(100px) rotateY(-40deg);
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-mockup-container.is-visible {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.chat-text-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-text-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1), transparent 60%);
    filter: blur(90px);
    z-index: -1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.3),
        0 18px 36px -18px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding: 12px;
    animation: floatPhone 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-style: preserve-3d;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-25px) rotateX(2deg);
    }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

[data-theme="dark"] .phone-screen {
    background: rgba(20, 20, 20, 0.9);
}

.chat-header {
    padding: 4px 20px 4px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

[data-theme="dark"] .chat-header {
    background: rgba(20, 20, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.chat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.chat-status {
    font-size: 11px;
    color: #10b981;

    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.chat-messages {
    flex: 1;
    padding: 20px 20px 20px;
    overflow-y: auto;
    scrollbar-width: none;

    -ms-overflow-style: none;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.chat-messages::-webkit-scrollbar {
    display: none;

}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.4;
    position: relative;
    transform-origin: bottom center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.message.visible {
    opacity: 1;
    transform: translateY(0);
}

.message.user {
    align-self: flex-end;
    background: #000;
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .message.user {
    background: #fff;
    color: #000;
}

.message.ai {
    align-self: flex-start;
    background: #fff;
    color: #000;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .message.ai {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    align-items: center;
    height: 40px;
}

[data-theme="dark"] .typing-indicator {
    background: rgba(255, 255, 255, 0.1);
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

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

    40% {
        transform: scale(1);
    }
}

.chat-input-area {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 5;
}

[data-theme="dark"] .chat-input-area {
    background: rgba(20, 20, 20, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-placeholder {
    flex: 1;
    font-size: 12px;
    color: var(--text-tertiary);
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 14px;
    border-radius: 18px;
}

[data-theme="dark"] .chat-input-placeholder {
    background: rgba(255, 255, 255, 0.1);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
}




.nexus-phone {
    width: 340px;
    height: 700px;
    background: #e4e4e7;

    border-radius: 3.5rem;
    padding: 6px;
    box-shadow:
        0 20px 50px -12px rgba(0, 0, 0, 0.2),
        0 0 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #d4d4d8;

    position: relative;

    outline: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatPhone 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}


.hw-btn {
    position: absolute;
    background: #d4d4d8;

    width: 3px;
}

.hw-btn.left-1 {
    top: 7rem;
    height: 1.75rem;
    left: -2px;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.hw-btn.left-2 {
    top: 10rem;
    height: 3.5rem;
    left: -2px;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.hw-btn.left-3 {
    top: 14rem;
    height: 3.5rem;
    left: -2px;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.hw-btn.right-1 {
    top: 11rem;
    height: 5rem;
    right: -2px;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}


.nexus-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 3.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
}


.nexus-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 2rem 0;
    pointer-events: none;
}

.nexus-status-bar .time {
    font-size: 0.75rem;
    font-weight: 600;
    color: #18181b;

    margin-left: 0.5rem;
}

.dynamic-island {
    position: absolute;
    left: 50%;
    top: 0.75rem;
    transform: translateX(-50%);
    width: 7rem;
    height: 2rem;
    background: #000;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.camera-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: #6366f1;

    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sensor-dot {
    width: 4rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: #27272a;

    overflow: hidden;
}

.sensor-dot::after {
    content: '';
    display: block;
    height: 100%;
    width: 66%;
    background: rgba(113, 113, 122, 0.5);

    border-radius: 9999px;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-right: 0.5rem;
    color: #18181b;
}

.icon-small {
    width: 0.875rem;
    height: 0.875rem;
}


.nexus-header {
    padding-top: 4rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f4f4f5;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.icon-btn {
    color: #71717a;

    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.icon-btn:hover {
    color: #18181b;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.025em;
}

.version-badge {
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 500;
    background: #f4f4f5;
    color: #71717a;
    border: 1px solid #e4e4e7;
}


.nexus-chat-area {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
    scrollbar-width: none;

}

.nexus-chat-area::-webkit-scrollbar {
    display: none;
}

.date-divider {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.date-divider span {
    font-size: 0.625rem;
    font-weight: 500;
    color: #a1a1aa;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.msg-row {
    display: flex;
    gap: 0.75rem;
    animation: slideIn 0.3s ease-out forwards;
}

.msg-row.user {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gradient-bg {
    background: linear-gradient(to top right, #18181b, #3f3f46);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.user-bg {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
}

.user-bg span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #52525b;
}

.icon-white {
    color: white;
    width: 1rem;
    height: 1rem;
}

.msg-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 85%;
}

.msg-content.user-content {
    align-items: flex-end;
}

.msg-content.full-width {
    width: 100%;
    padding-right: 0.5rem;
}

.sender-name {
    font-size: 0.625rem;
    color: #a1a1aa;
    font-weight: 500;
    margin-left: 0.25rem;
}

.msg-bubble {
    padding: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ai-bubble {
    background: white;
    border: 1px solid #e4e4e7;
    border-radius: 1rem;
    border-top-left-radius: 0.125rem;
    color: #3f3f46;

}

.user-bubble {
    background: #18181b;

    border-radius: 1rem;
    border-top-right-radius: 0.125rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rich-bubble {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-green {
    color: #059669;

    font-weight: 600;
}


.chart-container {
    width: 100%;
    background: #fafafa;

    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.chart-label {
    font-size: 0.75rem;
    color: #a1a1aa;
}

.chart-legend {
    display: flex;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.legend-item span {
    font-size: 0.625rem;
    color: #a1a1aa;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.dot.gray {
    background: #d4d4d8;
}

.dot.blue {
    background: #6366f1;
}

.chart-bars {
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.25rem;
}

.bar-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.bar {
    width: 100%;
    border-radius: 0.125rem;
}

.bar.gray {
    background: #e4e4e7;
}

.bar.blue {
    background: #6366f1;
}

.bar.shadow {
    box-shadow: 0 4px 10px -2px rgba(99, 102, 241, 0.3);
}

.bar.h-8 {
    height: 2rem;
}

.bar.h-10 {
    height: 2.5rem;
}

.bar.h-12 {
    height: 3rem;
}

.bar.h-16 {
    height: 4rem;
}

.bar.h-20 {
    height: 5rem;
}

.bar-label {
    font-size: 0.5625rem;
    color: #a1a1aa;
}

.msg-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    font-size: 0.75rem;
    color: #52525b;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #f4f4f5;
}

.icon-xs {
    width: 0.75rem;
    height: 0.75rem;
}


.typing-bubble {
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.25rem;
}

.typing-bubble .dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #a1a1aa;
    border-radius: 9999px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-bubble .dot-1 {
    animation-delay: -0.32s;
}

.typing-bubble .dot-2 {
    animation-delay: -0.16s;
}

.spacer-bottom {
    height: 5rem;
}


.nexus-input-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem;
    z-index: 20;
    border-top: 1px solid rgba(228, 228, 231, 0.5);
}

.suggestions-row {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
    scrollbar-width: none;
}

.suggestions-row::-webkit-scrollbar {
    display: none;
}

.suggestion-pill {
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: white;
    border: 1px solid #e4e4e7;
    font-size: 0.6875rem;
    color: #71717a;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.suggestion-pill:hover {
    background: #fafafa;
    border-color: #d4d4d8;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.circle-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.circle-btn.gray {
    background: #f4f4f5;
    color: #71717a;
}

.circle-btn.gray:hover {
    background: #e4e4e7;
    color: #18181b;
}

.circle-btn.black {
    background: #18181b;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(24, 24, 27, 0.2);
}

.circle-btn.black:hover {
    background: #27272a;
}

.circle-btn.black:active {
    transform: scale(0.95);
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper input {
    width: 100%;
    background: #f4f4f5;
    border: none;
    border-radius: 9999px;
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    color: #18181b;
    outline: none;
    transition: all 0.2s;
}

.input-wrapper input:focus {
    box-shadow: 0 0 0 2px rgba(24, 24, 27, 0.1);
}

.input-wrapper input::placeholder {
    color: #a1a1aa;
}

.mic-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1aa;
    background: none;
    border: none;
    cursor: pointer;
}

.mic-btn:hover {
    color: #52525b;
}

.home-indicator {
    width: 8rem;
    height: 0.25rem;
    background: rgba(24, 24, 27, 0.2);
    border-radius: 9999px;
    margin: 1.25rem auto 0;
}


.phone-reflection {
    position: absolute;
    inset: 6px;
    border-radius: 3.2rem;
    pointer-events: none;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.2), transparent, transparent);
    z-index: 40;
}


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

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

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hidden {
    display: none !important;
}


.message.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: messageSpring 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes messageSpring {
    0% {
        transform: translateY(20px) scale(0.95) rotate(-1deg);
        opacity: 0;
    }

    60% {
        transform: translateY(-3px) scale(1.02) rotate(0.5deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}


.message::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.4),
            transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.message.visible::before {
    animation: rippleEffect 0.8s ease-out;
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}


.typing-indicator {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    align-items: center;
    height: 40px;
    will-change: opacity;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    animation: typingWave 1.4s infinite ease-in-out;
    will-change: transform, background;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingWave {

    0%,
    60%,
    100% {
        transform: translateY(0) scale(1);
        background: #888;
    }

    30% {
        transform: translateY(-8px) scale(1.3);
        background: #555;
    }
}


@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-15px) rotateX(1deg) rotateY(-0.5deg);
    }

    50% {
        transform: translateY(-25px) rotateX(2deg) rotateY(0deg);
    }

    75% {
        transform: translateY(-15px) rotateX(1deg) rotateY(0.5deg);
    }
}


.chat-header {
    padding: 4px 20px 4px;
    min-height: 60px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    position: relative;
}

[data-theme="dark"] .chat-header {
    background: rgba(20, 20, 20, 0.7);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}


.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.1);
}


.chat-input-area {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
    z-index: 5;
}

[data-theme="dark"] .chat-input-area {
    background: rgba(20, 20, 20, 0.7);
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.chat-send-btn:hover {
    transform: scale(1.1) rotate(-5deg);
}

.chat-send-btn:active {
    transform: scale(0.95);
}


.phone-mockup,
.phone-glow,
.message,
.typing-indicator,
.chat-send-btn {
    will-change: transform, opacity;
}


.message.visible {
    will-change: auto;
}

@media (max-width: 900px) {
    .chat-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .chat-text {
        max-width: 100%;
        text-align: center;
    }

    .phone-mockup-container {
        flex-direction: column;
        gap: 40px;
    }

    .chat-text .section-description {
        text-align: center !important;
        margin: 0 auto !important;
    }
}



@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

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

.message.visible {
    animation: popIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    background: #000;
    color: #fff;
    border-color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 32px 84px;
}

.faq-answer p {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.1px;
}

.faq-cta {
    text-align: center;
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-cta-title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.faq-cta-text {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    margin-bottom: 32px;
    letter-spacing: 0.1px;
}

.faq-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-whatsapp-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {

    .feature-block,
    .advanced-feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block.reverse,
    .advanced-feature-block.reverse {
        direction: ltr;
    }

    .section-title-large {
        font-size: 36px;
    }

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

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

    .section-title-large {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-text {
        font-size: 16px;
    }

    .turning-point-section,
    .advanced-features-section,
    .faq-section {
        padding: 60px 0;
    }

    .turning-point-features,
    .advanced-features-grid {
        gap: 60px;
    }


}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.date-divider {
    margin: 2px 0 !important;
    padding: 0 !important;
}

.msg-bubble {
    font-size: 12px !important;
    padding: 8px 12px !important;
}

.msg-row {
    margin-bottom: 8px !important;
}

.sender-name {
    font-size: 10px !important;
    margin-bottom: 2px !important;
}

.header-logo {
    gap: 8px !important;
}

.logo-img {
    margin-right: 4px !important;
}

.msg-content {
    gap: 0px !important;
}

.msg-avatar {
    margin-right: 4px !important;
}

.sender-name {
    margin-bottom: 0px !important;
    margin-left: 0px !important;
}

.nexus-chat-area {
    display: flex;
    flex-direction: column;
}

.spacer-bottom {
    height: 80px !important;
    min-height: 80px !important;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
    }

    .content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}





@media (max-width: 768px) {
    .phone-mockup-container {
        transform: scale(0.75) !important;
        margin: 20px 0 !important;
    }

    .nexus-phone {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .phone-glow {
        display: none !important;
    }

    .phone-reflection {
        display: none !important;
    }

    .chat-text {
        padding: 0 20px !important;
    }

    .section-title-large {
        font-size: 24px !important;
    }

    .section-description {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .chat-section .section-title-large {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .chat-section .section-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    .chat-section .section-title-large {
        font-size: 36px !important;
        font-weight: 600 !important;
    }

    .chat-section .section-description {
        font-size: 12px !important;
        opacity: 0.8 !important;
    }
}

@media (max-width: 768px) {
    .chat-text .section-title-large {
        font-size: inherit !important;
    }

    .chat-text .section-description {
        font-size: inherit !important;
    }
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 768px) {
    .chat-text p:nth-child(2) {
        font-size: 32px !important;
        line-height: 1.2 !important;
        font-weight: 400 !important;
    }

    .chat-section .section-title-large {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .msg-bubble {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }

    .nexus-phone {
        font-size: 12px !important;
    }

    .nexus-input {
        font-size: 12px !important;
        padding: 8px 12px !important;
        height: 36px !important;
    }

    .nexus-send-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .nexus-send-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    .msg-avatar {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 768px) {
    .msg-bubble {
        font-size: 9px !important;
        padding: 4px 8px !important;
    }

    .nexus-phone {
        font-size: 10px !important;
    }

    .nexus-input {
        font-size: 10px !important;
        height: 32px !important;
    }

    .msg-avatar {
        width: 20px !important;
        height: 20px !important;
    }

    .nexus-header-title {
        font-size: 12px !important;
    }

    .nexus-header-subtitle {
        font-size: 9px !important;
    }
}

@media (max-width: 768px) {
    html body .nexus-phone .nexus-chat-screen .nexus-chat-area .msg-row .msg-content .msg-bubble {
        font-size: 9px !important;
        padding: 4px 8px !important;
        line-height: 1.3 !important;
    }

    html body .nexus-phone .nexus-chat-screen .nexus-chat-area .msg-row .msg-content .msg-bubble p {
        font-size: 9px !important;
        margin: 0 !important;
    }

    html body .nexus-phone .nexus-chat-screen .nexus-input-area .nexus-input-wrapper .nexus-input {
        font-size: 10px !important;
        height: 32px !important;
    }
}

@media (max-width: 768px) {
    .msg-bubble p {
        font-size: 10px !important;
        line-height: 1.4 !important;
    }

    .msg-bubble span {
        font-size: 10px !important;
    }

    .highlight-green {
        font-size: 10px !important;
    }
}

@media (max-width: 768px) {
    .msg-bubble p {
        font-size: 14px !important;
        text-align: left !important;
    }

    .msg-bubble span {
        font-size: 14px !important;
    }

    .highlight-green {
        font-size: 14px !important;
    }

    .msg-bubble {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .msg-bubble p {
        font-size: 12px !important;
    }

    .msg-bubble span {
        font-size: 12px !important;
    }

    .highlight-green {
        font-size: 12px !important;
    }
}

@media (max-width: 768px) {
    .phone-mockup-container {
        margin: 0 !important;
    }

    .use-cases-section {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .chat-section {
        padding: 0 !important;
    }
}



.ai-bubble,
.rich-bubble,
.ai-bubble p {
    text-align: left !important;
}