.heart-page{--font-display: "Playfair Display", Georgia, serif;
            
            --font-sans: "Inter", system-ui, -apple-system, sans-serif;
            

            
            --container-max: 1240px;
            --container-pad: 20px;

            
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 32px;

            
            --bg: #FFFBF9;
            
            --text: #2C1810;
            
            --text-muted: #6B4E45;

            --primary: #D64045;
            
            --primary-hover: #B52F34;
            --primary-contrast: #FFFFFF;

            --secondary: #F6E6E1;
            

            --border: rgba(44, 24, 16, 0.08);

            --shadow-sm: 0 4px 12px rgba(44, 24, 16, 0.05);
            --shadow-card: 0 12px 32px rgba(44, 24, 16, 0.08);

            
            --s-1: 4px;
            --s-2: 8px;
            --s-3: 12px;
            --s-4: 16px;
            --s-5: 20px;
            --s-6: 24px;
            --s-8: 32px;
            --s-10: 40px;
            --s-12: 48px;
            --s-16: 64px;
            --s-20: 80px;
        }
.heart-page, .heart-page *, .heart-page::before, .heart-page *::before, .heart-page::after, .heart-page *::after{box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
body.heart-page{font-family: var(--font-sans);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
.heart-page img{max-width: 100%;
            display: block;
        }
.heart-page h1, .heart-page h2{font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
        }
.heart-page h3{font-family: var(--font-sans);
            font-weight: 700;
            line-height: 1.2;
        }
.heart-page .container{width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-pad);
        }
.heart-page .section{padding: var(--s-16) 0;
            position: relative;
            overflow: hidden;
        }
.heart-page .section--hero{overflow: visible;
        }
.heart-page .button{display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: var(--radius-lg);
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            box-shadow: 0 4px 12px rgba(214, 64, 69, 0.2);
        }
.heart-page .button--primary{background-color: var(--primary);
            color: #ffffff !important;
            
        }
.heart-page .button--primary:hover{background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(214, 64, 69, 0.3);
            color: #ffffff !important;
        }
.heart-page .button--primary:active{transform: translateY(0);
        }
.heart-page .header{padding: var(--s-5) 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
        }
.heart-page .header__logo{font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.heart-page .hero{min-height: 100vh;
            
            display: flex;
            align-items: center;
            padding-top: var(--s-20);
            
        }
.heart-page .hero__grid{display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--s-10);
            align-items: center;
        }
.heart-page .hero__content{display: flex;
            flex-direction: column;
            gap: var(--s-6);
            max-width: 600px;
        }
.heart-page .hero__label{display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--secondary);
            border-radius: var(--radius-md);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.heart-page .hero__title{font-size: clamp(40px, 5vw, 72px);
            color: var(--text);
        }
.heart-page .hero__title span{color: var(--primary);
            display: block;
            
        }
.heart-page .hero__description{font-size: clamp(18px, 2vw, 20px);
            color: var(--text-muted);
            line-height: 1.6;
        }
.heart-page .hero__meta{display: flex;
            gap: var(--s-6);
            margin-top: var(--s-2);
            font-size: 16px;
            color: var(--text);
            font-weight: 500;
        }
.heart-page .hero__meta-item{display: flex;
            align-items: center;
            gap: 8px;
        }
.heart-page .hero__visual{position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.heart-page .hero__circle{position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(214, 64, 69, 0.1), rgba(214, 64, 69, 0.05));
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-slow 8s infinite alternate ease-in-out;
        }
.heart-page .hero__circle::before{content: '';
            position: absolute;
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            border-radius: 50%;
            border: 1px solid rgba(214, 64, 69, 0.1);
            animation: spin-slow 20s infinite linear;
        }
.heart-page .hero__heart-shape{width: 120px;
            height: 120px;
            background-color: var(--primary);
            transform: rotate(-45deg);
            position: relative;
            animation: heartbeat 3s infinite ease-in-out;
            box-shadow: 0 20px 60px rgba(214, 64, 69, 0.4);
        }
.heart-page .hero__heart-shape::before, .heart-page .hero__heart-shape::after{content: "";
            width: 120px;
            height: 120px;
            background-color: var(--primary);
            border-radius: 50%;
            position: absolute;
        }
.heart-page .hero__heart-shape::before{top: -60px;
            left: 0;
        }
.heart-page .hero__heart-shape::after{left: 60px;
            top: 0;
        }
@keyframes heartbeat {
            0% {
                transform: scale(1) rotate(-45deg);
            }

            50% {
                transform: scale(1.1) rotate(-45deg);
            }

            100% {
                transform: scale(1) rotate(-45deg);
            }
        }
@keyframes pulse-slow {
            0% {
                transform: translate(-50%, -50%) scale(0.95);
                opacity: 0.8;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 1;
            }
        }
@keyframes spin-slow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
@media (max-width: 960px){
.heart-page .hero{min-height: auto;
                padding: 80px 0 60px;
            }
.heart-page .hero__grid{grid-template-columns: 1fr;
                text-align: center;
                place-items: center;
            }
.heart-page .hero__content{align-items: center;
                justify-self: center;
                max-width: 100%;
            }
.heart-page .hero__meta{justify-content: center;
            }
.heart-page .hero__visual{height: 350px;
                width: 350px;
                justify-self: center;
                margin-top: var(--s-8);
            }
}
@media (max-width: 480px){
.heart-page .hero__title{font-size: 36px;
            }
.heart-page .hero__meta{flex-direction: column;
                gap: var(--s-3);
            }
.heart-page .hero__visual{height: 260px;
                width: 260px;
            }
.heart-page .hero__heart-shape, .heart-page .hero__heart-shape::before, .heart-page .hero__heart-shape::after{width: 80px;
                height: 80px;
            }
.heart-page .hero__heart-shape::before{top: -40px;
            }
.heart-page .hero__heart-shape::after{left: 40px;
            }
}
@media (max-width: 768px){
.heart-page .section--vip .vip-grid-cols{grid-template-columns: 1fr !important;
            }
}
@media (max-width: 600px){
.heart-page .schedule-card .bonus-grid{grid-template-columns: 1fr !important;
            }
}
.heart-page{--secondary: #F4EBE8;
            
            --shadow-card: 0 12px 32px rgba(44, 24, 16, 0.08);
            
        }
.heart-page .section--diagnosis{background-color: var(--secondary);
        }
.heart-page .section-header{text-align: center;
            max-width: 800px;
            margin: 0 auto var(--s-10);
        }
.heart-page .section-title{font-size: clamp(32px, 4vw, 48px);
            margin-bottom: var(--s-4);
            color: var(--text);
        }
.heart-page .section-subtitle{font-family: var(--font-sans);
            font-style: normal;
            font-size: clamp(18px, 2vw, 20px);
            color: var(--text-muted);
            line-height: 1.6;
            margin-top: var(--s-2);
        }
.heart-page .diagnosis-grid{display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--s-6);
            padding-bottom: var(--s-10);
        }
.heart-page .card{background: #ffffff;
            
            padding: var(--s-8);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.5);
            
            box-shadow: 0 4px 12px rgba(44, 24, 16, 0.03);
            
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: var(--s-4);
        }
.heart-page .card:hover{transform: translateY(-6px);
            box-shadow: var(--shadow-card);
            border-color: rgba(214, 64, 69, 0.2);
        }
.heart-page .card__icon{font-size: 40px;
            color: var(--primary);
            
            margin-bottom: var(--s-2);
        }
.heart-page .card__title{font-family: var(--font-sans);
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
        }
.heart-page .card__text{font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }
@media (min-width: 768px){
.heart-page .card--wide{grid-column: span 2;
            }
}
@media (min-width: 1024px){
.heart-page .diagnosis-grid{grid-template-columns: repeat(3, 1fr);
                
            }
}
.heart-page .section--levels{background-color: #ffffff;
        }
.heart-page .levels-grid{display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-8);
            max-width: 900px;
            margin: 0 auto;
        }
@media (min-width: 860px){
.heart-page .levels-grid{grid-template-columns: 1fr auto 1fr;
                align-items: center;
            }
}
.heart-page .level-card{background: #ffffff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(44, 24, 16, 0.12);
            
            border: 2px solid rgba(44, 24, 16, 0.1);
            
            height: 100%;
            display: flex;
            flex-direction: column;
        }
.heart-page .level-card--head{border-top: 4px solid var(--text-muted);
        }
.heart-page .level-card--heart{border-top: 4px solid var(--primary);
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(214, 64, 69, 0.15);
        }
.heart-page .level-card__header{padding: var(--s-6) var(--s-6) var(--s-4);
            background: rgba(0, 0, 0, 0.02);
            text-align: center;
        }
.heart-page .level-card__icon{font-size: 48px;
            margin-top: var(--s-2);
            color: inherit;
        }
.heart-page .level-card--head .level-card__icon{color: var(--text-muted);
            opacity: 0.5;
        }
.heart-page .level-card--heart .level-card__icon{color: var(--primary);
        }
.heart-page .level-card__num{font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            font-weight: 600;
            display: block;
            margin-bottom: var(--s-1);
        }
.heart-page .level-card__title{font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: var(--s-1);
        }
.heart-page .level-card--head .level-card__title{color: var(--text);
        }
.heart-page .level-card--heart .level-card__title{color: var(--primary);
        }
.heart-page .level-card__status{font-size: 14px;
            color: var(--text-muted);
        }
.heart-page .level-card__body{padding: var(--s-6);
            flex-grow: 1;
        }
.heart-page .level-card__body p strong{color: var(--text);
        }
.heart-page .level-list{list-style: none;
            margin: var(--s-4) 0;
            padding: var(--s-4);
            background: rgba(0, 0, 0, 0.02);
            
            border-radius: var(--radius-sm);
        }
.heart-page .level-list li{margin-bottom: 8px;
            font-weight: 500;
            
            font-size: 16px;
            
            color: var(--text-muted);
            
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease, list-style-image 0s;
            
            padding: 4px;
            border-radius: 4px;
        }
.heart-page .level-list li:hover{transform: translateX(6px);
            
            background: rgba(0, 0, 0, 0.03);
            
            color: var(--primary);
            
        }
.heart-page .level-list li:hover::before{color: var(--primary);
        }
.heart-page .level-list li::before{content: "•";
            color: var(--text-muted);
            
            transition: color 0.2s ease;
        }
.heart-page .level-card__desc{font-size: 15px;
            line-height: 1.6;
            font-weight: 500;
            padding: var(--s-6);
            
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            
            margin-top: auto;
            
            min-height: 190px;
            
            display: flex;
            align-items: center;
            
        }
.heart-page .level-card--head .level-card__desc{background-color: rgba(44, 24, 16, 0.04);
            color: var(--text);
        }
.heart-page .level-card--heart .level-card__desc{background-color: rgba(214, 64, 69, 0.05);
            color: var(--text);
        }
.heart-page .level-list li:last-child{margin-bottom: 0;
        }
.heart-page .levels-transition{text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            padding: var(--s-4);
        }
.heart-page .arrow-down{font-size: 32px;
            color: var(--primary);
            margin-bottom: var(--s-2);
            display: flex;
            justify-content: center;
        }
@media (min-width: 860px){
.heart-page .arrow-down{transform: rotate(-90deg);
                margin-bottom: 0;
            }
}
.heart-page .section--results{background-color: var(--bg);
        }
.heart-page .results-grid{display: grid;
            grid-template-columns: 1fr;
            
            gap: var(--s-6);
            max-width: 900px;
            
            margin: 0 auto;
        }
@media (min-width: 768px){
.heart-page .results-grid{grid-template-columns: 1fr 1fr;
                gap: var(--s-8);
            }
}
.heart-page .result-item{text-align: left;
            opacity: 0;
            transform: translateY(20px);
            display: flex;
            
            gap: var(--s-6);
            align-items: flex-start;
            padding: var(--s-6);
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }
.heart-page .result-item:hover{transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            background: #fff;
            border-color: rgba(214, 64, 69, 0.1);
        }
.heart-page .result-item:hover .result-icon{transform: scale(1.1) rotate(5deg);
            background: rgba(214, 64, 69, 0.1);
        }
.heart-page .result-icon{font-size: 40px;
            
            color: var(--primary);
            flex-shrink: 0;
            
            margin-bottom: 0;
            
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: rgba(214, 64, 69, 0.05);
            border-radius: 50%;
            transition: transform 0.3s ease, background 0.3s ease;
        }
.heart-page .result-content{flex-grow: 1;
        }
.heart-page .result-title{font-family: var(--font-sans);
            
            font-size: 20px;
            font-weight: 700;
            margin-bottom: var(--s-1);
            color: var(--text);
        }
.heart-page .result-text{color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
        }
.heart-page .results-note{max-width: 800px;
            margin: var(--s-8) auto 0;
            text-align: center;
            font-size: 16px;
            color: var(--text-muted);
            background: rgba(214, 64, 69, 0.05);
            padding: var(--s-6);
            border-radius: var(--radius-md);
            border: 1px solid rgba(214, 64, 69, 0.1);
        }
.heart-page .results-note strong{color: var(--primary);
        }
.heart-page .steps-grid{display: grid;
            gap: var(--s-6);
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
.heart-page .step-card{background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: var(--s-6);
            display: flex;
            gap: var(--s-6);
            align-items: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.heart-page .step-card:hover{transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }
.heart-page .step-badge{flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: rgba(44, 24, 16, 0.05);
            
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
.heart-page .step-content{flex: 1;
        }
.heart-page .step-title{font-size: 20px;
            font-family: var(--font-sans);
            margin-bottom: var(--s-2);
            color: var(--primary);
        }
.heart-page .step-text{color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
        }
.heart-page .steps-cta{margin-top: var(--s-10);
            text-align: center;
        }
.heart-page .author-grid{display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-8);
            align-items: center;
        }
@media (min-width: 768px){
.heart-page .author-grid{grid-template-columns: 1fr 1.5fr;
                gap: var(--s-12);
            }
}
.heart-page .author-photo{width: 100%;
            aspect-ratio: 1 / 1.2;
            background-color: var(--secondary);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
        }
.heart-page .author-name{font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: var(--s-2);
            color: var(--text);
        }
.heart-page .author-role{font-size: 16px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: var(--s-6);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.heart-page .author-bio{margin-bottom: var(--s-6);
            color: var(--text);
        }
.heart-page .author-quote{background: rgba(44, 24, 16, 0.03);
            border-left: 4px solid var(--primary);
            padding: var(--s-6);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-style: italic;
            color: var(--text-muted);
            font-size: 18px;
        }
.heart-page .stories-grid{display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-6);
        }
@media (min-width: 768px){
.heart-page .stories-grid{grid-template-columns: repeat(3, 1fr);
            }
}
.heart-page .story-card{background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: var(--s-6);
            display: flex;
            flex-direction: column;
            gap: var(--s-4);
            transition: transform 0.3s ease;
        }
.heart-page .story-card:hover{transform: translateY(-4px);
            border-color: rgba(214, 64, 69, 0.2);
        }
.heart-page .story-header{display: flex;
            align-items: center;
            gap: var(--s-3);
            margin-bottom: var(--s-2);
        }
.heart-page .story-icon{color: var(--primary);
            font-size: 24px;
        }
.heart-page .story-name{font-weight: 700;
            font-family: var(--font-sans);
            font-size: 18px;
            color: var(--text);
        }
.heart-page .story-title{color: var(--primary);
            font-weight: 600;
            font-size: 16px;
            line-height: 1.4;
            min-height: 44px;
            
        }
.heart-page .story-text{font-size: 15px;
            line-height: 1.6;
            color: var(--text-muted);
            font-style: italic;
            background: rgba(0, 0, 0, 0.02);
            padding: var(--s-4);
            border-radius: var(--radius-sm);
        }
.heart-page .pricing-grid{display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-6);
            align-items: start;
        }
@media (min-width: 900px){
.heart-page .pricing-grid{grid-template-columns: repeat(3, 1fr);
            }
}
.heart-page .price-card{background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: var(--s-6);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: transform 0.3s ease, border-color 0.3s ease;
            position: relative;
        }
.heart-page .price-card:hover{transform: translateY(-8px);
            border-color: rgba(214, 64, 69, 0.3);
            box-shadow: var(--shadow-card);
        }
.heart-page .price-card--featured{border: 2px solid var(--primary);
            background: white;
            box-shadow: var(--shadow-sm);
        }
.heart-page .price-badge{position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.heart-page .price-header{text-align: center;
            margin-bottom: var(--s-6);
            border-bottom: 1px solid var(--border);
            padding-bottom: var(--s-6);
        }
.heart-page .price-emoji{font-size: 40px;
            margin-bottom: var(--s-2);
            display: block;
        }
.heart-page .price-name{font-family: var(--font-display);
            font-size: 24px;
            margin-bottom: var(--s-2);
            font-weight: 700;
        }
.heart-page .price-desc{font-size: 14px;
            color: var(--text-muted);
        }
.heart-page .price-features{list-style: none;
            flex: 1;
            
            margin-bottom: var(--s-8);
        }
.heart-page .price-features li{position: relative;
            padding-left: 24px;
            margin-bottom: var(--s-3);
            font-size: 15px;
            line-height: 1.4;
        }
.heart-page .price-features li::before{content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-weight: bold;
        }
.heart-page .price-cost{text-align: center;
            margin-bottom: var(--s-4);
        }
.heart-page .price-old{display: block;
            text-decoration: line-through;
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 4px;
        }
.heart-page .price-new{display: block;
            font-size: 32px;
            font-weight: 700;
            font-family: var(--font-display);
            color: var(--text);
        }
.heart-page .price-cta .button{width: 100%;
        }
.heart-page .price-separator{text-align: center;
            padding-left: 0 !important;
            color: var(--primary);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.05em;
            margin-top: var(--s-4) !important;
            margin-bottom: var(--s-4) !important;
            border-top: 1px solid var(--border);
            padding-top: var(--s-4);
        }
.heart-page .price-separator::before{display: none !important;
        }
.heart-page .faq-grid{display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-6);
            max-width: 800px;
            margin: 0 auto;
        }
.heart-page .faq-item{background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: var(--s-6);
        }
.heart-page .footer{background: #1E1410;
            color: rgba(255, 255, 255, 0.7);
            padding: var(--s-8) 0;
            text-align: center;
            font-size: 14px;
        }
.heart-page .price-separator{font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.05em;
            margin-top: 12px;
            margin-bottom: 8px;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
            list-style: none;
            
            display: block;
            
            text-align: center;
        }
.heart-page .price-features li.price-separator::before{content: none;
            
        }
.heart-page .dotted-link{border-bottom: 1px dotted var(--text);
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: border-color 0.2s;
        }
.heart-page .dotted-link:hover{border-bottom-color: var(--primary);
            color: var(--primary);
        }
.heart-page .footer-logo{color: white;
            font-family: var(--font-display);
            font-size: 24px;
            margin-bottom: var(--s-4);
            display: inline-block;
        }
.heart-page .faq-grid{display: grid;
                    grid-template-columns: 1fr;
                    gap: 16px;
                }
@media (min-width: 768px){
.heart-page .faq-grid{grid-template-columns: 1fr 1fr;
                        align-items: start;
                    }
}
.heart-page .faq-item{background: white;
                    border: 1px solid var(--border);
                    border-radius: 8px;
                    overflow: hidden;
                }
.heart-page .faq-summary{padding: 16px 20px;
                    cursor: pointer;
                    font-weight: 600;
                    color: var(--text);
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    list-style: none;
                    
                }
.heart-page .faq-summary::-webkit-details-marker{display: none;
                }
.heart-page .faq-summary::after{content: '+';
                    font-size: 20px;
                    color: var(--primary);
                    font-weight: 400;
                }
.heart-page details[open] .faq-summary::after{content: '−';
                }
.heart-page .faq-content{padding: 0 20px 20px;
                    color: var(--text-muted);
                    line-height: 1.6;
                    font-size: 15px;
                    border-top: 1px solid transparent;
                }
.heart-page details[open] .faq-content{border-top-color: var(--border-light);
                    margin-top: 8px;
                    padding-top: 12px;
                }

/* Классы вместо инлайн-стилей */
.heart-page .author-photo-img{width:100%;height:100%;object-fit:cover}
.heart-page .bonus-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.heart-page .bonus-icon{font-size:32px;color:var(--primary);flex-shrink:0}
.heart-page .bonus-row{display:flex;align-items:center;gap:12px}
.heart-page .bonus-title{font-family:var(--font-display);font-size:20px;margin-bottom:20px;text-align:center}
.heart-page .card--vip{border-left:4px solid var(--primary)}
.heart-page .detail-gap{margin-bottom:24px}
.heart-page .detail-title{font-weight:700;margin-bottom:8px}
.heart-page .details-title{font-family:var(--font-display);font-size:24px;margin-bottom:24px;text-align:center}
.heart-page .faq-gap{margin-bottom:16px}
.heart-page .final-cta-center{text-align:center;padding-top:0}
.heart-page .final-cta-title{margin-bottom:var(--s-6);max-width:800px;margin-left:auto;margin-right:auto;line-height:1.2}
.heart-page .price-emoji-color{color:var(--primary)}
.heart-page .schedule-card--bonus{background:var(--bg-alt);border:1px solid var(--border);border-radius:12px;padding:24px;margin-bottom:32px}
.heart-page .schedule-card--plain{background:#fff;border:1px solid var(--border);border-radius:12px;padding:24px;margin-bottom:24px}
.heart-page .schedule-card--vip{background:#fff5f5;border:1px solid var(--primary);border-radius:12px;padding:24px;margin-bottom:32px}
.heart-page .schedule-card-title{color:var(--primary);font-family:var(--font-display);font-size:20px;margin-bottom:16px}
.heart-page .schedule-content-width{max-width:800px;margin:0 auto}
.heart-page .schedule-day{margin-bottom:8px}
.heart-page .schedule-intro{text-align:center;margin-bottom:32px;font-size:18px}
.heart-page .schedule-lead{margin-bottom:16px;color:var(--text-muted)}
.heart-page .schedule-list-plain{list-style:none;padding:0}
.heart-page .schedule-note{color:var(--text-muted)}
.heart-page .section--vip-bg{background:var(--bg-alt)}
.heart-page .section-subtitle--strong{margin-top:8px;font-weight:600}
.heart-page .vip-grid-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:var(--s-6)}

/* Плавная прокрутка по якорям */
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}}

/* Первый экран: сердце по центру круга */
.heart-page .hero__heart-shape{top:10px}
@media (min-width: 481px) and (max-width: 960px){
.heart-page .hero__heart-shape,
.heart-page .hero__heart-shape::before,
.heart-page .hero__heart-shape::after{width:92px;height:92px}
.heart-page .hero__heart-shape::before{top:-46px;left:0}
.heart-page .hero__heart-shape::after{left:46px;top:0}
.heart-page .hero__heart-shape{top:22px}
}
@media (max-width: 480px){.heart-page .hero__heart-shape{top:20px}}

/* Слова с дефисом не разрываются */
.heart-page .nowrap{white-space:nowrap}

/* Логотип ведёт на главную */
.heart-page a.header__logo{position:relative;display:inline-block;color:var(--text);text-decoration:none}
.heart-page a.header__logo::before{content:"";position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);height:44px}
.heart-page a.header__logo:hover,
.heart-page a.header__logo:focus-visible{color:var(--text);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:6px;text-decoration-color:rgba(44,24,16,.4)}

/* Блок «Остались вопросы» — тише, чем призыв выше */
.heart-page .section--support{padding:72px 0 0}
.heart-page .support-card{max-width:800px;margin:0 auto;border-top:1px solid rgba(214,64,69,.16);padding:44px 0;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.heart-page .support-text{flex:1 1 300px;min-width:0}
.heart-page .support-title{font-family:var(--font-display);font-size:24px;color:var(--text);margin-bottom:8px}
.heart-page .support-text p{color:var(--text-muted);font-size:17px;line-height:1.55;max-width:620px}
.heart-page .button--quiet{background:transparent;color:var(--primary-hover);border:1.5px solid rgba(214,64,69,.55);font-size:15px;padding:13px 26px;flex-shrink:0}
.heart-page .button--quiet:hover{background:rgba(214,64,69,.06);border-color:var(--primary)}
@media (max-width: 760px){
.heart-page .section--support{padding:56px 0 0}
.heart-page .support-card{flex-direction:column;align-items:center;text-align:center;gap:22px;padding:36px 0}
.heart-page .support-text{flex:0 1 auto}
.heart-page .support-text p{font-size:16px;margin-left:auto;margin-right:auto}
}

/* Первый экран на большом планшете: без пустоты */
@media (min-width: 961px) and (max-width: 1366px) and (min-height: 1000px){
.heart-page .hero{min-height:auto;padding:96px 0 72px}
.heart-page .hero__visual{height:440px}
}

/* Проявление блоков */
.heart-page .reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.heart-page .reveal--in{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){.heart-page .reveal{opacity:1;transform:none;transition:none}}

/* Иконки */
.heart-page .icon{width:1em;height:1em;display:inline-block;vertical-align:-0.125em;fill:currentColor}

/* Подвал */
.heart-page #quantum-footer-lite{margin-top:0}

/* Отступы списков как на боевой странице */
.heart-page ul{margin:0 0 10px}
.heart-page .price-features{margin-bottom:10px;padding-left:20px}
.heart-page .level-list{margin:0 0 10px;padding-left:20px}
.heart-page .schedule-list{margin-bottom:10px}
