* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
    background-color: #fafafa;
    color: #1e2b3c;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero секция */
.hero {
    background: linear-gradient(145deg, #0b2a40 0%, #1b3a4e 100%);
    color: white;
    padding: 40px 0 56px 0;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 10px 30px rgba(0,20,30,0.2);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero .subhead {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Облако ключевых слов */
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 24px;
    max-width: 900px;
}

.keyword-item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.2s;
    color: white;
    cursor: pointer;
}

.keyword-item:hover {
    background: #ffb347;
    border-color: #ffb347;
    color: #0b2a40;
    transform: scale(1.02);
}

/* Поисковая панель */
.search-panel {
    background: white;
    border-radius: 60px;
    display: flex;
    flex-wrap: wrap;
    padding: 8px 8px 8px 24px;
    margin: 40px 0 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.search-panel input {
    flex: 1 1 250px;
    border: none;
    outline: none;
    font-size: 1.2rem;
    padding: 14px 10px 14px 0;
    background: transparent;
    color: #1e2b3c;
}

.search-panel input::placeholder {
    color: #8a9aa8;
    font-weight: 300;
}

.search-panel button {
    background: #ffb347;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b2a40;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
}

.search-panel button:hover {
    background: #ffa01c;
    transform: scale(1.02);
}

.stats {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-left: 12px;
}

/* Фильтры */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 20px;
    align-items: center;
}

.filter-chip {
    background: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    color: #1e2b3c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #e2e9f0;
    transition: 0.1s;
    cursor: pointer;
}

.filter-chip.active {
    background: #0b2a40;
    color: white;
    border-color: #0b2a40;
}

.filter-chip.highlight {
    background: #ffb347;
    border-color: #ffb347;
    color: #0b2a40;
    font-weight: 600;
}

/* Заголовки секций */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 48px 0 24px;
    letter-spacing: -0.02em;
    border-left: 8px solid #ffb347;
    padding-left: 24px;
}

/* Сетка карточек */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
    border: 1px solid #edf2f7;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -12px rgba(0, 40, 60, 0.25);
}

.card-image {
    height: 180px;
    background-color: #b8cad8;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content {
    padding: 18px 20px 22px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-desc {
    color: #4f6f8f;
    font-weight: 500;
    margin-bottom: 14px;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b2a40;
    line-height: 1.2;
    margin-bottom: 6px;
}

.price small {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7f8e;
}

.meta {
    display: flex;
    justify-content: space-between;
    color: #5d717f;
    font-size: 0.95rem;
    border-top: 1px solid #dee9f0;
    margin-top: 16px;
    padding-top: 14px;
}

.badge {
    background: #e7f0fd;
    color: #0b2a40;
    padding: 4px 12px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.badge.owner {
    background: #d3f0df;
    color: #076b3e;
}

.badge.daily {
    background: #ffedd5;
    color: #b45b0f;
}

/* Блок длинных ключей */
.long-keywords-block {
    margin: 20px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    background: #eaf0f6;
    padding: 16px;
    border-radius: 60px;
}

/* Двойная сетка */
.double-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.daily-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.daily-item {
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

/* Статистика */
.stats-block {
    background: #f2f7fd;
    border-radius: 48px;
    padding: 32px;
    margin: 50px 0;
    text-align: center;
}

.stats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 40px 0 20px;
}

.stats-badge {
    font-size: 1rem;
    padding: 10px 24px;
    background: #e7f0fd;
    color: #0b2a40;
    border-radius: 24px;
    font-weight: 700;
}

/* Футер */
.footer {
    background: #0b2a40;
    color: white;
    margin-top: 70px;
    padding: 40px 0;
    border-radius: 40px 40px 0 0;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.footer a {
    color: #ffb347;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.semantic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.semantic-list span {
    background: rgba(255,255,255,0.08);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
}

.footer-copyright {
    margin-top: 40px;
    border-top: 1px solid #2a4b60;
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 700px) {
    .hero h1 { 
        font-size: 2rem; 
    }
    .search-panel { 
        border-radius: 40px; 
    }
    .section-title { 
        font-size: 1.8rem; 
    }
    .double-grid {
        grid-template-columns: 1fr;
    }
    .search-panel button {
        padding: 14px 24px;
    }
}