* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* --- ОБНОВЛЕННЫЙ ФОН: Технологичная сетка --- */
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 25px 25px;
    color: #0f172a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & floating chips */
.header-cloud {
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.cloud-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
    margin: 1.5rem 0 1rem;
}

.cloud-chip {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.3rem;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #0c4a6e;
    border: 1px solid rgba(59,130,246,0.2);
    transition: all 0.25s ease;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.cloud-chip i {
    margin-right: 8px;
    font-size: 0.85rem;
    color: #3b82f6;
}

.cloud-chip:hover {
    transform: translateY(-3px);
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 12px 22px -12px rgba(59,130,246,0.25);
}

/* Hero */
.hero {
    text-align: center;
    padding: 2.2rem 0 1rem;
}

.hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}

.hero .tagline {
    font-size: 1.2rem;
    color: #334155;
    margin-top: 0.75rem;
}

/* Search card */
.search-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem 2rem 1.8rem;
    margin: 2rem 0 1.5rem;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.01);
}

.flex-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.input-area {
    flex: 4;
    min-width: 220px;
}

.input-area label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
    margin-bottom: 6px;
    display: block;
}

.input-area input, .input-area select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    background: #fefefe;
    font-size: 1rem;
    transition: 0.2s;
    font-family: inherit;
}

.input-area input:focus, .input-area select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.search-btn {
    background: #2563eb;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(37,99,235,0.2);
}

.search-btn:hover {
    background: #1d4ed8;
    transform: scale(0.98);
}

.type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    justify-content: center;
}

.type-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.15s;
}

.type-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 3rem 0;
}

.feat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #eef2ff;
    transition: 0.2s;
}

.feat-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feat-card p {
    color: #475569;
    font-size: 0.9rem;
}

/* Security banner */
.security-banner {
    background: #f1f5f9;
    border-radius: 1.5rem;
    padding: 1.6rem;
    text-align: center;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.sec-item i {
    font-size: 1.3rem;
    color: #10b981;
}

/* --- ОБНОВЛЕННЫЙ ДЕМО-ОТЧЕТ --- */
.demo-report-wrapper {
    margin: 4rem 0;
}

.demo-report-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.demo-report {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.demo-report::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #475569;
}

.demo-status {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.demo-content {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.demo-photo img {
    width: 140px;
    height: 140px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}

.demo-data {
    flex: 1;
    min-width: 220px;
}

.demo-data p {
    margin-bottom: 0.6rem;
    color: #1e293b;
    font-size: 0.95rem;
    background: #f8fafc;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid #f1f5f9;
}

.demo-data strong {
    color: #0f172a;
}

/* Эффект скрытых данных для интриги */
.blur-text {
    color: transparent;
    text-shadow: 0 0 10px rgba(15, 23, 42, 0.8);
    user-select: none;
    pointer-events: none;
}

/* Кнопка поверх заблюренных данных */
.unlock-btn {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.2);
}
.unlock-btn:hover {
    background: linear-gradient(135deg, #0f172a, #000000);
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    color: #5b6e8c;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeInUp 0.25s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content .close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
}

.modal-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
}

.info-call-block {
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 2rem;
    padding: 1.8rem 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.info-call-block h2 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-call-block h2 i {
    color: #2563eb;
}
.info-call-block p {
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #1e293b;
}
.info-call-block strong {
    color: #1e40af;
}
.btn-inline {
    display: inline-block;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.btn-inline:hover {
    background: #1d4ed8;
    transform: scale(0.98);
}
.list-styled {
    padding-left: 1.5rem;
    margin: 1rem 0;
}
.list-styled li {
    margin: 0.5rem 0;
}
@media (max-width: 700px) {
    .info-call-block {
        padding: 1.2rem;
    }
}

.required-star {
    color: #ef4444;
}

@media (max-width: 750px) {
    .hero h1 { font-size: 1.9rem; }
    .search-card { padding: 1.2rem; }
}