/* ==================================================================
   ASTROLOGY.CSS — уникальные стили
   (Общие: хедер, футер, кнопки, .section-title, .section-divider,
   .section-subtitle, .direction-card, .grid-3, .grid-2, .reveal,
   @keyframes fadeUp, .final-cta — в common.css)
   ================================================================== */

/* ===== ГЕРОЙ ===== */
.hero {
    padding: 120px 0 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('obl.jpg');
    background-size: cover;
    background-position: center;
    color: #000;
}
.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
}
.hero-content { position: relative; padding-top: 0; text-align: left; width: 100%; }
.hero-content .pre-title { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.3s forwards; margin-bottom: 12px; text-align: left; }
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
    white-space: nowrap;
    text-align: left;
}
.hero-content .subhead {
    font-family: var(--font-text);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 4px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.5s forwards;
    text-align: left;
}
.hero-content .subhead strong { color: var(--color-gold-dark); }
.hero-content .tagline {
    font-family: var(--font-text);
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    max-width: 700px;
    margin: 48px 0 36px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.7s forwards;
    text-shadow: none;
    text-align: left;
}
.hero-content .btn-group-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.1s forwards;
    margin-bottom: 16px;
}
.hero-content .micro-cta {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.3s forwards;
    text-align: left;
}
.hero-content .micro-cta a {
    color: var(--color-gold-dark);
    font-weight: 600;
    border-bottom: 1px dashed var(--color-gold);
    transition: border-color 0.3s;
}
.hero-content .micro-cta a:hover { border-bottom-style: solid; border-color: var(--color-gold-dark); }

.hero-visual { display: none; }

/* ===== BOOK-SECTION (4 раздела книги) ===== */
.book-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-smooth);
    scroll-margin-top: 100px;
}
.book-section:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -8px rgba(212, 175, 55, 0.15), 0 8px 16px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.85);
}
.book-section .text-col { flex: 2; }
.book-section .img-col { flex: 1; max-width: 220px; }
.book-section .img-col img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease;
}
.book-section:hover .img-col img { transform: scale(1.02); }
.book-section .gold-title { color: var(--color-gold-dark); font-weight: 700; }
.book-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-main);
    margin-bottom: 8px;
}
.book-section .outcome {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-200);
}

/* ===== GOLD DOTS (уникальный список с золотыми маркерами) ===== */
.gold-dots {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.gold-dots li {
    padding: 4px 0 4px 28px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-main);
}
.gold-dots li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--color-gold-dark);
    font-size: 1.4rem;
    line-height: 1.2;
}

/* ===== SERVICE-CARD-NO-BORDER ===== */
.service-card-no-border {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.service-card-no-border .img-col {
    flex: 0 0 240px;
    max-width: 240px;
}
.service-card-no-border .img-col img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.service-card-no-border .text-col { flex: 1; }
.service-card-no-border .text-col .subhead {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.service-card-no-border .text-col .desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.service-card-no-border .text-col .gold-dots { margin: 12px 0; }
.service-card-no-border .text-col .italic {
    font-style: italic;
    color: var(--color-gray-600);
    font-size: 0.9rem;
    margin: 8px 0;
}

/* ===== TWO-COL-BLOCK ===== */
.two-col-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0 20px;
    align-items: stretch;
}
.two-col-block .col {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}
.two-col-block .col:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.two-col-block .col .gold-title { color: var(--color-gold-dark); font-weight: 700; }
.two-col-block .col .gift-text {
    font-size: 1rem;
    line-height: 1.8;
}
.two-col-block .col .gift-text .highlight { font-weight: 700; color: var(--color-gold-dark); }
.two-col-block .col .price-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}
.two-col-block .col .price-row .price-item { text-align: center; }
.two-col-block .col .price-row .price-item .label {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}
.two-col-block .col .price-row .price-item .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold-dark);
}
.two-col-block .col .price-row .price-item .note {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}
.two-col-block .col .btn-gold {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    min-width: 180px;
    height: 48px;
}
.two-col-block .col .col-text { flex: 1; display: flex; flex-direction: column; }
.two-col-block .col .col-text .btn-gold { margin-top: auto; }

/* ===== FORMAT-ITEM / FORMAT-TITLE ===== */
.format-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.format-item:last-child { margin-bottom: 0; }
.format-item .icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.format-item .icon.gold { color: var(--color-gold-dark); }
.format-item .text {
    font-size: 0.95rem;
    line-height: 1.6;
}
.format-item .text strong {
    font-weight: 700;
    text-decoration: underline;
}
.format-item .text .price {
    font-weight: 700;
    margin-top: 8px;
    color: var(--color-gold-dark);
}
.format-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--color-gold-dark);
}

/* ===== WHY-FULL (аккордеон) ===== */
.why-full {
    background: var(--color-gold-muted);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin: 40px 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}
.why-full:hover { border-color: var(--color-gold-light); }
.why-full .why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.why-full .why-header h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}
.why-full .why-header .arrow {
    font-size: 1.4rem;
    transition: transform 0.3s var(--ease-smooth);
    color: var(--color-gold-dark);
    flex-shrink: 0;
}
.why-full .why-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}
.why-full.open .why-body { max-height: 800px; }
.why-full.open .why-header .arrow { transform: rotate(180deg); }
.why-full .why-body-inner { padding-top: 20px; }
.why-full .item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.why-full .item:last-child { border-bottom: none; }
.why-full .item strong { display: block; font-weight: 700; }
.why-full .item em { font-style: italic; color: var(--color-gray-600); }
.why-full .why-result {
    margin-top: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* ===== BONUS-ITEM ===== */
.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.bonus-item:last-child { margin-bottom: 0; }
.bonus-item .icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.bonus-item .icon.gold { color: var(--color-gold-dark); }
.bonus-item .text {
    font-size: 0.95rem;
    line-height: 1.6;
}
.bonus-item .text strong {
    font-weight: 700;
    text-decoration: underline;
    display: block;
    margin-bottom: 4px;
}
.bonus-item .text .italic { font-style: italic; color: var(--color-gold-dark); }

/* ===== SECTION-BUTTONS ===== */
.section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
    justify-content: center;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: left; gap: 60px; }
    .hero-content .btn-group-primary { justify-content: flex-start; }
    .hero-content .tagline { margin-left: 0; margin-right: 0; }
    .two-col-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.8rem; white-space: normal; }
    section { padding: 80px 0; }

    .book-section {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .book-section .img-col {
        max-width: 180px;
        order: -1;
        margin-bottom: 16px;
        flex: 0 0 auto;
        width: 100%;
    }
    .book-section .text-col { width: 100%; max-width: 100%; }
    .book-section .gold-dots { text-align: left; }

    .service-card-no-border {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    .service-card-no-border .img-col {
        max-width: 200px;
        margin: 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .service-card-no-border .text-col { width: 100%; }
    .service-card-no-border .gold-dots { text-align: left; }

    .two-col-block { grid-template-columns: 1fr; gap: 24px; }
    .two-col-block .col { padding: 24px 20px; }
    .why-full { padding: 16px 20px; }
    .why-full .why-header h4 { font-size: 1rem; }
    .section-buttons .btn-small { min-width: 100%; }
    .bonus-item .text { font-size: 0.9rem; }
    .bonus-item .icon { font-size: 1.4rem; }
    .format-item .text { font-size: 0.9rem; }
    .format-item .icon { font-size: 1.4rem; }
    .bonus-box { padding: 16px 16px !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .two-col-block .col { padding: 16px 14px; }
    .book-section { padding: 16px 14px; }
    .book-section .img-col { max-width: 140px; }
    .service-card-no-border .img-col { max-width: 140px; }
    .gold-dots li { font-size: 0.85rem; }
    .book-section p { font-size: 0.9rem; }
    .book-section .outcome { font-size: 0.9rem; }
    .bonus-item .text { font-size: 0.85rem; }
    .format-item .text { font-size: 0.85rem; }
    .why-full { padding: 12px 14px; }
    .why-full .why-header h4 { font-size: 0.95rem; }
    .final-cta .sub { font-size: 1rem; }
}