* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f1117;
    color: #edf2f8;
    line-height: 1.5;
    scroll-behavior: smooth;
}

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

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(16px);
    z-index: 100;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #f0a6ca);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.logo span {
    font-weight: 300;
    color: #f0a6ca;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    color: #eef2f6;
    text-decoration: none;
    font-weight: 400;
    transition: 0.2s;
}

.nav-menu a:hover { color: #f0a6ca; }

.nav-menu a.nav-active {
    color: #f0a6ca;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-icon {
    color: #eef2f6;
    font-size: 1.3rem;
    transition: 0.2s;
    text-decoration: none;
}

.header-icon:hover { color: #f0a6ca; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #f0a6ca;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: #eef2f6;
    text-decoration: none;
    padding: 8px 0;
}

.hero-premium {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin: 32px 0 48px;
    padding: 40px;
    border-radius: 48px;
    background: linear-gradient(145deg, #1a1f2e, #0f1117);
    border: 1px solid rgba(240, 166, 202, 0.25);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240,166,202,0.3) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(240,166,202,0.12);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(240,166,202,0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #f0a6ca);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.hero-benefit-icon {
    width: 28px;
    height: 28px;
    background: #f0a6ca20;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f0a6ca;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(95deg, #f0a6ca, #d47e9e);
    color: #0f1117;
    box-shadow: 0 8px 18px rgba(240,166,202,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 25px rgba(240,166,202,0.4);
}

.btn-outline {
    border: 1px solid rgba(240,166,202,0.6);
    color: #f0a6ca;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(240,166,202,0.1);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.hero-image-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(240,166,202,0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-image {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
}

.stat-item { text-align: center; }
.stat-number { font-size: 1.8rem; font-weight: 700; color: #f0a6ca; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 48px 0 24px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.section-link {
    color: #f0a6ca;
    text-decoration: none;
}

.masters-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 24px;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.master-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: linear-gradient(160deg, #1e2436, #1a1f2e);
    border-radius: 32px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.master-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(240,166,202,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.master-card:hover {
    border-color: rgba(240,166,202,0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.master-card:hover::before { opacity: 1; }

.master-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ffd966, #f0a6ca);
    color: #0f1117;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.master-avatar-wrap {
    position: relative;
    width: 140px;
    margin: 0 auto 16px;
}

.master-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0a6ca;
    box-shadow: 0 8px 24px rgba(240,166,202,0.25);
}

.master-verified {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: #3acf6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    border: 2px solid #1a1f2e;
}

.master-name { font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.master-spec { color: #f0a6ca; margin-bottom: 8px; font-size: 0.9rem; }
.master-bio {
    font-size: 0.78rem;
    opacity: 0.7;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 36px;
}
.master-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    opacity: 0.75;
    margin-bottom: 8px;
}
.master-meta span { display: inline-flex; align-items: center; gap: 4px; }
.master-exp { font-size: 0.8rem; opacity: 0.7; }

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 12px;
}

.rating { color: #FFD966; }
.rating-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f0a6ca;
    background: rgba(240,166,202,0.12);
    padding: 2px 8px;
    border-radius: 8px;
}

.master-book-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    margin-top: 4px;
    position: relative;
    z-index: 5;
    touch-action: manipulation;
}

.master-card[data-book-url] { cursor: pointer; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.service-card {
    background: #1a1f2e;
    border-radius: 28px;
    padding: 20px;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    border-color: rgba(240,166,202,0.3);
}

.service-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 16px;
    background: #2a2f3e;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0a6ca;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000000aa, transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: 0.2s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.promo-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.promo-card {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(125deg, #1f2538, #131826);
    border-radius: 28px;
    padding: 24px;
    border-left: 5px solid #f0a6ca;
}

.promo-card i {
    font-size: 2rem;
    color: #f0a6ca;
}

.promo-card h3 { margin: 12px 0; }

.review-card {
    flex: 0 0 320px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.booking-modern {
    background: #1a1f2e;
    border-radius: 36px;
    padding: 36px;
    margin: 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.form-group { margin-bottom: 18px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #0f1117;
    border: 1px solid #2a2f3e;
    border-radius: 24px;
    color: white;
    font-size: 0.9rem;
}

.form-group textarea { min-height: 80px; resize: vertical; }

.booking-submit {
    background: #f0a6ca;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 40px;
    font-weight: bold;
    color: #0f1117;
    cursor: pointer;
    font-size: 1rem;
}

.booking-submit:hover { opacity: 0.9; }

.contact-info {
    margin-top: 20px;
    line-height: 2;
}

.contact-info i { color: #f0a6ca; margin-right: 8px; }

.map-frame {
    width: 100%;
    height: 250px;
    border-radius: 24px;
    border: 0;
}

.float-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 200;
}

.float-btn {
    background: #25D366;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 12px black;
    transition: 0.2s;
    text-decoration: none;
}

.float-btn.telegram { background: #0088cc; }
.float-btn:hover { transform: scale(1.08); }

.toast {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: #1e2a3a;
    padding: 12px 24px;
    border-radius: 60px;
    display: flex;
    gap: 12px;
    z-index: 300;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.3s;
    border: 1px solid rgba(240,166,202,0.3);
}

.toast.show { transform: translateY(0); opacity: 1; }

footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 32px 0;
    margin-top: 48px;
    text-align: center;
}

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

@media (max-width: 900px) {
    .hero-premium { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
    .hero-title { font-size: 2rem; }
    .hero-benefits { font-size: 0.88rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; }
    .hero-visual { min-height: 220px; }
    .hero-image { max-height: 280px; }
    .booking-modern { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 8px; margin: 32px 0 16px; }
    .section-header h2 { font-size: 1.4rem; }
    .master-card { flex: 0 0 85vw; max-width: 320px; padding: 20px 16px; }
    .master-img { width: 110px; height: 110px; }
    .master-avatar-wrap { width: 110px; }
    .masters-slider { gap: 16px; padding-bottom: 8px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .float-buttons { bottom: 16px; right: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.5rem; }
}

@media (max-width: 640px) {
    .container { padding: 0 12px; }
    .header { padding: 12px 0; gap: 12px; }
    .logo { font-size: 1.4rem; }
    .hero-premium { border-radius: 24px; padding: 20px 16px; margin: 20px 0 32px; }
    .hero-title { font-size: 1.65rem; }
    .hero-badges { gap: 6px; }
    .hero-badge { font-size: 0.65rem; padding: 5px 10px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 16px; }
    .promo-cards { flex-direction: column; gap: 12px; }
    .promo-card { min-width: unset; padding: 18px; }
    .review-card { flex: 0 0 85vw; }
    .map-frame { height: 200px; }
    .master-meta { gap: 8px; font-size: 0.68rem; }
    .master-name { font-size: 1.1rem; }
}
