*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #06060b;
    color: #e0e0e8;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.gradient-text {
    background: linear-gradient(135deg, #818cf8, #06b6d4, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; padding: 6px 18px; border-radius: 20px; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(99,102,241,0.1); color: #818cf8; margin-bottom: 16px;
    border: 1px solid rgba(99,102,241,0.15);
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.section-subtitle { font-size: 1.05rem; color: #7c8298; max-width: 560px; margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
    border-radius: 12px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; box-shadow: 0 4px 24px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(99,102,241,0.45); }
.btn-secondary { background: rgba(255,255,255,0.05); color: #c4c9de; border: 1px solid rgba(255,255,255,0.08); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-outline { background: transparent; color: #818cf8; border: 1.5px solid rgba(99,102,241,0.3); width: 100%; justify-content: center; }
.btn-outline:hover { background: rgba(99,102,241,0.06); }
.btn-full { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.3s;
    background: rgba(6,6,11,0.5); backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled { background: rgba(6,6,11,0.92); border-bottom-color: rgba(255,255,255,0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; }
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: #818cf8; }
.logo-img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.88rem; color: #7c8298; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
    padding: 10px 22px; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    transition: all 0.3s; box-shadow: 0 2px 16px rgba(99,102,241,0.2);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(99,102,241,0.35); }
.nav-lang {
    padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
    color: #7c8298; border: 1px solid rgba(255,255,255,0.08); transition: all 0.2s;
    letter-spacing: 0.5px;
}
.nav-lang:hover { color: #fff; border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.06); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: #e0e0e8; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; animation: float 14s ease-in-out infinite; }
.hero-orb-1 { width: 600px; height: 600px; background: #6366f1; top: -15%; right: -8%; }
.hero-orb-2 { width: 450px; height: 450px; background: #06b6d4; bottom: -15%; left: -8%; animation-delay: -5s; }
.hero-orb-3 { width: 350px; height: 350px; background: #8b5cf6; top: 40%; left: 30%; animation-delay: -9s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-35px) rotate(2deg); } }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15);
    border-radius: 24px; font-size: 0.82rem; font-weight: 500; color: #a5b4fc; margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.12; margin-bottom: 24px; color: #fff; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.1rem; color: #7c8298; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 52px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 36px; }
.stat { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.stat-plus { font-size: 1.3rem; font-weight: 700; color: #818cf8; }
.stat-label { display: block; font-size: 0.78rem; color: #5b6078; margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent); }

/* HERO MOCKUP */
.hero-visual { position: relative; }
.hero-mockup {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.04);
}
.mockup-header {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title { font-size: 0.72rem; color: #5b6078; font-weight: 500; }
.mockup-body { display: flex; min-height: 260px; }
.mockup-sidebar { width: 48px; padding: 12px 8px; border-right: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 8px; }
.mockup-sidebar-item { height: 30px; border-radius: 6px; background: rgba(255,255,255,0.03); }
.mockup-sidebar-item.active { background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.2)); }
.mockup-main { flex: 1; padding: 12px; display: flex; gap: 12px; }
.mockup-viewer { flex: 2; background: rgba(99,102,241,0.04); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(99,102,241,0.06); }
.mockup-scan {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid rgba(99,102,241,0.25);
    background: radial-gradient(circle, rgba(99,102,241,0.12), transparent);
    animation: scan-pulse 3s ease-in-out infinite;
}
@keyframes scan-pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.mockup-tools { display: flex; gap: 6px; }
.mockup-tool { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.04); }
.mockup-panel { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 8px; }
.mockup-line { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.04); }
.w80{width:80%}.w60{width:60%}.w90{width:90%}.w70{width:70%}
.floating-card {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: 14px;
    background: rgba(12,12,20,0.9); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); font-size: 0.85rem; font-weight: 600;
}
.card-ai { top: 16px; right: -24px; animation: float 5s ease-in-out infinite; }
.card-dicom { bottom: 24px; left: -24px; animation: float 6s ease-in-out infinite reverse; }
.card-icon { font-size: 1.3rem; }

/* FEATURES */
.features { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
    padding: 36px; border-radius: 18px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    background: rgba(99,102,241,0.03); border-color: rgba(99,102,241,0.15);
    transform: translateY(-6px); box-shadow: 0 16px 48px rgba(99,102,241,0.08);
}
.feature-icon-wrap {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; font-size: 1.6rem;
    border: 1px solid rgba(99,102,241,0.1);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: #7c8298; line-height: 1.7; }

/* BENEFITS */
.benefits { padding: 120px 0; background: rgba(255,255,255,0.008); }
.benefits-grid { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
    display: flex; gap: 24px; padding: 28px 32px; border-radius: 16px;
    background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.benefit-item:hover { border-color: rgba(99,102,241,0.2); background: rgba(99,102,241,0.025); transform: translateX(6px); }
.benefit-number { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; min-width: 60px; line-height: 1; }
.benefit-content h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.benefit-content p { font-size: 0.9rem; color: #7c8298; }

/* PRICING */
.pricing { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
    position: relative; padding: 36px 28px; border-radius: 22px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s; display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: rgba(99,102,241,0.15); transform: translateY(-4px); }
.pricing-card.featured {
    background: linear-gradient(160deg, rgba(99,102,241,0.06), rgba(6,182,212,0.03));
    border-color: rgba(99,102,241,0.2);
    box-shadow: 0 16px 48px rgba(99,102,241,0.1), inset 0 1px 0 rgba(255,255,255,0.04);
}
.pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 7px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    box-shadow: 0 4px 16px rgba(99,102,241,0.3); white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-size: 1.3rem; font-weight: 800; color: #fff; }
.pricing-desc { font-size: 0.82rem; color: #5b6078; margin-top: 4px; }
.pricing-price { margin-bottom: 28px; display: flex; align-items: baseline; gap: 2px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: #818cf8; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.price-period { font-size: 0.85rem; color: #5b6078; font-weight: 500; margin-left: 4px; }
.price-custom { font-size: 2rem; font-weight: 800; color: #fff; }
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pricing-features li { font-size: 0.85rem; color: #9ca3af; display: flex; align-items: center; gap: 12px; }
.check { color: #22c55e; font-weight: 700; font-size: 1.1rem; }
.price-from { font-size: 0.75rem; color: #5b6078; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-right: 6px; }
.pricing-disclaimer { text-align: center; font-size: 0.8rem; color: #5b6078; margin-top: 32px; font-style: italic; }

/* CONTACT */
.contact { padding: 120px 0; background: rgba(255,255,255,0.008); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form {
    padding: 40px; border-radius: 22px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #a5b4fc; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03); color: #e0e0e8; font-family: inherit;
    font-size: 0.9rem; transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(99,102,241,0.4); box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}
.form-group select option { background: #12121e; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    padding: 28px; border-radius: 18px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; gap: 22px;
}
.info-item { display: flex; align-items: center; gap: 16px; }
.info-icon { font-size: 1.5rem; }
.info-item strong { display: block; font-size: 0.82rem; color: #fff; font-weight: 600; }
.info-item p, .info-item a { font-size: 0.85rem; color: #7c8298; }
.trust-badges { display: flex; flex-direction: column; gap: 10px; }
.trust-badge {
    display: flex; align-items: center; gap: 12px; padding: 14px 18px;
    border-radius: 12px; background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem; font-weight: 500;
}

/* FOOTER */
.footer { padding: 60px 0 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-content { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 40px; }
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 0.82rem; color: #5b6078; margin-top: 12px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { font-size: 0.82rem; color: #5b6078; transition: color 0.2s; }
.footer-col a:hover { color: #818cf8; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.03); text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: #3b4054; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .footer-links { flex-direction: column; gap: 24px; }
}
