/* DJpoptavka.cz — Landing page (Figma pixel-perfect)
   Font: Inter · Primary: #263ed6 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 14px; color: #071437; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── TOKENS ─────────────────────────────────────── */
:root {
    --primary: #263ed6;
    --primary-light: #eff4ff;
    --accent: #0096e7;
    --text-dark: #071437;
    --text-gray: #4a5674;
    --text-muted: #77819d;
    --text-light: #99a1b7;
    --border: #f1f1f4;
    --bg-light: #f9f9f9;
    --bg-footer: #f5f7fb;
    --white: #ffffff;
    --shadow-btn: 0 4px 12px rgba(38, 62, 214, 0.35);
    --shadow-card: 0 3px 4px rgba(0, 0, 0, 0.05);
    --shadow-hero-card: 0 14px 30px rgba(0,0,0,0.03), 0 54px 54px rgba(0,0,0,0.03), 0 122px 73px rgba(0,0,0,0.02), 0 216px 87px rgba(0,0,0,0.01), 0 338px 95px rgba(0,0,0,0.003);
}

/* ── LAYOUT ─────────────────────────────────────── */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
@media (max-width: 1700px) {
    .container { padding: 0 64px; }
}
.center { text-align: center; }
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 30px;
    letter-spacing: -0.32px;
}

/* ── SHARED BUTTONS ─────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: #fff;
    font-family: inherit; font-weight: 500; border: none; cursor: pointer;
    border-radius: 6px;
    box-shadow: var(--shadow-btn);
    transition: background .15s;
}
.btn-primary:hover { background: #1e32b8; }
.btn-sm { font-size: 13px; padding: 9px 16px; }
.btn-md { font-size: 13px; padding: 13px 22px; }
.btn-lg { font-size: 14px; padding: 14px 24px; height: 48px; }

.tag {
    display: inline-block;
    background: #f1f1f4; color: var(--text-gray);
    font-size: 11px; font-weight: 500;
    padding: 4px 8px; border-radius: 4px;
}

.badge-verified {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
    max-width: 1600px;
    margin: 0 auto;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 56px 0 28px;
}
.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 56px;
}
.nav-logo {
    display: flex; align-items: center; gap: 17px;
    flex-shrink: 0;
}
.nav-logo img {
    width: 40px; height: 40px;
}
.nav-logo__text {
    font-size: 18px; font-weight: 700; color: var(--text-dark);
}
.nav-links {
    display: flex; gap: 16px;
}
.nav-link {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 152px;
    font-size: 16px; font-weight: 500; color: #78829d;
    transition: color .15s;
}
.nav-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background .15s;
}
.nav-link:hover {
    color: var(--text-dark);
}
.nav-link--active {
    color: var(--primary);
    font-weight: 600;
}
.nav-link--active::after {
    background: var(--primary);
}
.nav-actions { display: flex; gap: 16px; align-items: center; height: 44px; }
.btn-nav {
    display: inline-flex; align-items: center; gap: 5px;
    background: #f9f9f9; color: #4b5675;
    font-family: inherit; font-size: 13px; font-weight: 500;
    line-height: 14px; letter-spacing: -0.13px;
    padding: 11px 12px; border: 1px solid #c4cada; border-radius: 6px;
    cursor: pointer; transition: background .15s;
}
.btn-nav:hover { background: #edf0f7; }

/* ── HERO ────────────────────────────────────────── */
.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}
.hero {
    position: relative;
    padding: 64px 250px 120px 140px;
    margin-bottom: 0;
}
.hero-bg-shape {
    position: absolute;
    top: 0; left: 0; right: 0;
    bottom: 0;
    background: var(--primary);
    clip-path: url(#hero-clip);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* Hero left */
.hero-left { width: 460px; min-width: 0; flex-shrink: 1; }
.hero-headline {
    font-family: 'Satoshi', 'Inter', sans-serif;
    font-size: 44px; font-weight: 700; color: #fff;
    line-height: 56px;
    letter-spacing: -1.54px;
    margin-bottom: 41px;
}

/* Search card */
.hero-search-card {
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    width: 460px;
}
.hero-search-label {
    font-size: 13px; font-weight: 500; color: var(--text-gray);
    margin-bottom: 12px;
}
.hero-search-inputs {
    display: flex; gap: 12px; margin-bottom: 14px;
}
.hero-input-wrap {
    position: relative; flex: 1;
    width: 200px;
}
.hero-input-icon {
    position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
    pointer-events: none;
}
.hero-input {
    width: 100%; height: 40px;
    padding: 0 12px 0 34px;
    background: #fcfcfc; border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit; font-size: 13px; color: var(--text-dark);
    outline: none; transition: border-color .15s;
}
.hero-input::placeholder { color: var(--text-muted); }
.hero-input:focus { border-color: var(--primary); }
.hero-search-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.hero-adv-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 500; color: var(--accent);
}
.hero-adv-link:hover { text-decoration: underline; }
.btn-hero-search {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: #fff;
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 10px 18px; border: none; border-radius: 6px;
    cursor: pointer; transition: background .15s;
    box-shadow: var(--shadow-btn);
}
.btn-hero-search:hover { background: #1e32b8; }

/* Hero rating */
.hero-rating { display: flex; flex-direction: column; gap: 8px; margin-top: 31px; }
.hero-rating-row { display: flex; align-items: center; gap: 24px; }
.hero-rating-google { display: block; height: 24px; width: auto; }
.hero-rating-stars { color: #fff; font-size: 16px; letter-spacing: 2px; }
.hero-rating-text { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: -0.25px; }

/* Hero right — DJ card */
.hero-right { flex-shrink: 0; width: 500px; max-width: 40%; margin-bottom: -120px; }
.hero-dj-card {
    background: #fff; border-radius: 12px;
    box-shadow: var(--shadow-hero-card);
    overflow: hidden; position: relative;
    width: 100%;
}
.hero-dj-card__badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: #f1f1f4; color: var(--text-gray);
    font-size: 11px; font-weight: 500;
    padding: 4px 10px; border-radius: 4px;
}
.hero-dj-card__photo {
    height: 198px; overflow: hidden;
    position: relative;
}
.hero-dj-card__photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-dj-card__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-dj-card__avatar-wrap {
    display: flex; justify-content: center;
    margin-top: -66px; position: relative; z-index: 1;
}
.hero-dj-card__avatar {
    width: 132px; height: 132px; border-radius: 50%;
    border: 4px solid #fff; object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-dj-card__body {
    padding: 24px 24px 0;
    text-align: center;
}
.hero-dj-card__name-row {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-bottom: 14px;
}
.hero-dj-card__name { font-size: 18px; font-weight: 600; color: var(--text-dark); }
.hero-dj-card__meta {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; font-size: 14px; color: var(--text-gray); margin-bottom: 26px;
}
.meta-item { display: flex; align-items: center; gap: 4px; }
.hero-dj-card__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 15px; }
.hero-dj-card__services-label {
    font-size: 12px; color: var(--text-gray); margin-bottom: 12px;
    text-align: center;
}
.hero-dj-card__tags {
    display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 29px;
    justify-content: center;
}
.hero-dj-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 24px 25px;
    border-top: 1px solid var(--border);
}
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.dot {
    width: 8px; height: 8px; border-radius: 9999px;
    background: var(--text-light); transition: all .15s;
}
.dot--active {
    width: 16px; height: 8px;
    background: var(--text-light);
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how-it-works {
    padding-top: 144px;
    padding-bottom: 104px;
    background: #fff;
}
.how-it-works__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 391px);
    gap: 72px;
}
.hiw-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 16px;
}
.hiw-illustration {
    width: 313px; height: 209px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hiw-illustration img {
    width: 100%; height: 100%; object-fit: contain;
}
.hiw-step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 16px; border-radius: 248px;
    background: var(--primary-light); color: var(--primary);
    font-size: 16px; font-weight: 500;
}
.hiw-title {
    font-size: 18px; font-weight: 500; color: var(--text-dark); line-height: 1.4;
}
.hiw-desc {
    font-size: 14px; color: var(--text-gray); line-height: 22px;
    max-width: 340px;
}

/* ── SEPARATOR ──────────────────────────────────── */
.separator {
    max-width: 1600px;
    margin: 0 auto;
    height: 1px;
    background: var(--border);
}

/* ── POPULAR DJS ─────────────────────────────────── */
.popular-djs {
    padding-top: 104px;
    padding-bottom: 0;
}
.popular-djs__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 40px;
}
.popular-djs__filters { display: flex; gap: 8px; }
.filter-btn {
    padding: 13px 16px; border-radius: 6px;
    border: 1px solid var(--border); background: var(--bg-light);
    font-family: inherit; font-size: 13px; font-weight: 500; color: var(--text-gray);
    cursor: pointer; transition: all .15s;
}
.filter-btn--active {
    background: var(--primary-light); color: var(--primary);
    border-color: var(--primary); font-weight: 600;
}
.filter-btn:hover:not(.filter-btn--active) { background: #edf0f7; }

/* DJ Grid */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.dj-card {
    background: #fff; border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: visible;
    display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.dj-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

.dj-card__photo-wrap {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 157px;
}
.dj-card__photo { width: 100%; height: 100%; object-fit: cover; }
.dj-card__photo-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}
.dj-card__badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: #f1f1f4; color: var(--text-gray);
    font-size: 11px; font-weight: 500;
    padding: 4px 10px; border-radius: 4px;
}
.dj-card__fav {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    width: 28px; height: 28px; border-radius: 6px;
    background: #fff; border: 1px solid #dbdfe9;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.dj-card__fav:hover { background: #fff0f0; }
.dj-card__fav:hover svg { stroke: #e53e3e; }

.dj-card__avatar-wrap {
    display: flex; justify-content: center;
    margin-top: -54px; position: relative; z-index: 1;
}
.dj-card__avatar {
    width: 109px; height: 109px; border-radius: 50%;
    border: 4px solid #fff; object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.dj-card__body {
    padding: 8px 16px 16px;
    flex: 1; display: flex; flex-direction: column;
    text-align: center;
}
.dj-card__name-row {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    margin-bottom: 4px;
}
.dj-card__name { font-size: 18px; font-weight: 600; color: var(--text-dark); }
.dj-card__meta {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 14px; color: var(--text-gray);
    margin-bottom: 12px;
}
.dj-card__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 10px; }
.dj-card__services-label {
    font-size: 12px; color: var(--text-gray); margin-bottom: 6px;
    text-align: center;
}
.dj-card__tags {
    display: flex; flex-wrap: wrap; gap: 5px;
    justify-content: center;
}

.popular-djs__more {
    display: flex; justify-content: center;
    padding-top: 0;
    padding-bottom: 120px;
}

/* ── PROMO ───────────────────────────────────────── */
.promo {
    padding-bottom: 120px;
}
.promo-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.promo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 40px;
    display: flex; align-items: center;
    gap: 24px;
    min-height: 289px;
}
.promo-card__text {
    flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.promo-card__title {
    font-size: 22px; font-weight: 600; color: var(--text-dark);
    line-height: 30px;
    max-width: 390px;
}
.promo-card__desc {
    font-size: 14px; color: var(--text-gray); line-height: 22px;
}
.promo-card__illustration {
    flex-shrink: 0;
}
.promo-card__illustration img {
    width: 272px; height: auto;
}

/* ── WHY REGISTER ────────────────────────────────── */
.why-register {
    padding-bottom: 120px;
}
.why-register__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}
.why-register .section-title {
    text-align: center;
    margin-bottom: 24px;
}
.why-tabs {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 48px;
}
.why-tab {
    width: 173px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--bg-light);
    font-family: inherit; font-size: 16px; font-weight: 500; color: var(--text-dark);
    cursor: pointer; border: none;
    transition: all .15s;
}
.why-tab--active {
    background: var(--primary-light); color: var(--primary);
    font-weight: 700;
}
.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 72px;
    row-gap: 48px;
    margin-bottom: 48px;
}
.why-feature {
    display: flex; flex-direction: column; gap: 8px;
}
.why-feature__icon {
    width: 32px; height: 32px;
    margin-bottom: 4px;
    color: var(--primary);
}
.why-feature__title {
    font-size: 16px; font-weight: 500; color: var(--text-dark);
}
.why-feature__desc {
    font-size: 13px; color: var(--text-gray);
    line-height: 22px;
    letter-spacing: -0.408px;
}

/* ── REVIEWS ─────────────────────────────────────── */
.reviews {
    padding-bottom: 88px;
}
.reviews__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 40px;
}
.reviews__nav { display: flex; gap: 8px; }
.btn-nav-arrow {
    width: 48px; height: 48px; border-radius: 4.8px;
    border: none; background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .15s;
}
.btn-nav-arrow:hover { background: #edf0f7; }
.reviews-scroll {
    display: flex; gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.review-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    min-width: 381px; max-width: 381px;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.review-card__body {
    padding: 24px;
    flex: 1;
    display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.review-text {
    font-size: 14px; color: var(--text-gray); line-height: 22px;
    flex: 1;
    max-width: 317px;
}
.review-author { display: flex; flex-direction: column; gap: 4px; }
.review-name { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.review-location {
    display: flex; align-items: center; gap: 4px;
    font-size: 14px; color: var(--text-gray);
}
.review-card__footer {
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    background: var(--bg-light);
}
.review-event-link {
    font-size: 13px; font-weight: 500; color: var(--primary);
    display: flex; align-items: center; gap: 4px;
}
.review-event-link:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
    background: var(--bg-footer);
}
.footer-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px;
    display: flex;
    justify-content: space-between;
}
.footer-brand {
    flex-shrink: 0;
    display: flex; flex-direction: column; gap: 12px;
    width: 175px;
}
.footer-logo {
    display: flex; align-items: center; gap: 17px;
}
.footer-logo img {
    width: 40px; height: 40px;
}
.footer-logo__text { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.footer-copy { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.footer-social { display: flex; gap: 24px; margin-top: 8px; }
.footer-social__link {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    transition: opacity .15s;
}
.footer-social__link:hover { opacity: 0.7; }
.footer-cols { display: flex; gap: 200px; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col__title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.footer-list { display: flex; flex-direction: column; gap: 24px; }
.footer-link { font-size: 14px; color: var(--text-gray); transition: color .15s; }
.footer-link:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    max-width: 1920px;
    margin: 0 auto;
    padding: 24px 120px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-payment-text { font-size: 14px; color: var(--text-gray); }
.footer-payment-icons img { height: 30px; }

/* ── DATE PICKER ─────────────────────────────────── */
.datepicker {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 100;
    width: 286px;
    background: #fff;
    border: 1px solid var(--bg-light);
    border-radius: 6px;
    box-shadow: 0 10px 14px rgba(15, 42, 81, 0.03);
    padding: 10px;
    flex-direction: column;
}
.datepicker--open { display: flex; }
.datepicker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.datepicker__nav-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
}
.datepicker__nav-btn:hover { background: #edf0f7; }
.datepicker__title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.13px;
}
.datepicker__days-header {
    display: flex;
}
.datepicker__days-header span {
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-gray);
}
.datepicker__grid {
    display: flex;
    flex-wrap: wrap;
}
.datepicker__day {
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
    transition: background 0.1s;
}
.datepicker__day:hover { background: var(--primary-light); }
.datepicker__day--other { color: #c4cada; }
.datepicker__day--other:hover { background: var(--bg-light); }
.datepicker__day--selected {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.13px;
}
.datepicker__day--selected:hover { background: #1e32b8; }
.datepicker__day--today {
    font-weight: 600;
    box-shadow: inset 0 0 0 1px var(--primary);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1700px) {
    .container { padding: 0 64px; }
}
@media (max-width: 1400px) {
    .hero { padding: 56px 60px 100px 60px; }
    .footer-inner { gap: 80px; padding: 80px 60px; }
    .footer-cols { gap: 60px; }
    .footer-bottom { padding: 24px 60px; }
    .why-features { column-gap: 40px; }
    .hiw-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
@media (max-width: 1200px) {
    .dj-grid { grid-template-columns: repeat(2, 1fr); }
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 48px 48px 100px 48px; }
    .hero-dj-card__avatar { width: 100px; height: 100px; }
    .hero-dj-card__avatar-wrap { margin-top: -50px; }
    .footer-inner { flex-direction: column; gap: 40px; padding: 60px 40px; }
    .footer-cols { gap: 40px; }
}
@media (max-width: 1050px) {
    /* ── NAVBAR ──────────────────────────────── */
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    /* ── CONTAINER ───────────────────────────── */
    .container { padding: 0 32px; }

    /* ── HERO ────────────────────────────────── */
    .hero { padding: 40px 32px 60px; }
    .hero-inner {
        flex-direction: column;
        gap: 24px;
    }
    .hero-left { width: 100%; flex-shrink: 0; }
    .hero-headline { font-size: 40px; line-height: 46px; }
    .hero-right {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
    .hero-dj-card { width: 100%; }
    .hero-bg-shape {
        bottom: auto;
        height: 580px;
    }

    /* ── HOW IT WORKS ────────────────────────── */
    .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .hiw-grid .hiw-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* ── DATE PICKER (tablet/mobile inline) ──── */
    .datepicker {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 10px 0 0;
        border-radius: 0;
    }
    .datepicker__days-header span,
    .datepicker__day {
        width: calc(100% / 7);
    }
    .hero-search-inputs--picker-open .hero-input-wrap:nth-child(2) {
        display: none;
    }
    .hero-search-footer--hidden {
        display: none !important;
    }
    .hero--picker-open .hero-bg-shape {
        height: 720px;
    }
    .hero--picker-open .hero-rating {
        display: none;
    }

    /* ── POPULAR DJS ──────────────────────────── */
    .popular-djs__filters { flex-wrap: wrap; }

    /* ── PROMO ────────────────────────────────── */
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 32px;
    }
    .promo-card { padding: 32px; }

    /* ── WHY REGISTER ────────────────────────── */
    .why-register__inner { padding: 0 32px; }

    /* ── REVIEWS ──────────────────────────────── */
    .reviews__nav { display: none; }
    .reviews-scroll {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .review-card {
        min-width: 340px;
        max-width: 340px;
        scroll-snap-align: start;
    }

    /* ── FOOTER ───────────────────────────────── */
    .footer-inner { flex-direction: column; gap: 40px; padding: 60px 32px; }
    .footer-bottom { padding: 24px 32px; }
}
/* ── HAMBURGER (hidden on desktop) ────────────── */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

/* ── MOBILE MENU OVERLAY ────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg-footer);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu--open { transform: translateX(0); }
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
}
.mobile-menu__back {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0;
}
.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}
.mobile-menu__logo img { width: 24px; height: 24px; }
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    flex: 1;
}
.mobile-menu__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s;
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--text-dark); }
.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px 40px;
}
.mobile-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 14px 15px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}
.mobile-menu__btn--outline {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid #c4cada;
}
.mobile-menu__btn--outline:hover { background: #f5f7fb; }
.mobile-menu__btn--primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-btn);
}
.mobile-menu__btn--primary:hover { background: #1e32b8; }

@media (max-width: 768px) {
    /* ── NAVBAR ─────────────────────────────── */
    .navbar {
        padding: 20px 16px;
        height: auto;
    }
    .nav-logo img { width: 24px; height: 24px; }
    .nav-logo { gap: 12px; }
    .nav-logo__text { font-size: 14px; }

    /* ── CONTAINER ────────────────────────────── */
    .container { padding: 0 16px; }

    /* ── HERO ────────────────────────────────── */
    .hero-wrapper { padding: 0 8px; }
    .hero {
        padding: 32px 8px 40px;
    }
    .hero-bg-shape {
        bottom: auto;
        height: 700px;
    }
    .hero-inner {
        flex-direction: column;
        gap: 24px;
    }
    .hero-left { width: 100%; }
    .hero-headline {
        font-size: 40px;
        line-height: 44px;
        letter-spacing: -1.4px;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    .hero-search-card {
        width: 100%;
        padding: 24px;
    }
    .hero-search-inputs {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 22px;
    }
    .hero-input-wrap { width: 100%; }
    .hero-search-footer {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .btn-hero-search {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
    }
    .hero-adv-link {
        justify-content: center;
        color: var(--accent);
    }
    .hero-rating { margin-top: 24px; }

    /* Hero DJ card — full width below */
    .hero-right {
        width: 100%;
        margin-bottom: 0;
    }
    .hero-dj-card { width: 100%; }

    /* ── HOW IT WORKS ────────────────────────── */
    .how-it-works {
        padding-top: 80px;
        padding-bottom: 64px;
    }
    .how-it-works .section-title {
        font-size: 32px;
        line-height: 38px;
    }
    .how-it-works__inner { gap: 40px; }
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    .hiw-illustration {
        width: 252px;
        height: 168px;
    }
    .hiw-step-badge { font-size: 14px; }
    .hiw-title { font-size: 16px; }
    .hiw-desc { font-size: 13px; }

    /* ── SEPARATOR ────────────────────────────── */
    .separator { margin: 0 16px; }

    /* ── POPULAR DJS ──────────────────────────── */
    .popular-djs { padding-top: 64px; }
    .popular-djs__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .popular-djs__header .section-title {
        font-size: 24px;
        line-height: 30px;
    }
    .popular-djs__filters { display: none; }
    .dj-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .popular-djs__more { padding-bottom: 80px; }

    /* ── PROMO ────────────────────────────────── */
    .promo { padding-bottom: 80px; }
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    .promo-card {
        flex-direction: column-reverse;
        padding: 24px;
        min-height: auto;
        gap: 20px;
    }
    .promo-card__illustration { align-self: center; }
    .promo-card__illustration img {
        width: 100%;
        max-width: 322px;
        height: auto;
    }
    .promo-card__title {
        font-size: 20px;
        line-height: 28px;
        max-width: 100%;
    }
    .promo-card__desc { font-size: 13px; }
    .promo-card .btn-primary { width: 100%; justify-content: center; }

    /* ── WHY REGISTER ────────────────────────── */
    .why-register { padding-bottom: 80px; }
    .why-register__inner { padding: 0 24px; }
    .why-register .section-title {
        font-size: 28px;
        line-height: 42px;
    }
    .why-tabs {
        gap: 8px;
        margin-bottom: 40px;
        width: 100%;
    }
    .why-tab {
        flex: 1;
        width: auto;
    }
    .why-features {
        grid-template-columns: 1fr;
        row-gap: 64px;
        column-gap: 0;
        margin-bottom: 40px;
    }
    .why-feature {
        align-items: center;
        text-align: center;
    }
    .why-feature__icon { margin-bottom: 12px; }
    .why-feature__title { font-size: 16px; }
    .why-feature__desc {
        font-size: 13px;
        max-width: 343px;
    }

    /* ── REVIEWS ──────────────────────────────── */
    .reviews { padding-bottom: 64px; }
    .reviews__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .reviews__header .section-title {
        font-size: 28px;
        line-height: 38px;
    }
    .reviews__nav { display: none; }
    .reviews-scroll {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .review-card {
        min-width: 336px;
        max-width: 336px;
        scroll-snap-align: start;
    }

    /* ── FOOTER ───────────────────────────────── */
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: 60px 16px;
    }
    .footer-brand {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-social { justify-content: center; }
    .footer-cols {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }
    .footer-col { align-items: center; text-align: center; }
    .footer-list { align-items: center; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        gap: 16px;
    }
}

/* ══════════════════════════════════════════════════════
   DJ KATALOG — stránka s výpisem DJů a filtry
   ══════════════════════════════════════════════════════ */

/* ── SEARCH / FILTER BAR ───────────────────────────── */
.catalog-search {
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 48px;
    background: #fff;
}

/* Gradientové pozadí — karta filtru je uvnitř, gradient se přizpůsobí obsahu */
.catalog-search__gradient {
    position: relative;
    margin-left: -40px;
    margin-right: -40px;
    padding: 40px 40px 80px 40px;
    background: #fff;
}
.catalog-search__gradient-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Pohyblivý světelný pruh — nahrazuje Figma video overlay s mix-blend-lighten */
.catalog-search__gradient-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1680 349.166' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1647.18 349.155L23.3824 307.356C10.3725 307.022 0 296.379 0 283.364V24C0 10.7452 10.7451 0 23.9999 0H1656C1669.25 0 1680 10.7452 1680 24V317.166C1680 335.161 1665.17 349.618 1647.18 349.155Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1680 349.166' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1647.18 349.155L23.3824 307.356C10.3725 307.022 0 296.379 0 283.364V24C0 10.7452 10.7451 0 23.9999 0H1656C1669.25 0 1680 10.7452 1680 24V317.166C1680 335.161 1665.17 349.618 1647.18 349.155Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.catalog-search__gradient-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(120, 180, 255, 0.15) 35%,
        rgba(180, 220, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.30) 50%,
        rgba(180, 220, 255, 0.25) 55%,
        rgba(120, 180, 255, 0.15) 65%,
        transparent 80%
    );
    animation: gradient-shine 12s ease-in-out infinite;
}

@keyframes gradient-shine {
    0%   { transform: translateX(0); }
    100% { transform: translateX(400%); }
}

/* Bílá karta filtru */
.catalog-filter-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #f5f7fb;
    border-radius: 16px;
    padding: 24px;
    max-width: 100%;
    box-shadow:
        0px 21px 47px 0px rgba(0,0,0,0.03),
        0px 85px 85px 0px rgba(0,0,0,0.02),
        0px 192px 115px 0px rgba(0,0,0,0.01),
        0px 341px 136px 0px rgba(0,0,0,0),
        0px 532px 149px 0px rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: gap .35s ease;
}
.catalog-filter-card--collapsed {
    gap: 0;
}

/* Hlavička karty */
.catalog-filter-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-filter-card__title {
    font-size: 20px;
    font-weight: 500;
    color: #071437;
    letter-spacing: -0.2px;
    line-height: normal;
}
.catalog-filter-card__collapse {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f9f9f9;
    border: 1px solid #dbdfe9;
    border-radius: 6px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #4b5675;
    letter-spacing: -0.13px;
    line-height: 14px;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
    overflow: hidden;
}
.catalog-filter-card__collapse:hover {
    background: #edf0f7;
}
/* Stav "Closed" — tlačítko "Vyplnit parametry" */
.catalog-filter-card__collapse--closed {
    background: #263ed6;
    border-color: #263ed6;
    color: #fff;
}
.catalog-filter-card__collapse--closed:hover {
    background: #1e32b8;
}

/* Tělo filtru */
.catalog-filter-card__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
    max-height: 500px;
    transition: max-height .35s ease, opacity .25s ease;
    opacity: 1;
}
.catalog-filter-card__body--hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

/* Sekce s inputy */
.catalog-filter-card__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.catalog-filter-card__label {
    font-size: 13px;
    font-weight: 400;
    color: #071437;
    line-height: 14px;
}
.catalog-filter-card__required {
    color: #d81a48;
}

/* Řádek inputů */
.catalog-filter-card__inputs {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Jednotlivý input */
.catalog-input {
    flex: 1;
    min-width: 0;
    position: relative;
}
.catalog-input__field {
    width: 100%;
    height: 40px;
    padding: 11px 12px;
    background: #f9f9f9;
    border: 1px solid #c4cada;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    color: #4b5675;
    line-height: 14px;
    outline: none;
    transition: border-color .15s;
}
.catalog-input__field::placeholder {
    color: #4b5675;
}
.catalog-input__field:focus {
    border-color: var(--primary);
}
/* Select varianta */
.catalog-input__field--select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}
/* Ikona v inputu (kalendář) */
.catalog-input__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
/* Šipka u selectu */
.catalog-input__chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Tlačítko "Zobrazit výsledky" */
.catalog-filter-card__submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #263ed6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.13px;
    line-height: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.catalog-filter-card__submit:disabled {
    opacity: 0.5;
    cursor: default;
}
.catalog-filter-card__submit:not(:disabled):hover {
    background: #1e32b8;
}

/* Footer filtru */
.catalog-filter-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-filter-card__adv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #0096e7;
    line-height: 14px;
    transition: color .15s;
}
.catalog-filter-card__adv-link:hover {
    text-decoration: underline;
}
.catalog-filter-card__count {
    font-size: 14px;
    font-weight: 400;
    color: #4b5675;
    line-height: 14px;
}
.catalog-filter-card__count strong {
    font-weight: 700;
    color: #071437;
}

/* Pokročilé parametry filtru */
.catalog-filter-card__advanced {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
}
.catalog-filter-card__advanced--visible {
    max-height: 200px;
    opacity: 1;
}
.catalog-filter-card__adv-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}
.catalog-input--adv {
    flex: 1;
    border-color: #c4cada;
}
.catalog-input--adv .catalog-input__field {
    border-color: #c4cada;
}
.catalog-input__suffix {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 400;
    color: #4b5675;
    pointer-events: none;
}

/* ── CATALOG SECTION ───────────────────────────────── */
.catalog {
    padding-top: 40px;
    padding-bottom: 0;
}
.catalog--continued {
    padding-top: 0;
}
.catalog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.catalog__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 30px;
    letter-spacing: -0.32px;
}
.catalog__sort {
    display: flex;
    gap: 15px;
}

/* Přepis dj-card pro katalog — "Služba v ceně" styl */
.catalog .dj-card__services-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    text-align: center;
}
.catalog .dj-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
}
.catalog .dj-card__tags .tag {
    background: #f9f9f9;
    padding: 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #4b5675;
    line-height: 12px;
}
.catalog .dj-card__body {
    padding: 8px 25px 20px;
}
.catalog .dj-card__meta {
    gap: 14px;
    margin-bottom: 0;
}
.catalog .dj-card__name-row {
    margin-bottom: 14px;
}
.catalog .dj-card {
    overflow: hidden;
}
.catalog .dj-card__badge {
    top: 16px;
    left: 16px;
    background: #f9f9f9;
    color: #4b5675;
    padding: 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 12px;
}
.catalog .dj-card__fav {
    top: 16px;
    right: 16px;
}

/* Cena na kartě */

/* ── PAGINATION ────────────────────────────────────── */
.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 0 80px;
}
.pagination__btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.pagination__btn:hover:not(.pagination__btn--active) {
    background: #edf0f7;
}
.pagination__btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-btn);
}
.pagination__btn--prev,
.pagination__btn--next {
    color: var(--text-dark);
}

/* ── CATALOG RESPONSIVE ────────────────────────────── */
@media (max-width: 1700px) {
    .catalog-search {
        padding-left: 64px;
        padding-right: 64px;
    }
    .catalog-search__gradient {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 1400px) {
    .catalog-search {
        padding-left: 60px;
        padding-right: 60px;
    }
    .catalog-search__gradient {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .catalog-filter-card__inputs {
        flex-wrap: wrap;
    }
    .catalog-input {
        flex: 1 1 calc(50% - 16px);
        min-width: 180px;
    }
    .catalog__sort {
        gap: 8px;
    }
}
@media (max-width: 1050px) {
    .catalog-search {
        padding-left: 32px;
        padding-right: 32px;
    }
    .catalog-search__gradient {
        margin-left: 0;
        margin-right: 0;
        padding-left: 32px;
        padding-right: 32px;
    }
    .catalog-filter-card__inputs {
        flex-direction: column;
    }
    .catalog-input {
        flex: none;
        width: 100%;
    }
    .catalog-filter-card__submit {
        width: 100%;
        justify-content: center;
    }
    .catalog-filter-card__footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .catalog__header {
        margin-bottom: 24px;
    }
    .catalog__sort {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .catalog-search {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 32px;
    }
    .catalog-search__gradient {
        margin-left: 0;
        margin-right: 0;
        padding: 24px 16px 60px 16px;
    }
    .catalog-filter-card {
        padding: 16px;
    }
    .catalog-filter-card__title {
        font-size: 16px;
    }
    .catalog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .catalog__title {
        font-size: 24px;
    }
    .catalog__sort {
        width: 100%;
    }
    .catalog__sort .filter-btn {
        font-size: 12px;
        padding: 10px 12px;
    }
    .catalog-pagination {
        padding: 32px 0 60px;
    }
}

/* ── TIP PRO VÁS — fixed popup ────────────────────── */
.tip-card {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    background: #f5f7fb;
    border: 1px solid #f1f1f4;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.03);
    max-width: 636px;
    transition: opacity .3s ease, transform .3s ease;
}
.tip-card__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}
.tip-card__close:hover svg path {
    stroke: #071437;
}
.tip-card__content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.tip-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tip-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #071437;
    line-height: 30px;
    letter-spacing: -0.24px;
}
.tip-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #4b5675;
    line-height: 22px;
}
.tip-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #263ed6;
    color: #fff;
    border-radius: 6px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.13px;
    cursor: pointer;
    border: none;
    width: fit-content;
    transition: background .15s;
}
.tip-card__btn:hover {
    background: #1e32b8;
}
.tip-card__illustration {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
}
.tip-card__illustration svg {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .tip-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 24px;
    }
    .tip-card__illustration {
        display: none;
    }
    .tip-card__content {
        gap: 0;
    }
}
