/* Premium Feminine Design for IteloClub Posture */
:root {
    --bg-primary: #F9F7F2; /* Мягкий беж */
    --accent-soft: #E8D5CC; /* Пыльная роза */
    --accent-gold: #D4AF37; /* Золотой акцент */
    --text-dark: #333333; /* Глубокий серый */
    --text-muted: #666666;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 40px rgba(181, 155, 140, 0.15);
    --border-radius: 24px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Prata', serif;
    font-weight: 400;
    color: var(--text-dark);
}

.premium-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.premium-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top right, #FFFFFF 0%, var(--bg-primary) 70%);
}

.premium-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--white);
    border: 1px solid var(--accent-soft);
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.premium-hero h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.premium-hero h1 span {
    display: block;
    color: #B59B8C;
    font-style: italic;
    font-size: 42px;
}

.premium-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Sections */
.premium-section {
    padding: 100px 0;
}

.section-tag {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.section-title-premium {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

/* Premium Cards */
.premium-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(232, 213, 204, 0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Button */
.premium-cta {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: none;
}

.premium-cta:hover {
    background-color: #555;
    transform: scale(1.05);
}

.premium-cta-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

/* Pricing Card Special */
.price-card-premium {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF8 100%);
    border: 1px solid var(--accent-soft);
    position: relative;
    overflow: hidden;
}

.price-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 50%, #E8D5CC 50%);
    opacity: 0.3;
}

.price-premium {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: var(--text-dark);
    margin: 20px 0;
}

.price-old {
    text-decoration: line-through;
    color: #B59B8C;
    font-size: 24px;
}

/* Video Wrapper Premium */
.video-wrapper-premium {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 10px solid var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-hero h1 { font-size: 38px; }
    .premium-hero h1 span { font-size: 28px; }
    .premium-section { padding: 60px 0; }
}
