﻿/* Modern Futuristic Style for Extern AI */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --font-main: 'Space Grotesk', sans-serif;
    --color-bg: #f1f5f9;
    --color-surface: #f8fafc;
    --color-card: #f8fafc;
    --color-accent: #181f3a;
    --color-text: #1e293b;
    --color-muted: #64748b;
    --radius: 1.5rem;
    --shadow: 0 8px 32px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-main);
    background: linear-gradient(
        to bottom,
        #f4f7fa 0%,
        #e9eef3 30%,
        #e2e8f0 60%,
        #cbd5e1 85%,
        #94a3b8 100%
    );
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    display: flex;
    transition: background 0.6s cubic-bezier(.4,0,.2,1), color 0.4s;
}

body.dark-theme {
    background: linear-gradient(
        to bottom,
        #1e293b 0%,
        #1a2234 40%,
        #151c23 80%,
        #0f172a 100%
    ) !important;
    color: var(--color-text);
    transition: background 0.6s cubic-bezier(.4,0,.2,1), color 0.4s;
}

body.dark-theme > * {
    background: transparent !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4vw 1.5rem 4vw;
    background: transparent;
    box-shadow: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text);
    letter-spacing: -1px;
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    padding: 0.2rem 0.5rem;
}

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

.btn-signup {
    background: #fff;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
    border-radius: 2rem;
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1.5rem;
    box-shadow: 0 2px 12px rgba(99,102,241,0.07);
    transition: var(--transition);
    cursor: pointer;
}

.btn-signup:hover {
    background: var(--color-accent);
    color: #fff;
}

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    padding: 13vh 2vw 10vh 2vw;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 92vh;
    /* Center the whole group horizontally */
}

.hero-robo-img-wrapper {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
}

.hero-robo-img {
    width: 340px;
    max-width: 36vw;
    min-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    display: block;
}

.hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: center;
    max-width: 540px;
    min-width: 0;
    text-align: center; /* Center text inside */
    margin-top: 15vh;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-align: center;
}

.hero-content .hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: var(--color-muted);
    text-align: center;
    width: 100%;
}

body.dark-theme .hero-robo-img {
    box-shadow: none !important;
}

.glass-input-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    border-radius: 2.5rem;
    box-shadow: 0 8px 32px rgba(99, 101, 241, 0), 0 1.5px 8px rgba(0,0,0,0.04);
    padding: 0.7rem 2.7rem;
    max-width: 620px;
    min-width: 400px;
    width: 100%;
    margin: 0 auto 3.5rem auto;
    backdrop-filter: blur(8px);
    border: 1.5px solid #e0e7ef;
    font-size: 1.22rem;
}

.glass-input-box input {
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 1.22rem;
    padding: 1.1rem 1.3rem;
    outline: none;
    flex: 1;
    min-width: 0;
}

.glass-input-box button {
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-theme .glass-input-box button {
    background: var(--color-accent);
    color: #181f3a !important;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 2rem 0;
    text-align: center;
    color: var(--color-text);
}

.cards-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 2px solid #bfc9d9;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(24,31,58,0.13);
    padding: 1.5rem 1.2rem 1.5rem 1.2rem;
    margin: 0 auto 1.2rem auto;
    min-width: 0;
    max-width: 340px;
    width: 97vw;
    position: relative;
    overflow: hidden;
}

.card * {
    overflow: visible !important;
    position: static !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
}

.card:hover {
    box-shadow:
        0 24px 64px 0 rgba(24,31,58,0.22),
        0 32px 80px 0 rgba(24,31,58,0.13),
        0 4px 24px 0 rgba(0,0,0,0.08);
    transform: translateY(-10px) scale(1.035);
}

.card h5 {
    font-size: 1.13rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.card p {
    font-size: 0.98rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

.card .card-icon {
    font-size: 1.7rem;
    color: var(--color-accent);
    margin-bottom: 0.7rem;
    display: block;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.pricing-cards-row {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
}

.pricing-card,
.pricing-card-pro {
    box-sizing: border-box;
    border: 3px solid #bfc9d9 !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 1rem !important;
    box-shadow: 0 2px 12px rgba(24,31,58,0.13) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1rem 0.7rem 1rem 0.7rem !important;
    margin: 0 auto 1.2rem auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 270px !important;
    position: relative !important;
    transition: box-shadow 0.2s, border-color 0.2s;
    height: 100%;
}

.pricing-card:hover,
.pricing-card-pro:hover {
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.18);
    border-color: var(--color-accent) !important;
}

.pricing-card h5 {
    font-size: 1.13rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    text-align: left;
}

.pricing-card-desc {
    color: var(--color-muted);
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
    text-align: left;
}

.pricing-card-price {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 0.2rem;
    text-align: left;
}

.pricing-card-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-left: 0.1rem;
}

.pricing-card-yearly {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.95rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0.2rem;
    box-shadow: 0 2px 12px rgba(24,31,58,0.09);
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    border: 2px solid var(--color-accent);
}

.pricing-btn:hover {
    background: #fff;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.pricing-includes {
    color: var(--color-muted);
    font-size: 0.91rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
    letter-spacing: 0.04em;
    text-align: left;
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features li {
    display: flex;
    align-items: center;
    font-size: 0.91rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
}

.check-icon {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-right: 0.7em;
    font-weight: bold;
}

.pricing-card-content {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card-spacer {
    flex-grow: 1;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.final-cta h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.2rem;
}

.btn-get-started {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(24,31,58,0.09);
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn-get-started:hover {
    background: #fff;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

@media (max-width: 900px) {
    .cards-row, .pricing-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .navbar {
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 1rem 1rem 1rem;
    }
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin: 2.5rem 0 2rem 0;
        text-align: center;
        color: var(--color-text);
    }
    .final-cta {
        min-height: 120px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .hero-section {
        flex-direction: column;
        gap: 2.2rem;
        padding: 9vh 1vw 6vh 1vw;
        min-height: 80vh;
    }
    .hero-content {
        align-items: center;
        max-width: 100vw;
    }
    .hero-robo-img-wrapper {
        min-width: 0;
    }
    .hero-robo-img {
        width: 180px;
        max-width: 80vw;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: rgba(30,36,48,0.55); /* glassmorphism */
    backdrop-filter: blur(16px);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    border: none;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    padding: 0;
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1rem;
    background: rgba(30,36,48,0.55); /* glassmorphism */
    backdrop-filter: blur(16px);
    border: none;
    box-shadow: none;
    width: 100%;
    position: relative;
    z-index: 2;
}
.sidebar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}
.sidebar-toggle-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
}
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        width: 220px;
    }
    .sidebar.sidebar-open {
        transform: translateX(0);
    }
    .sidebar-toggle-btn {
        display: flex;
    }
    .main-content {
        margin-left: 0 !important;
    }
}
@media (min-width: 901px) {
    .sidebar {
        transform: translateX(0);
    }
    .sidebar-toggle-btn {
        display: none;
    }
    .main-content {
        margin-left: 220px !important;
    }
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 2.5rem;
}
.sidebar-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.13rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
    padding: 0.2rem 0 0.2rem 0.5rem;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 1.2rem 1.2rem 0;
}
.sidebar-link:hover,
.sidebar-link:focus {
    color: var(--color-accent);
    background: rgba(125,211,252,0.08);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.1rem;
}

.main-content {
    width: 100%;
    min-height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-left: 220px;
    box-sizing: border-box;
    transition: margin-left 0.3s cubic-bezier(.4,0,.2,1);
}

.main-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
}

@media (max-width: 900px) {
    .main-content {
        margin-left: 0;
        margin-top: 70px;
        width: 100vw;
        padding: 0;
        box-sizing: border-box;
    }
    .main-centered {
        max-width: 100vw;
        margin: 0 auto;
        padding: 0;
    }
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        width: 220px;
        z-index: 3000;
    }
    body.dark-theme .sidebar {
        border-bottom: 1.5px solid #23304a;
    }
    .sidebar-header {
        margin-bottom: 0;
        margin-right: 2rem;
    }
    .sidebar-brand {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .sidebar-nav {
        flex-direction: row;
        gap: 1.2rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sidebar-nav::-webkit-scrollbar {
        display: none;
    }
    .sidebar-link {
        border-left: none;
        border-radius: 0.8rem;
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
        white-space: nowrap;
    }
    .sidebar-link::before {
        display: none;
    }
    .sidebar-link:hover,
    .sidebar-link:focus {
        background: rgba(125, 212, 252, 0);
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 600px) {
    .sidebar {
        padding: 0.8rem 1rem;
    }
    .sidebar-brand {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    .sidebar-nav {
        gap: 0.8rem;
    }
    .sidebar-link {
        font-size: 0.95rem;
        padding: 0.3rem 0.6rem;
    }
    .main-content {
        margin-top: 60px;
    }
}

@media (max-width: 400px) {
    .sidebar {
        padding: 0.6rem 0.8rem;
    }
    .sidebar-brand {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    .sidebar-nav {
        gap: 0.6rem;
    }
    .sidebar-link {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar {
        width: 200px;
    }
    .main-content {
        margin-left: 200px;
    }
    .sidebar-link {
        font-size: 1.05rem;
    }
}

/* Ensure content is properly spaced on mobile */
@media (max-width: 900px) {
    .hero-section {
        padding: 1.5rem 1rem 0 1rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-section .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }

    .hero-robo-img {
        width: 180px;
    }

    .glass-input-box {
        max-width: 90%;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin: 2.5rem 0 2rem 0;
        text-align: center;
        color: var(--color-text);
    }

    .cards-row {
        padding: 0 1rem;
        gap: 1.2rem;
    }

    .card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.2rem;
    }

    .pricing-section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .pricing-header {
        padding: 0 1rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-text);
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .pricing-cards-row {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.2rem;
    }

    .testimonials-section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .testimonials-header {
        padding: 0 1rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-cards-row {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .testimonials-cards-row > div {
        max-width: 340px;
        min-width: 180px;
        margin: 0 0.5rem 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 0 1.5rem 0;
        position: relative;
    }

    .testimonial-quote {
        font-size: 1.05rem;
        color: var(--color-text);
        font-style: italic;
        line-height: 1.5;
        margin-bottom: 0.7rem;
        text-align: center;
        max-width: 100%;
        position: relative;
        padding: 0 0.5rem;
    }
    .testimonial-quote::before {
        content: '“';
        font-size: 1.7rem;
        color: var(--color-accent);
        opacity: 0.16;
        position: absolute;
        left: 0.1rem;
        top: -0.7rem;
        font-family: serif;
        line-height: 1;
    }
    .testimonial-quote::after {
        content: '”';
        font-size: 1.7rem;
        color: var(--color-accent);
        opacity: 0.16;
        position: absolute;
        right: 0.1rem;
        bottom: -0.7rem;
        font-family: serif;
        line-height: 1;
    }
    .testimonial-author {
        margin-top: 0.1rem;
        text-align: center;
    }
    .testimonial-name {
        font-weight: 700;
        color: var(--color-accent);
        font-size: 0.98rem;
        margin-bottom: 0.05rem;
        letter-spacing: 0.01em;
    }
    .testimonial-role {
        color: var(--color-muted);
        font-size: 0.89rem;
        font-weight: 400;
        margin-top: 0.05rem;
    }

    .faq-section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .faq-header {
        padding: 0 1rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-timeline {
        padding: 0 1rem 0 2.5rem;
        max-width: 100%;
    }

    .about-section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .about-header {
        padding: 0 1rem;
    }

    .about-header h2 {
        font-size: 1.8rem;
    }

    .about-content {
        margin: 0 1rem;
        padding: 1.5rem 1.2rem;
    }

    .final-cta {
        padding: 2rem 1rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1rem;
    }

    .hero-robo-img {
        width: 150px;
    }

    .glass-input-box {
        padding: 0.4rem 1rem;
    }

    .glass-input-box input {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }

    .glass-input-box button {
        width: 2.2rem;
        height: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin: 2.5rem 0 2rem 0;
        text-align: center;
        color: var(--color-text);
    }

    .card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        max-width: 98vw;
        border-radius: 0.9rem;
    }

    .card h5 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-text);
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .pricing-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        background: #fff !important;
        border: 2px solid #bfc9d9 !important;
        border-radius: 1rem !important;
        box-shadow: 0 2px 12px rgba(24, 31, 58, 0) !important;
        min-height: 0 !important;
        padding: 1rem 0.7rem 1rem 0.7rem !important;
        margin: 0 auto 1.2rem auto !important;
        overflow: visible !important;
        position: relative !important;
    }
    .pricing-card * {
        overflow: visible !important;
        position: static !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }
    .pricing-features,
    .pricing-includes,
    .pricing-btn {
        margin-bottom: 0.5rem !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }
    .pricing-btn {
        align-self: stretch !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        margin-top: 0.7rem !important;
        border-radius: 1rem !important;
    }
    .pricing-features {
        padding-bottom: 0.2rem !important;
    }

    .testimonials-header h2 {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 1.2rem 1rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .about-header h2 {
        font-size: 1.6rem;
    }

    .about-content {
        font-size: 1rem;
        padding: 1.2rem 1rem;
    }

    .about-list li {
        font-size: 0.95rem;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .btn-get-started {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .cards-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .pricing-cards-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .testimonials-cards-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .about-content {
        margin: 0 1.5rem;
    }
}

/* Ensure proper spacing for fixed header */
@media (max-width: 900px) {
    .main-content {
        padding-top: 4.5rem;
    }

    .theme-switcher-switch {
        top: 1.2rem;
        right: 1.2rem;
    }
}

/* Adjust chat modal for mobile */
@media (max-width: 600px) {
    .chat-modal {
        right: 1rem;
        bottom: 1rem;
        width: calc(100% - 2rem);
        max-height: 80vh;
    }

    .chat-body {
        height: 200px;
    }
}

/* --- Center the whole site horizontally and vertically --- */
.site-outer-center {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent !important;
}

/* --- Dropdown Header Modern Glassy Menu --- */
.dropdown-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 300;
    padding-left: 3vw;
}

.dropdown-header-left {
    justify-content: flex-start;
}

.dropdown-brand {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: color 0.2s;
    position: relative;
}
.dropdown-brand:hover, .dropdown-brand:focus {
    color: var(--color-accent);
    background: transparent;
    box-shadow: none;
}

.dropdown-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.dropdown-brand:hover .dropdown-chevron svg,
.dropdown-brand:focus .dropdown-chevron svg {
    transform: rotate(180deg) scale(1.1);
    stroke: var(--color-accent);
}
.dropdown-chevron svg {
    display: block;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), stroke 0.3s;
}

.dropdown-brand:focus .dropdown-menu,
.dropdown-brand:hover .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1);
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(0.95);
    top: 2.7rem;
    background: rgba(255,255,255,0.95);
    border-radius: 1.5rem;
    box-shadow:
        0 8px 32px 0 rgba(24,31,58,0.18),
        0 16px 48px 0 rgba(24,31,58,0.10),
        0 1.5px 8px 0 rgba(0,0,0,0.04);
    padding: 1.5rem 3rem;
    min-width: 220px;
    gap: 1.3rem;
    z-index: 400;
    border: 1.5px solid #e0e7ef;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
}

.dropdown-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
    padding: 0.5rem 1.2rem;
    border-radius: 0.8rem;
    width: 100%;
    text-align: left;
}
.dropdown-link:hover,
.dropdown-link:focus {
    color: var(--color-accent);
    background: rgba(24, 31, 58, 0);
}

/* Center all main content */
.main-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
}

.container, .hero-section, .cards-row, .pricing-row, .final-cta {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

@media (max-width: 900px) {
    .dropdown-header {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        padding-left: 1vw;
    }
    .dropdown-brand {
        font-size: 1.3rem;
        padding: 0.5rem 1.2rem 0.5rem 1rem;
    }
    .dropdown-menu {
        top: 2.7rem;
        min-width: 160px;
        padding: 0.8rem 1.2rem;
    }
}

/* --- Modern Pricing Section --- */
.pricing-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pricing-subtitle {
    color: var(--color-muted);
    font-size: 1rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pricing-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.pricing-desc {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1500px) {
    .pricing-cards-row {
        gap: 1.2rem;
    }
    .pricing-card {
        min-width: 300px;
        max-width: 340px;
        padding: 1.5rem 1.1rem 1.1rem 1.1rem;
    }
}
@media (max-width: 1100px) {
    .pricing-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .pricing-card {
        max-width: 95vw;
        min-width: 220px;
        min-height: 0;
    }
}

/* Update chevron SVG color in .dropdown-chevron svg if needed */
.dropdown-chevron svg path {
    stroke: var(--color-accent);
    transition: stroke 0.3s;
}
.dropdown-brand:hover .dropdown-chevron svg path,
.dropdown-brand:focus .dropdown-chevron svg path {
    stroke: var(--color-accent);
}

.pricing-card-pro {
    background: #fff !important;
    border: 3px solid #bfc9d9 !important;
}
body.dark-theme .pricing-card-pro {
    background: var(--color-card) !important;
    border: 3px solid #23304a !important;
}

.pricing-card:hover,
.pricing-card-pro:hover {
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.18);
    border-color: var(--color-accent) !important;
}

.testimonials-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.testimonials-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.testimonials-cards-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.testimonials-cards-row > div {
    max-width: 340px;
    min-width: 180px;
    margin: 0 0.5rem 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 1.5rem 0;
    position: relative;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.7rem;
    text-align: center;
    max-width: 100%;
    position: relative;
    padding: 0 0.5rem;
}
.testimonial-quote::before {
    content: '“';
    font-size: 1.7rem;
    color: var(--color-accent);
    opacity: 0.16;
    position: absolute;
    left: 0.1rem;
    top: -0.7rem;
    font-family: serif;
    line-height: 1;
}
.testimonial-quote::after {
    content: '”';
    font-size: 1.7rem;
    color: var(--color-accent);
    opacity: 0.16;
    position: absolute;
    right: 0.1rem;
    bottom: -0.7rem;
    font-family: serif;
    line-height: 1;
}
.testimonial-author {
    margin-top: 0.1rem;
    text-align: center;
}
.testimonial-name {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.98rem;
    margin-bottom: 0.05rem;
    letter-spacing: 0.01em;
}
.testimonial-role {
    color: var(--color-muted);
    font-size: 0.89rem;
    font-weight: 400;
    margin-top: 0.05rem;
}

.faq-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.faq-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
}
.faq-subtitle {
    color: var(--color-muted);
    font-size: 1rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    width: 100%;
    max-width: 1200px;
}
.faq-item {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(24,31,58,0.07);
    border: 1.5px solid #e0e7ef;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 170px;
    transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
}
.faq-item:hover {
    box-shadow: 0 16px 48px 0 rgba(24,31,58,0.13), 0 4px 24px 0 rgba(0,0,0,0.08);
    transform: translateY(-6px) scale(1.02);
}
.faq-question {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
}
.faq-answer {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-left: 0.1rem;
}
@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .faq-item {
        min-height: 0;
    }
}

.faq-timeline {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 0;
}
.faq-timeline::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e0e7ef 0%, var(--color-accent) 100%);
    border-radius: 2px;
    z-index: 0;
}
.faq-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.faq-step-marker {
    position: relative;
    z-index: 1;
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
    min-height: 1.6rem;
    background: #fff;
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(13, 20, 48, 0.805);
    margin-top: 0.2rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.faq-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-question {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
}
.faq-answer {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-left: 0.1rem;
}
.faq-step-marker {
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.faq-step:hover .faq-step-marker,
.faq-step:focus-within .faq-step-marker {
    border-color: #0c122a;
    box-shadow: 0 4px 16px rgba(24, 31, 58, 0.76);
    background: #e0e7ef;
}
.faq-step-marker.active {
    background: #fff !important; /* or transparent */
    border-color: #181f3a !important;
    box-shadow: none !important;
    position: relative;
}
.faq-step-marker.active::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    background: #181f3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 700px) {
    .faq-timeline {
        padding-left: 1.2rem;
        max-width: 98vw;
        gap: 1.5rem;
    }
    .faq-step-marker {
        width: 1.1rem;
        height: 1.1rem;
        min-width: 1.1rem;
        min-height: 1.1rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.97rem;
    }
}

.scroll-to-top {
    position: fixed;
    right: 2.2rem;
    bottom: 5rem;
    z-index: 999;
    background: rgba(255,255,255,0.92);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(24,31,58,0.13), 0 1.5px 8px rgba(0,0,0,0.04);
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.scroll-to-top:hover {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 16px 48px rgba(24,31,58,0.18);
}
.scroll-to-top svg {
    display: block;
    pointer-events: none;
}
@media (max-width: 700px) {
    .scroll-to-top {
        right: 1rem;
        bottom: 4.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
}

body.dark-theme .scroll-to-top {
    background: #181f3a !important;
    color: #fff !important;
    border-color: #d1d5db;
}
body.dark-theme .scroll-to-top svg {
    stroke: #fff !important;
    color: #fff !important;
    fill: none !important;
}
body.dark-theme .scroll-to-top:hover {
    background: #d1d5db !important;
    color: #181f3a !important;
    border-color: #d1d5db;
}
body.dark-theme .scroll-to-top:hover svg {
    stroke: #181f3a !important;
    color: #181f3a !important;
    fill: none !important;
}

.about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.about-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.about-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.about-content {
    max-width: 800px;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.04);
    border: 1.5px solid #e0e7ef;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list i {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-right: 0.9em;
}

.theme-switcher { display: none !important; }
.theme-switcher-switch {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1200;
    cursor: pointer;
    user-select: none;
}
.theme-switcher-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 4.2rem;
    height: 2.3rem;
    background: rgba(255,255,255,0.55);
    border: 2.5px solid var(--color-accent);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.04), 0 0 0 0px var(--color-accent);
    position: relative;
    transition: background 0.3s, border 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(8px);
    overflow: visible;
    padding: 0 0.5rem;
}
.theme-switcher-switch:hover .theme-switcher-slider,
.theme-switcher-switch:focus .theme-switcher-slider {
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.08), 0 0 0 4px var(--color-accent);
    border-color: var(--color-accent);
}
.theme-switcher-icon {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    transition: opacity 0.3s, color 0.3s, filter 0.3s, scale 0.3s;
    color: var(--color-accent);
    pointer-events: none;
    filter: drop-shadow(0 0 2px var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.theme-switcher-icon.sun {
    opacity: 1;
    scale: 1;
}
.theme-switcher-icon.moon {
    opacity: 0.5;
    scale: 0.92;
}
.theme-switcher-switch input:checked + .theme-switcher-slider .sun {
    opacity: 0.5;
    scale: 0.92;
}
.theme-switcher-switch input:checked + .theme-switcher-slider .moon {
    opacity: 1;
    scale: 1.08;
}
.theme-switcher-switch input + .theme-switcher-slider::before {
    z-index: 1;
}
.theme-switcher-icon {
    z-index: 2;
}
@media (max-width: 700px) {
    .theme-switcher-switch {
        top: 1rem;
        right: 1rem;
    }
    .theme-switcher-slider {
        width: 3.2rem;
        height: 1.5rem;
    }
    .theme-switcher-switch input + .theme-switcher-slider::before {
        width: 0.9rem;
        height: 0.9rem;
        left: 0.18rem;
        top: 0.28rem;
    }
    .theme-switcher-switch input:checked + .theme-switcher-slider::before {
        left: 1.7rem;
    }
    .theme-switcher-icon.sun {
        left: 0.35rem;
    }
    .theme-switcher-icon.moon {
        right: 0.35rem;
    }
}
body.dark-theme .theme-switcher-slider {
    background: rgba(30,36,48,0.85);
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.32), 0 0 0 0px var(--color-accent);
}
body.dark-theme .theme-switcher-switch:hover .theme-switcher-slider {
    box-shadow: 0 8px 32px 0 rgba(24,31,58,0.38), 0 0 0 4px var(--color-accent);
}
body.dark-theme .theme-switcher-switch input:checked + .theme-switcher-slider::before {
    background: linear-gradient(135deg, var(--color-accent) 60%, #151c23 100%);
    box-shadow: 0 0 24px 6px var(--color-accent), 0 2px 12px 0 rgba(24,31,58,0.18);
    border: 2.5px solid var(--color-accent);
}

/* --- DARK THEME --- */
body.dark-theme {
    --color-bg: #151c23;
    --color-surface: #1a222b;
    --color-card: rgba(30,36,48,0.85);
    --color-accent: #d1d5db;
    --color-text: #e5e7eb;
    --color-muted: #a0aec0;
    --shadow: 0 8px 32px rgba(0,0,0,0.32);
}
body.dark-theme {
    background: var(--color-bg);
    color: var(--color-text);
    transition: background 0.4s, color 0.4s;
}
body.dark-theme .card,
body.dark-theme .pricing-card,
body.dark-theme .testimonial-card,
body.dark-theme .about-content,
body.dark-theme .faq-item,
body.dark-theme .dropdown-menu {
    background: var(--color-card) !important;
    color: var(--color-text);
    border-color: #23304a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}
body.dark-theme .pricing-card-pro {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(30,36,48,0.95) 80%, #23304a 100%) !important;
}
body.dark-theme .dropdown-menu {
    background: rgba(30,36,48,0.97) !important;
}
body.dark-theme .dropdown-link:hover,
body.dark-theme .dropdown-link:focus {
    background: rgba(125,211,252,0.08);
    color: var(--color-accent);
}
body.dark-theme .scroll-to-top,
body.dark-theme .theme-switcher {
    background: rgba(30,36,48,0.92);
    color: var(--color-accent);
    border-color: var(--color-accent);
}
body.dark-theme .scroll-to-top:hover,
body.dark-theme .theme-switcher:hover {
    background: var(--color-accent);
    color: #151c23;
}
body.dark-theme .faq-timeline::before {
    background: linear-gradient(to bottom, #23304a 0%, var(--color-accent) 100%);
}
body.dark-theme .faq-step-marker {
    background: #151c23;
    border-color: var(--color-accent);
}
body.dark-theme .about-list i {
    color: var(--color-accent);
}
body.dark-theme .glass-input-box {
    background: rgba(30,36,48,0.7);
    border-color: #23304a;
}
body.dark-theme .glass-input-box input {
    color: var(--color-text);
}
body.dark-theme .pricing-btn,
body.dark-theme .btn-get-started {
    background: var(--color-accent);
    color: #151c23;
    border-color: var(--color-accent);
}
body.dark-theme .pricing-btn:hover,
body.dark-theme .btn-get-started:hover {
    background: #151c23;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
body.dark-theme .pricing-includes,
body.dark-theme .faq-answer,
body.dark-theme .about-header p,
body.dark-theme .testimonials-header p {
    color: #a0aec0;
}
body.dark-theme .faq-question,
body.dark-theme .about-header h2,
body.dark-theme .testimonials-header h2,
body.dark-theme .pricing-header h2 {
    color: #e5e7eb;
}
body.dark-theme .dropdown-brand {
    color: #e5e7eb;
}
body.dark-theme .dropdown-brand:hover,
body.dark-theme .dropdown-brand:focus {
    color: var(--color-accent);
}

body.dark-theme .site-outer-center,
body.dark-theme .main-centered,
body.dark-theme .container,
body.dark-theme .hero-section {
    background: transparent !important;
}

/* --- Force dark theme gradient background to always show --- */
body.dark-theme {
    background: linear-gradient(
        to bottom,
        #23272f 0%,
        #202a44 40%,
        #151c23 80%,
        #0a0d13 100%
    ) !important;
}

.chat-modal {
    display: none;
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    width: 350px;
    max-width: 95vw;
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(24,31,58,0.18);
    z-index: 2000;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.3s;
}
body.dark-theme .chat-modal {
    background: rgba(30,36,48,0.97);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
.chat-header {
    padding: 1rem;
    background: transparent;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e7ef;
}
.chat-body {
    padding: 1rem;
    height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background: transparent;
}
.chat-message {
    max-width: 80%;
    padding: 0.7rem 1rem;
    border-radius: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(24,31,58,0.07);
}
.chat-message.user {
    align-self: flex-end;
    background: var(--color-accent);
    color: #fff;
}
.chat-message.ai {
    align-self: flex-start;
    background: #f1f5f9;
    color: var(--color-text);
}
body.dark-theme .chat-message.ai {
    background: #23272f;
    color: var(--color-text);
}
.chat-input-row {
    display: flex;
    padding: 0.7rem 1rem;
    border-top: 1px solid #e0e7ef;
    background: transparent;
}
.chat-input-row input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: var(--color-text);
}
.chat-input-row button {
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    margin-left: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
}
#closeChatBtn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--color-text);
}

.chat-fab {
    position: fixed;
    right: 2.5rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(24,31,58,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 2100;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.chat-fab:hover {
    background: #fff;
    color: var(--color-accent);
    box-shadow: 0 16px 48px rgba(24,31,58,0.18);
}
body.dark-theme .chat-fab {
    background: var(--color-accent);
    color: #151c23;
}

@media (max-width: 700px) {
    .scroll-to-top {
        right: 1rem;
        bottom: 4.5rem;
    }
    .chat-fab {
        right: 1rem;
        bottom: 1rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        width: 220px;
        z-index: 3000;
    }

    .sidebar.mobile-active {
        transform: translateX(0);
    }

    .sidebar-header {
        margin-bottom: 2rem;
        width: 100%;
    }

    .sidebar-brand {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .sidebar-nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        overflow-y: auto;
        padding-right: 0.5rem;
    }

    .sidebar-link {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 0.8rem;
        font-size: 1.1rem;
        border-left: none;
        background: rgba(125,211,252,0.05);
    }

    .sidebar-link:hover,
    .sidebar-link:focus {
        background: rgba(125,211,252,0.1);
        padding: 0.8rem 1rem;
    }

    .main-content {
        margin-left: 0;
        margin-top: 0;
        padding-top: 4rem;
    }

    body.dark-theme .sidebar {
        background: var(--color-card);
        border-color: #23304a;
    }

    body.dark-theme .sidebar-link {
        background: rgba(125,211,252,0.05);
    }

    body.dark-theme .sidebar-link:hover,
    body.dark-theme .sidebar-link:focus {
        background: rgba(125,211,252,0.1);
    }
}

@media (max-width: 600px) {
    .sidebar {
        width: 100%;
        padding: 4rem 1rem 1.5rem 1rem;
    }

    .sidebar-brand {
        font-size: 1.5rem;
    }

    .sidebar-link {
        font-size: 1rem;
        padding: 0.7rem 0.9rem;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 1.2rem 0 1rem 0;
    }
    .pricing-header {
        padding: 0 0.5rem;
    }
    .pricing-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-text);
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .pricing-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 0;
    }
    .pricing-card {
        max-width: 340px;
        min-width: 0;
        width: 97vw;
        margin: 0 auto;
        border-radius: 1rem;
        box-shadow: 0 2px 12px rgba(24,31,58,0.13);
        border-width: 1px;
        padding: 1rem 0.7rem 1rem 0.7rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        position: relative;
        overflow: visible;
    }
    .pricing-card + .pricing-card {
        margin-top: 1.2rem;
    }
    .pricing-card-content {
        padding: 0;
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    .pricing-card hr {
        margin: 0.5rem 0 0.5rem 0;
        border: none;
        border-top: 1px solid #e0e7ef;
        width: 100%;
    }
    .pricing-card h5 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    .pricing-card-desc {
        font-size: 0.89rem;
        margin-bottom: 0.5rem;
    }
    .pricing-card-price {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    .pricing-card-yearly {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .pricing-includes {
        font-size: 0.82rem;
        margin-top: 0.5rem;
        margin-bottom: 0.2rem;
        letter-spacing: 0.04em;
        color: var(--color-muted);
        font-weight: 700;
    }
    .pricing-features {
        font-size: 0.89rem;
        margin-bottom: 0.2rem;
        padding-left: 0.1rem;
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
        overflow: visible !important;
        max-height: none !important;
        white-space: normal;
    }
    .pricing-features li {
        font-size: 0.89rem;
        margin-bottom: 0.1rem;
        align-items: flex-start;
        line-height: 1.4;
        word-break: break-word;
        padding-left: 0.1rem;
        display: flex;
        gap: 0.4em;
        overflow: visible;
        white-space: normal;
    }
    .check-icon {
        font-size: 1rem;
        margin-right: 0.4em;
        min-width: 1em;
    }
    .pricing-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        border-radius: 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.2rem;
        width: 90%;
        align-self: center;
    }
}

@media (max-width: 400px) {
    .pricing-card {
        max-width: 98vw;
        padding: 0.8rem 0.2rem 0.8rem 0.2rem;
        border-radius: 0.7rem;
    }
    .pricing-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        border-radius: 1rem;
        width: 95%;
    }
    .pricing-features li {
        font-size: 0.9rem;
    }
}

.pricing-section,
.testimonials-section,
.faq-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-section {
    margin-top: 0;
}

.section-title {
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .pricing-section,
    .testimonials-section,
    .faq-section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .pricing-section {
        margin-top: 0;
    }
    .section-title {
        margin-bottom: 1rem;
    }
}

.features-sidebyside {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin: 3rem 0 2.5rem 0;
    flex-direction: row; /* Diagram on left, text on right */
    flex-wrap: wrap; /* Allow items to wrap when space is constrained */
}

.features-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Allow it to grow and shrink */
    min-width: 280px; /* Minimum width to prevent crushing */
    max-width: calc(50% - 1.75rem); /* Limits its size to 50% of the container */
}

.features-illustration img,
.features-illustration svg {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
    background: none;
    border-radius: 0;
    object-fit: contain;
}

.features-minimal {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    flex: 1; /* Allow it to grow and shrink */
    min-width: 320px; /* Minimum width to prevent crushing */
    max-width: calc(50% - 1.75rem); /* Limits its size to 50% of the container */
    text-align: left;
}

@media (max-width: 900px) {
    .features-sidebyside {
        flex-direction: row; /* Still diagram left, text right on tablets */
        gap: 2rem; /* Reduced gap for smaller screens */
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }
    .features-illustration,
    .features-minimal {
        flex-basis: calc(50% - 1rem); /* Adjust for smaller gap */
    }
    .features-illustration {
        min-width: 200px;
        margin-bottom: 0;
    }
    .features-illustration img,
    .features-illustration svg {
        max-width: 100%;
    }
    .features-minimal {
        min-width: 250px;
        align-items: flex-start;
        text-align: left;
    }
    .feature-minimal-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .features-sidebyside {
        flex-direction: column; /* Stack vertically */
        flex-wrap: wrap; /* Ensure wrapping is allowed */
        gap: 2rem;
        text-align: center;
    }
    .features-illustration {
        order: 2; /* Move illustration below text on mobile */
        margin-bottom: 1.5rem;
        width: 100%; /* Take full width */
        max-width: 250px; /* Constrain image size on mobile */
        flex: 0 0 auto; /* Reset flex to fit content */
        min-width: auto; /* Allow shrinking */
    }
    .features-illustration img,
    .features-illustration svg {
        width: 100%;
        height: auto;
        max-width: 250px; /* Ensure SVG scales down */
    }
    .features-minimal {
        order: 1; /* Move text above illustration on mobile */
        margin-bottom: 0;
        width: 100%; /* Take full width */
        max-width: 90%; /* Constrain text block width */
        align-items: center;
        text-align: center;
        min-width: auto; /* Allow shrinking */
    }
    .feature-minimal-item {
        align-items: center;
        text-align: center;
    }
    .feature-minimal-item strong,
    .feature-minimal-item p {
        text-align: center;
        width: 100%;
    }
    .feature-icon {
        display: block;
        margin-bottom: 0.5rem;
    }
}

body.dark-theme .pricing-card,
body.dark-theme .pricing-card-pro {
    box-sizing: border-box;
    border: 3px solid #23304a !important;
    background: var(--color-card) !important;
    border-radius: 1rem !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.32) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1rem 0.7rem 1rem 0.7rem !important;
    margin: 0 auto 1.2rem auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 270px !important;
    position: relative !important;
    transition: box-shadow 0.2s, border-color 0.2s;
    height: 100%;
}
body.dark-theme .pricing-card-pro {
    background: linear-gradient(135deg, rgba(30,36,48,0.95) 80%, #23304a 100%) !important;
}
body.dark-theme .pricing-card:hover,
body.dark-theme .pricing-card-pro:hover {
    box-shadow: 0 8px 32px 0 rgba(125,211,252,0.18);
    border-color: var(--color-accent) !important;
}

.faq-step-marker.active::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    background: #181f3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.faq-step:hover .faq-step-marker::after,
.faq-step:focus-within .faq-step-marker::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    background: #181f3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Sidebar Toggle Button */
.sidebar-toggle-btn {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2001;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.sidebar-toggle-btn:focus {
    outline: 2px solid var(--color-accent);
}

/* Sidebar Slide-in/Out */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem 1.5rem 2rem;
    min-height: 100vh;
    z-index: 2000;
    box-shadow: none !important;
    border: none !important;
    border-right: none !important;
    border-bottom: none !important;
    backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.3s;
    transform: translateX(-100%);
}
.sidebar.sidebar-open {
    transform: translateX(0);
}

/* Show sidebar by default on desktop */
@media (min-width: 901px) {
    .sidebar {
        transform: translateX(0);
    }
    .sidebar-toggle-btn {
        display: none;
    }
}
/* Hide sidebar by default on mobile */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.sidebar-open {
        transform: translateX(0);
    }
    .sidebar-toggle-btn {
        display: flex;
    }
}
/* Remove any visible line between sidebar and content */
.sidebar {
    border: none !important;
    box-shadow: none !important;
}

/* Sidebar header: ExternAI + buton, fix sus-stânga */
.sidebar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 220px;
    height: 48px;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2001;
    padding: 0 0.5rem 0 1.2rem;
    border: none;
    box-shadow: none;
    gap: 0.5rem;
}
.sidebar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-text);
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.sidebar-toggle-btn {
    background: none;
    border: 1.5px solid var(--color-text);
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    transition: background 0.18s, border 0.18s;
    box-sizing: border-box;
}
.sidebar-toggle-btn:hover, .sidebar-toggle-btn:focus {
    background: #fff;
    border-color: var(--color-accent);
    outline: none;
}
.sidebar-toggle-btn:focus {
    outline: 2px solid var(--color-accent);
}
.sidebar-toggle-btn i {
    font-size: 1.1em;
    margin: 0;
    line-height: 1;
}

/* Sidebar-menu: containerul cu linkuri, slide-in/out */
.sidebar-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 220px;
    height: calc(100vh - 60px);
    background: var(--color-bg);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    transform: translateX(-100%);
    z-index: 2000;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
}
.sidebar-menu.open {
    transform: translateX(0);
}

/* Fără linii/border/shadow între sidebar și conținut */
.sidebar-header, .sidebar-menu {
    border: none !important;
    box-shadow: none !important;
}

/* --- TOPBAR MINIMAL --- */
.topbar-minimal {
    position: fixed;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    gap: 0.5rem;
}
.topbar-brand {
    color: #111 !important;
    background: transparent !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}
body.dark-theme .topbar-brand {
    color: #fff !important;
}
.topbar-toggle-btn {
    background: transparent !important;
    border: none !important;
    color: #111 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: none !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    padding: 0;
}
body.dark-theme .topbar-toggle-btn {
    color: #fff !important;
}
.topbar-toggle-btn:focus,
.topbar-toggle-btn:hover {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
@media (max-width: 600px) {
    .topbar-minimal {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.9rem 0.3rem 0.9rem;
        gap: 0.5rem;
    }
    .topbar-brand {
        font-size: 1.3rem;
    }
    .topbar-toggle-btn {
        width: 32px;
        height: 32px;
    }
}

/* --- DRAWER MENU SLIDE-IN MINIMALIST --- */
.drawer-menu {
    position: fixed;
    left: 0;
    top: calc(1.2rem + 56px);
    width: 320px;
    max-width: 95vw;
    height: calc(100vh - 1.2rem - 56px);
    background: #fff;
    box-shadow: none;
    border: none;
    z-index: 4000;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 2.2rem 2.2rem 2.2rem;
}
.drawer-menu.open {
    transform: translateX(0);
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    margin-top: 0;
}
.drawer-link {
    color: #111;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.18s;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    display: block;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}
.drawer-link:hover,
.drawer-link:focus {
    color: #0ea4e900;
    background: none;
    padding-left: 0.2rem;
}
@media (max-width: 600px) {
    .drawer-menu {
        top: calc(0.5rem + 44px);
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 0.5rem - 44px);
        padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    }
    .drawer-link {
        font-size: 1.1rem;
    }
    .drawer-nav {
        gap: 1.5rem;
    }
}

/* --- TOPBAR MINIMAL FINUT, TRANSPARENT, GLASSMORPHIC --- */
.topbar-minimal {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
    border-radius: 0.9rem;
    padding: 0.18rem 0.85rem 0.18rem 1rem;
    z-index: 3000;
    box-shadow: none;
    border: none;
    width: auto;
    min-width: 0;
    max-width: 100vw;
}
body.dark-theme .topbar-minimal {
    background: rgba(30,36,48,0.68);
    color: #e5e7eb;
}
.topbar-brand {
    font-size: 1.18rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.5px;
    white-space: nowrap;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}
body.dark-theme .topbar-brand {
    color: #e5e7eb;
}
.topbar-toggle-btn {
    background: none;
    border: 1.5px solid #bbb;
    color: #444;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    outline: none;
    border-radius: 7px;
    transition: background 0.18s, border 0.18s;
}
body.dark-theme .topbar-toggle-btn {
    border-color: #444;
    color: #e5e7eb;
}
.topbar-toggle-btn:focus {
    outline: 2px solid #0ea5e9;
}
@media (max-width: 600px) {
    .topbar-minimal {
        top: 1.2rem;
        left: 0.7rem;
        padding: 0.12rem 0.5rem 0.12rem 0.7rem;
        gap: 0.3rem;
        border-radius: 0.7rem;
    }
    .topbar-brand {
        font-size: 1rem;
    }
    .topbar-toggle-btn {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
        border-radius: 5px;
    }
}

/* --- DRAWER MENU SLIDE-IN FINUT, TRANSPARENT, GLASSMORPHIC --- */
.drawer-menu {
    position: fixed;
    left: 0;
    top: 2.5rem;
    width: 210px;
    max-width: 90vw;
    height: calc(100vh - 2.5rem);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    box-shadow: none;
    border: none;
    z-index: 4000;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.1rem 1.2rem 1.3rem;
}
body.dark-theme .drawer-menu {
    background: rgba(30,36,48,0.82);
    color: #e5e7eb;
}
.drawer-menu.open {
    transform: translateX(0);
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    width: 100%;
    margin-top: 0;
}
.drawer-link {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.16s;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    display: block;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}
body.dark-theme .drawer-link {
    color: #e5e7eb;
}
.drawer-link:hover,
.drawer-link:focus {
    color: #0ea5e9;
    background: none;
    padding-left: 0.1rem;
}
@media (max-width: 600px) {
    .drawer-menu {
        top: 1.2rem;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 1.2rem);
        padding: 0.7rem 0.7rem 1rem 0.8rem;
    }
    .drawer-link {
        font-size: 0.97rem;
    }
    .drawer-nav {
        gap: 0.7rem;
    }
}

/* --- TOPBAR MINIMAL REFINAT --- */
.topbar-minimal {
    position: fixed;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 0.18rem 0.85rem 0.18rem 1rem;
    z-index: 3000;
    box-shadow: 0 2px 12px rgba(24,31,58,0.04);
    border: none;
    width: auto;
    min-width: 0;
    max-width: 100vw;
}
body.dark-theme .topbar-minimal {
    background: rgba(30,36,48,0.92);
    color: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.topbar-brand {
    font-size: 1.18rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.5px;
    white-space: nowrap;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}
body.dark-theme .topbar-brand {
    color: #e5e7eb;
}
.topbar-toggle-btn {
    background: none;
    border: 1.5px solid #bbb;
    color: #444;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    outline: none;
    border-radius: 7px;
    transition: background 0.18s, border 0.18s;
}
body.dark-theme .topbar-toggle-btn {
    border-color: #444;
    color: #e5e7eb;
}
.topbar-toggle-btn:focus {
    outline: 2px solid #0ea5e9;
}
@media (max-width: 600px) {
    .topbar-minimal {
        top: 0.7rem;
        left: 0.5rem;
        padding: 0.12rem 0.5rem 0.12rem 0.7rem;
        gap: 0.3rem;
        border-radius: 0.7rem;
    }
    .topbar-brand {
        font-size: 1rem;
    }
    .topbar-toggle-btn {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
        border-radius: 5px;
    }
}

/* --- DRAWER MENU SLIDE-IN REFINAT --- */
.drawer-menu {
    position: fixed;
    left: 0;
    top: calc(1.2rem + 44px);
    width: 220px;
    max-width: 92vw;
    height: calc(100vh - 1.2rem - 44px);
    background: rgba(255, 255, 255, 0); /* mai translucid pe light */
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(24, 31, 58, 0);
    border-radius: 1rem 1.2rem 1.2rem 1rem;
    border: none;
    z-index: 4000;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.1rem 1.1rem 1.7rem;
}
body.dark-theme .drawer-menu {
    background: rgba(30, 36, 48, 0);
    color: #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0);
}
.drawer-menu.open {
    transform: translateX(0);
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
    margin-top: 1.4rem; /* coboara textele din meniu mai jos */
}
.drawer-link {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.16s;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    display: block;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
}
body.dark-theme .drawer-link {
    color: #e5e7eb;
}
.drawer-link:hover,
.drawer-link:focus {
    color: #0ea5e9;
    background: none;
    padding-left: 0.1rem;
}
@media (max-width: 600px) {
    .drawer-menu {
        top: calc(0.7rem + 36px);
        width: 96vw;
        max-width: 98vw;
        height: calc(100vh - 0.7rem - 36px);
        padding: 0.7rem 0.7rem 1rem 1.2rem; /* creste padding-left si pe mobil */
        border-radius: 0.7rem;
    }
    .drawer-link {
        font-size: 0.97rem;
    }
    .drawer-nav {
        gap: 0.7rem;
        margin-top: 1.1rem;
    }
}

/* --- DRAWER LINK HOVER CU BARĂ NEAGRĂ/ALBĂ --- */
.drawer-link {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.16s, background 0.18s, font-weight 0.18s;
    padding: 0.18rem 0.7rem;
    border-radius: 0.6rem;
    background: none;
    border: none;
    display: block;
    font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
    position: relative;
    overflow: visible;
}
.drawer-link:hover,
.drawer-link:focus {
    color: #111;
    background: rgba(0, 0, 0, 0);
    font-weight: 700;
}
.drawer-link::before {
    content: '';
    position: absolute;
    left: -0.7rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0.5);
    width: 3px;
    height: 60%;
    background: #111;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s, background 0.18s;
}
.drawer-link:hover::before,
.drawer-link:focus::before {
    opacity: 1;
    transform: translateY(-50%) scaleY(1);
}
body.dark-theme .drawer-link:hover,
body.dark-theme .drawer-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0);
}
body.dark-theme .drawer-link::before {
    background: #fff;
}
@media (max-width: 600px) {
    .drawer-link {
        font-size: 0.97rem;
        padding: 0.18rem 0.5rem;
    }
    .drawer-link::before {
        left: -0.5rem;
        width: 2.5px;
    }
}

/* --- DRAWER MENU SLIDE-IN COMPLET TRANSLUCID --- */
.drawer-menu {
    position: fixed;
    left: 0;
    top: calc(1.2rem + 44px);
    width: 220px;
    max-width: 92vw;
    height: calc(100vh - 1.2rem - 44px);
    background: rgba(255,255,255,0);
    box-shadow: none;
    border-radius: 1rem 1.2rem 1.2rem 1rem;
    border: none;
    z-index: 4000;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.1rem 1.1rem 1.7rem;
}
body.dark-theme .drawer-menu {
    background: rgba(30, 36, 48, 0);
    color: #e5e7eb;
    box-shadow: none;
}

body.dark-theme .drawer-menu {
    background: rgba(0,0,0,0) !important;
    color: #e5e7eb;
    box-shadow: none !important;
    border: none !important;
}

body:not(.drawer-open) .main-content {
    margin-left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    transition: margin-left 0.3s cubic-bezier(.4,0,.2,1);
}

.topbar-brand {
    font-size: 1.25rem !important;
}
.topbar-toggle-btn {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
}
@media (max-width: 600px) {
    .topbar-brand {
        font-size: 1.08rem !important;
    }
    .topbar-toggle-btn {
        width: 30px;
        height: 30px;
        font-size: 1.08rem;
    }
}

.chat-fab-bar {
    position: fixed;
    right: 0.7rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.54);
    color: var(--color-accent);
    border: none;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(24,31,58,0.13);
    padding: 0.6rem 1.3rem 0.6rem 1.1rem;
    font-size: 1.13rem;
    font-weight: 600;
    z-index: 2100;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(8px);
    min-width: 0;
    min-height: 0;
}
.chat-fab-bar i {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-right: 0.2rem;
}
.chat-fab-label {
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.chat-fab-bar:hover {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 16px 48px rgba(24,31,58,0.18);
}
.chat-fab-bar:hover i,
.chat-fab-bar:hover .chat-fab-label {
    color: #fff;
}
@media (max-width: 700px) {
    .chat-fab-bar {
        right: 1rem;
        bottom: 1rem;
        font-size: 1rem;
        padding: 0.5rem 1rem 0.5rem 0.9rem;
    }
    .chat-fab-label {
        font-size: 0.97rem;
    }
}
body.dark-theme .chat-fab-bar {
    background: rgba(30,36,48,0.44);
    color: var(--color-accent);
}
body.dark-theme .chat-fab-bar i {
    color: var(--color-accent);
}
body.dark-theme .chat-fab-label {
    color: var(--color-text);
}
body.dark-theme .chat-fab-bar:hover {
    background: var(--color-accent);
    color: #181f3a;
}
body.dark-theme .chat-fab-bar:hover i,
body.dark-theme .chat-fab-bar:hover .chat-fab-label {
    color: #181f3a;
}

.chat-fab-bar-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Core Section Styles */
.core-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.core-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.core-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.core-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .core-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .core-header h2 {
        font-size: 2rem;
    }
    
    .core-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .core-section {
        padding: 2rem 0 1rem 0;
    }
    
    .core-header h2 {
        font-size: 1.8rem;
    }
    
    .core-header p {
        font-size: 1rem;
    }
}

/* Agents Section Styles */
.agents-section {
    width: 100%;
    background: transparent;
    padding: 1.2rem 0 0.7rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agents-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 0;
}

.agents-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.agents-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .agents-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .agents-header h2 {
        font-size: 2rem;
    }
    
    .agents-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .agents-section {
        padding: 2rem 0 1rem 0;
    }
    
    .agents-header h2 {
        font-size: 1.8rem;
    }
    
    .agents-header p {
        font-size: 1rem;
    }
}

/* Wild Section Styles */
.wild-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wild-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
}

.wild-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.wild-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .wild-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .wild-header h2 {
        font-size: 2rem;
    }
    
    .wild-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .wild-section {
        padding: 2rem 0 1rem 0;
    }
    
    .wild-header h2 {
        font-size: 1.8rem;
    }
    
    .wild-header p {
        font-size: 1rem;
    }
}

/* Create Section Styles */
.create-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.create-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.create-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.create-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Access Section Styles */
.access-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.access-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.access-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.access-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .access-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .access-header h2 {
        font-size: 2rem;
    }
    
    .access-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .access-section {
        padding: 2rem 0 1rem 0;
    }
    
    .access-header h2 {
        font-size: 1.8rem;
    }
    
    .access-header p {
        font-size: 1rem;
    }
}

/* Vision Section Styles */
.vision-section {
    width: 100%;
    background: transparent;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vision-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vision-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.vision-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .vision-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .vision-header h2 {
        font-size: 2rem;
    }
    
    .vision-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .vision-section {
        padding: 2rem 0 1rem 0;
    }
    
    .vision-header h2 {
        font-size: 1.8rem;
    }
    
    .vision-header p {
        font-size: 1rem;
    }
}

/* Connect Section Styles */
.connect-section {
    width: 100%;
    background: transparent;
    padding: 2.2rem 0 1.2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.connect-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
}

.connect-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.3rem;
    margin-bottom: 2.5rem;
}

.connect-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.connect-header p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .connect-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .connect-header h2 {
        font-size: 2rem;
    }
    
    .connect-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .connect-section {
        padding: 2rem 0 1rem 0;
    }
    
    .connect-header h2 {
        font-size: 1.8rem;
    }
    
    .connect-header p {
        font-size: 1rem;
    }
}

.access-section .access-pricing-spacing {
    margin-top: 2.5rem;
}
@media (max-width: 900px) {
    .access-section .access-pricing-spacing {
        margin-top: 1.5rem;
    }
}
@media (max-width: 600px) {
    .access-section .access-pricing-spacing {
        margin-top: 1rem;
    }
}

/* Living Agents Section - Two Columns Layout */
.agents-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    margin: 2.5rem 0 1.5rem 0;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.agents-image {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agents-image img {
    width: 240px;
    max-width: 30vw;
    min-width: 120px;
    height: auto;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 4px 24px rgba(24,31,58,0.10);
    object-fit: contain;
    display: block;
}

.agents-features {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.2rem;
    min-width: 220px;
    max-width: 420px;
}

.agents-traits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.agents-traits li {
    position: relative;
    padding-left: 1.5rem;
}

.agents-traits li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.3rem;
    top: 0.1rem;
}

.agents-cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(24,31,58,0.09);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    cursor: pointer;
    text-align: center;
    margin-top: 0.5rem;
    text-decoration: none;
}

.agents-cta-btn:hover {
    background: #fff;
    color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(24,31,58,0.13);
    border: 2px solid var(--color-accent);
}

body.dark-theme .agents-cta-btn {
    background: #e5e7eb;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
body.dark-theme .agents-cta-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
}

@media (max-width: 900px) {
    .agents-columns {
        flex-direction: column;
        gap: 2rem;
        margin: 1.5rem 0 1rem 0;
        flex-wrap: wrap;
        max-width: 98vw;
    }
    .agents-image img {
        width: 160px;
        max-width: 60vw;
    }
    .agents-features {
        align-items: center;
        max-width: 98vw;
    }
    .agents-traits {
        font-size: 1.1rem;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .agents-image img {
        width: 110px;
        min-width: 70px;
    }
    .agents-features {
        max-width: 100vw;
        gap: 1.2rem;
    }
    .agents-cta-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

.agents-traits-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-align: left;
}
@media (max-width: 900px) {
    .agents-traits-text {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }
}

.wild-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto 2rem auto;
    padding: 0 1rem;
}

.wild-block {
    background: #fff;
    color: var(--color-text);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(24,31,58,0.07);
    border: 1.5px solid #e0e7ef;
    padding: 2.2rem 1.5rem;
    font-size: 1.18rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: box-shadow 0.22s, border 0.22s;
}
.wild-block:hover {
    box-shadow: 0 16px 48px 0 rgba(24,31,58,0.13), 0 4px 24px 0 rgba(0,0,0,0.08);
    border-color: var(--color-accent);
}

.wild-cta-btn {
    display: block;
    margin: 2.5rem auto 0 auto;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
}

@media (max-width: 900px) {
    .wild-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .wild-block {
        font-size: 1.08rem;
        padding: 1.5rem 1rem;
    }
    .wild-cta-btn {
        min-width: 160px;
        max-width: 98vw;
        margin-top: 1.5rem;
    }
}

body.dark-theme .wild-block {
    background: var(--color-card);
    color: var(--color-text);
    border-color: #23304a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.create-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1rem;
}

.create-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(24,31,58,0.07);
    border: 1.5px solid #e0e7ef;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-height: 220px;
    transition: box-shadow 0.22s, border 0.22s;
}
.create-step:hover {
    box-shadow: 0 16px 48px 0 rgba(24,31,58,0.13), 0 4px 24px 0 rgba(0,0,0,0.08);
    border-color: var(--color-accent);
}

.create-step-label {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.7rem;
    text-align: center;
}

.create-step-icon {
    font-size: 2.7rem;
    color: var(--color-accent);
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .create-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .create-step {
        min-height: 120px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .create-step-label {
        font-size: 1.08rem;
        margin-bottom: 1.1rem;
    }
    .create-step-icon {
        font-size: 2rem;
    }
}

body.dark-theme .create-step {
    background: var(--color-card);
    color: var(--color-text);
    border-color: #23304a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

body.dark-theme .create-step:hover {
    box-shadow: 0 16px 48px 0 rgba(125,211,252,0.13), 0 4px 24px 0 rgba(0,0,0,0.18);
    border-color: var(--color-accent);
}

.core-header p,
.wild-header p,
.create-header p,
.access-header p,
.vision-header p,
.agents-header p,
.connect-header p {
    font-family: var(--font-main), sans-serif;
}

/* --- Modern Footer --- */
.site-footer {
    width: 100%;
    background: transparent;
    /* border-top: 1.5px solid #e0e7ef; */
    padding: 0.7rem 0 1.2rem 0;
    margin-top: 0.2rem;
    text-align: center;
    font-size: 1rem;
    color: #111;
    box-shadow: none;
    transition: background 0.4s, color 0.4s;
}
body.dark-theme .site-footer {
    background: transparent !important;
    /* border-top: 1.5px solid #23304a; */
    color: #fff;
    box-shadow: none;
}
.site-footer a {
    color: #181f3a;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.site-footer a:hover {
    color: #0c122a;
    text-decoration: underline;
    font-weight: 700;
}
body.dark-theme .site-footer a {
    color: #fff;
}
body.dark-theme .site-footer a:hover {
    color: #fff !important;
    font-weight: 700;
    text-decoration: underline;
}
.site-footer .footer-divider {
    color: #bfc9d9;
    margin: 0 0.7rem;
}
.site-footer .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.98rem;
    /* color: #a0aec0; */
}

.footer-maintext {
    color: #181f3a;
    font-weight: 500;
}
body.dark-theme .footer-maintext {
    color: #fff;
}