:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --text-main: #fff;
    --text-muted: #a0a0a0;
    --accent-color: #00f2ff;
    --neon-cyan: #00f2ff;
    --neon-blue: #0066ff
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif
}

body {
    background-color: #0a0e27;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh
}



.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem
}

.logo {
    height: 100px;
    width: auto
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #00f2ff, #0066ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center
}

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-social-link:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 242, 255, 0.2);
}

.nav-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--neon-cyan)
}

.btn-primary {
    padding: .8rem 1.5rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4)
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10%;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: floatGlow 8s ease-in-out infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: floatGlow 10s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 40px rgba(0, 242, 255, 0.3), 0 0 80px rgba(0, 242, 255, 0.1);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(0, 242, 255, 0.3), 0 0 80px rgba(0, 242, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 50px rgba(0, 242, 255, 0.5), 0 0 100px rgba(0, 242, 255, 0.2);
    }
}

.highlight {
    background: linear-gradient(120deg, #00f2ff 0%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.ask-container {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-weight: 600
}

.hero-logo-large {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
    transition: all 0.3s ease;
}

.hero-logo-large:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.8));
}

.ask-dynamic-wrapper {
    height: 1.6em;
    overflow: hidden;
    display: inline-block;
    min-width: 150px;
    position: relative;
    padding: 0.15em 0;
}

.ask-dynamic {
    display: block;
    color: var(--neon-cyan);
    transition: all .5s ease-out;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-store svg {
    fill: currentColor;
}

.btn-cta-web {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00f2ff 0%, #0066ff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5);
    animation: ctaPulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 102, 255, 0.7);
    }
}

.btn-cta-web::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-web:hover {
    animation: none;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.8);
    filter: brightness(1.15);
}

.btn-cta-web:hover::before {
    width: 300px;
    height: 300px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: transform .3s
}

.hero-card {
    width: 420px;
    height: 680px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 242, 255, 0.3), 0 0 40px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.2);
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.chat-interface {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1
}

.chat-msg {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: .9rem;
    max-width: 80%;
    line-height: 1.4
}

.ai {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 2px
}

.user {
    background: var(--primary-gradient);
    align-self: flex-end;
    border-bottom-right-radius: 2px
}

.processing {
    font-style: italic;
    opacity: .7;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.urgency-indicator {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #fca5a5;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: fadeIn .5s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn-teleconsult {
    margin-top: auto;
    background: #27c93f;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s;
    animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275) 1s backwards
}

.btn-teleconsult:hover {
    transform: scale(1.05)
}

@keyframes popIn {
    from {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.tele-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all .6s cubic-bezier(.22, 1, .36, 1);
    z-index: 10
}

.tele-overlay.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all
}

.tele-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8
}

.overlay-badge {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, .7);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #27c93f;
    display: flex;
    align-items: center;
    gap: 8px
}

.overlay-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    animation: blink 1s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.section {
    padding: 5rem 10%
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
    line-height: 1.2;
}

.section-title-large {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
    line-height: 1.3;
}

.chatgpt-logo {
    height: 2.5em;
    vertical-align: middle;
    margin: 0 0.3em;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.chatgpt-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.docse-highlight {
    background: linear-gradient(120deg, #00f2ff 0%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
    font-weight: 800;
    text-shadow: 0 0 50px rgba(0, 242, 255, 0.5);
}

.docse-app-logo {
    height: 2.8em;
    vertical-align: middle;
    margin: 0 0.3em;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
    transition: all 0.3s ease;
}

.docse-app-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
}

.chatgpt-dim {
    color: #666;
    font-weight: 500;
}

.section-subtitle-main {
    text-align: center;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #00f2ff, #0066ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-detail {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem
}

.neural-field {
    position: relative;
    width: 100%;
    height: 800px;
    margin: 2rem auto;
    background: rgba(0, 10, 30, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.15);
    overflow: hidden
}

.static-web,
.pulse-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.web-line {
    stroke: rgba(0, 242, 255, 0.1);
    stroke-width: 1;
    stroke-linecap: round
}

.pulse-line {
    stroke: var(--neon-cyan);
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px var(--neon-cyan)) drop-shadow(0 0 12px var(--neon-cyan))
}

.node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all .3s ease
}

.node-core {
    width: 12px;
    height: 12px;
    background: rgba(100, 120, 150, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(100, 120, 150, 0.3);
    position: relative;
    z-index: 4;
    transition: all .5s ease
}

.node.dim .node-core {
    width: 8px;
    height: 8px;
    background: rgba(80, 90, 120, 0.3);
    border: 1px solid rgba(80, 90, 120, 0.2)
}

.node.active .node-core {
    width: 18px;
    height: 18px;
    background: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), inset 0 0 10px rgba(255, 255, 255, 0.8);
    animation: corePulse 2s ease-in-out infinite
}

@keyframes corePulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), inset 0 0 10px rgba(255, 255, 255, 0.8)
    }

    50% {
        box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan), 0 0 80px rgba(0, 242, 255, 0.4), inset 0 0 15px #fff
    }
}

.node-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s ease
}

.node.active .node-rings {
    opacity: 1
}

.node-rings div {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: .6
}

.node-rings div:nth-child(1) {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    animation: ringExpand 2s ease-out infinite
}

.node-rings div:nth-child(2) {
    width: 65px;
    height: 65px;
    margin-left: -32.5px;
    margin-top: -32.5px;
    animation: ringExpand 2s ease-out .5s infinite
}

@keyframes ringExpand {
    0% {
        transform: scale(.8);
        opacity: .8
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

.node-label {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    white-space: nowrap;
    font-size: .8rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-shadow: 0 0 8px var(--neon-cyan);
    transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
}

.node.active .node-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.diagnosis-node .node-core {
    width: 16px;
    height: 16px;
    background: rgba(138, 43, 226, 0.5);
    border: 2px solid rgba(138, 43, 226, 0.6)
}

.diagnosis-node.active .node-core {
    width: 24px;
    height: 24px;
    background: #8a2be2;
    border: 3px solid #8a2be2;
    box-shadow: 0 0 25px #8a2be2, 0 0 50px #8a2be2, inset 0 0 15px rgba(255, 255, 255, 0.9);
    animation: diagnosisPulse 2s ease-in-out infinite
}

@keyframes diagnosisPulse {

    0%,
    100% {
        box-shadow: 0 0 25px #8a2be2, 0 0 50px #8a2be2, inset 0 0 15px rgba(255, 255, 255, 0.9)
    }

    50% {
        box-shadow: 0 0 35px #8a2be2, 0 0 70px #8a2be2, 0 0 90px rgba(138, 43, 226, 0.5), inset 0 0 20px #fff
    }
}

.diagnosis-node .node-label {
    color: #8a2be2;
    text-shadow: 0 0 10px #8a2be2;
    font-size: 0.9rem;
    font-weight: 700
}

.diagnosis-node .node-rings div {
    border-color: #8a2be2
}

.dx-panel {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 550px;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(25px);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 60px rgba(0, 242, 255, 0.3), inset 0 0 30px rgba(0, 242, 255, 0.05);
    z-index: 100;
    opacity: 0;
    transition: all .8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dx-panel.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.dx-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding-bottom: 1rem
}

.dx-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.dx-icon svg circle {
    animation: iconPulse 2s ease-in-out infinite
}

@keyframes iconPulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.dx-title {
    font-size: .75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700
}

.dx-diagnosis {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    min-height: 2.5rem;
    font-family: monospace;
    letter-spacing: 1px
}

.dx-urgency-section {
    margin-top: 1rem
}

.urgency-label {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600
}

.urgency-bar-container {
    display: flex;
    align-items: center;
    gap: 15px
}

.urgency-bar {
    flex: 1;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.urgency-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #22c55e 0%, #eab308 50%, #ef4444 100%);
    opacity: .25
}

.urgency-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, #22c55e 0%, #eab308 50%, #ef4444 100%);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    transition: width 1s ease;
    width: 0
}

.urgency-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ef4444;
    min-width: 70px;
    font-family: monospace;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.6)
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem
}

.user-info h4 {
    font-size: 1.1rem
}

.stars {
    font-size: .9rem
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.verified-badge {
    font-size: 0.75rem;
    color: #00f2ff;
    margin-left: 0.5rem;
    opacity: 0.8;
}

.review-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.7;
}

.review-disclaimer-large {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.5;
}

.review-dots {
    display: none;
}

.web-test-button-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem 0;
}

.btn-test-web {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00f2ff 0%, #0066ff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-test-web::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-test-web:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.6);
    filter: brightness(1.1);
}

.btn-test-web:hover::before {
    width: 200px;
    height: 200px;
}

.glass-footer {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: .5rem
}

.footer-brand p {
    color: var(--text-muted)
}

.footer-links {
    display: flex;
    gap: 2rem
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .3s
}

.footer-links a:hover {
    color: var(--neon-cyan)
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.doctor-validation-section {
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05) 0%, transparent 100%);
    padding: 6rem 10%;
}

.doctor-content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.doctor-text-content {
    flex: 1;
    max-width: 600px;
}

.doctor-feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    background: linear-gradient(120deg, #00f2ff 0%, #0066ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.doctor-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 242, 255, 0.03);
    transform: translateX(5px);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 255, 0.25);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #00f2ff;
    stroke-width: 2.5;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 242, 255, 0.15);
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.3);
}

.feature-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-details p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.doctor-animation-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-card {
    position: relative;
    width: 400px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2);
}

.doctor-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.doctor-img.active {
    opacity: 1;
    transform: translateX(0);
}

.doctor-img.slide-out {
    transform: translateX(-100%);
    opacity: 0;
}

.doctor-img.slide-in {
    transform: translateX(0);
    opacity: 1;
}

.waiting-img {
    filter: brightness(0.95);
    transform: translateX(0);
}

.call-img {
    filter: brightness(1.05);
}

.doctor-status {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #27c93f;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-text {
    color: #27c93f;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width:1024px) {
    .neural-field {
        height: auto;
        padding: 2rem
    }

    .dx-panel {
        position: relative;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 3rem;
        width: 100%;
        max-width: 550px
    }
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    gap: 5px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--neon-cyan);
}

.mobile-nav-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.mobile-nav-social .nav-social-link {
    width: 50px;
    height: 50px;
}

.mobile-nav-social .nav-social-link svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .glass-nav {
        padding: 1rem 3%;
    }
    
    .hero {
        padding: 4rem 5%;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .ask-container {
        font-size: 2.8rem;
    }
    
    .hero-logo-large {
        height: 140px;
    }
    
    .hero-card {
        width: 350px;
        height: 580px;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .neural-field {
        height: auto;
        padding: 2rem;
    }

    .dx-panel {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        width: 100%;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 1rem 4%;
        position: relative;
    }
    
    .logo {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 4% 3rem;
        align-items: center;
        justify-content: center;
        min-height: 85vh;
    }

    .hero-content {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
        text-align: left;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .ask-container {
        justify-content: center;
        font-size: 2.2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-logo-large {
        height: 120px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-store {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-cta-web {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }
    
    .hero-card {
        width: 100%;
        max-width: 320px;
        height: 480px;
        margin: 0 auto;
    }

    .doctor-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .doctor-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .doctor-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        align-items: center;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }

    .doctor-animation-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .doctor-card {
        width: 100%;
        max-width: 300px;
        height: 450px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-title-large {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.5;
        display: block;
        padding: 0 1rem;
    }
    
    .section-title-large img {
        display: inline;
        vertical-align: middle;
    }

    .chatgpt-logo {
        height: 2em;
        margin: 0 0.2em;
    }
    
    .docse-app-logo {
        height: 2em;
        margin: 0 0.2em;
    }
    
    .section-subtitle-main {
        font-size: 1.2rem;
    }
    
    .section-subtitle-detail {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Neural Field Mobile Optimizations */
    .neural-field {
        height: 700px;
        margin: 1rem 0;
        padding: 1rem;
        display: flex;
        flex-direction: column;
    }

    .node {
        pointer-events: none;
    }

    .node-label {
        font-size: 0.65rem;
        white-space: normal;
        max-width: 100px;
        line-height: 1.2;
        top: auto;
        bottom: 100%;
        margin-bottom: 8px;
    }

    .node.active .node-label {
        transform: translateX(-50%) translateY(0) scale(0.95);
    }

    .dx-panel {
        width: calc(100% - 2rem);
        max-width: none;
        padding: 1.5rem;
        margin: 1rem;
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }

    .dx-panel.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .dx-diagnosis {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .dx-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .dx-title {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .urgency-bar-container {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .urgency-bar {
        height: 24px;
        width: 100%;
    }

    .urgency-value {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .reviews-container {
        display: block;
        position: relative;
        overflow: hidden;
        max-width: 500px;
        margin: 0 auto;
        min-height: 250px;
    }
    
    .review-card {
        display: none;
        animation: slideIn 0.5s ease-in-out;
    }
    
    .review-card.active {
        display: flex;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .review-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .review-dot.active {
        background: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .glass-nav {
        padding: 0.8rem 3%;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 3rem 3% 2rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
        line-height: 1.3;
    }
    
    .ask-container {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-logo-large {
        height: 100px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn-store {
        min-width: 120px;
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-cta-web {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-card {
        max-width: 280px;
        height: 420px;
    }
    
    .section {
        padding: 3rem 3%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-large {
        font-size: 1.5rem;
        line-height: 1.5;
        text-align: center;
        display: block;
        padding: 0 0.5rem;
    }
    
    .doctor-feature-title {
        font-size: 1.8rem;
    }
    
    .feature-details h4 {
        font-size: 1.2rem;
    }
    
    .feature-details p {
        font-size: 1rem;
    }

    /* Neural Field Extra Small Mobile */
    .neural-field {
        height: 650px;
        padding: 0.5rem;
    }

    .node-core {
        width: 10px;
        height: 10px;
    }

    .node.active .node-core {
        width: 14px;
        height: 14px;
    }

    .node.dim .node-core {
        width: 6px;
        height: 6px;
    }

    .node-label {
        font-size: 0.6rem;
        max-width: 80px;
        top: auto;
        bottom: 100%;
        margin-bottom: 6px;
    }

    .node-rings div:nth-child(1) {
        width: 30px;
        height: 30px;
        margin-left: -15px;
        margin-top: -15px;
    }

    .node-rings div:nth-child(2) {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
    }
    
    .dx-panel {
        padding: 1.2rem;
        width: calc(100% - 1.5rem);
        margin: 0;
        left: 50%;
        bottom: 3%;
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    
    .dx-panel.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    
    .dx-diagnosis {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .dx-header {
        gap: 10px;
    }

    .dx-icon {
        width: 28px;
        height: 28px;
    }

    .dx-title {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .urgency-bar {
        height: 20px;
    }

    .urgency-value {
        font-size: 1.1rem;
    }
}