/* =========================================================================
   ASTROLOGY PAGE - SCOPED STYLES
   ========================================================================= */
/* =========================================================================
   HERO SECTION - BESPOKE ASTROLOGY
   ========================================================================= */
.hero-astrology {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}
.hero-astrology-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Image side slightly larger */
    gap: var(--space-3xl);
    align-items: center;
}
.hero-astrology-content {
    max-width: 580px;
    opacity: 0;
    animation: fade-in-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}
.hero-credibility {
    display: block;
    margin-bottom: var(--space-lg);
    /* opacity: 0.7; */
    font-style: italic;
}


/* Zodiac Visual & Animation */
.hero-astrology-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fade-in 1.5s ease-out forwards;
}
.zodiac-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px; /* Large size as requested */
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Outer Ring */
.zodiac-outer-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* animation: rotate-slow 60s linear infinite; */
    animation: rotate-slow 4s linear infinite;
    animation-direction: alternate;
    z-index: 1;
    transform-origin: center center;
}

/* Static Inner Center */
.zodiac-inner-center {
    position: relative;
    width: 90%; /* Tuned to fit inside the new ring */
    height: 90%;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0 0 40px rgba(74, 43, 10, 0.1); */
    transform:translate3d(10px, 10px, 10px);
}
.zodiac-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stars */
.zodiac-deco-star {
    position: absolute;
    color: var(--gold-muted);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: pulse-slow 4s ease-in-out infinite;
    z-index: 0;
}
.star-1 { top: 5%; right: 10%; animation-delay: 0s; }
.star-2 { bottom: 10%; left: 5%; animation-delay: 1.5s; font-size: 1rem; }
.star-3 { top: 45%; right: -2%; animation-delay: 3s; font-size: 0.8rem; }

/* Animations */
@keyframes rotate-slow{from{transform: rotate(0deg);transform-origin: center center;}to{transform: rotate(20deg);transform-origin: center center;}}
@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 0.7; transform: scale(1.1); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-astrology-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    .zodiac-wheel-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 991px) {
    .hero-astrology {
        padding-top: 100px;
        height: auto;
        min-height: auto;
    }
    .hero-astrology-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }
    .hero-astrology-content {
        /* order: 2; */
        width: 100%;
        margin-inline: auto;
    }
    .hero-astrology-visual {
        /* order: 1; */
        width: 100%;
        margin-bottom: -20px; /* Pull text closer */
    }
    .zodiac-wheel-wrapper {
        max-width: 450px;
    }
    .hero-actions {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 480px) {
    .zodiac-wheel-wrapper {
        max-width: 340px;
    }
}

/* =========================================================================
   RESPONSIVE BEHAVIOR (GENERAL)
   ========================================================================= */

@media (max-width: 991px) {
    .astrology-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 640px) {
    .astrology-challenges-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .astrology-challenge-card {
        min-height: 260px;
        padding: var(--space-xl) var(--space-xl) var(--space-xl);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .astrology-challenge-card {
        transition: none;
    }

    .astrology-challenge-card:hover {
        transform: none;
    }
}


/* =========================================================================
   COSMIC BENEFITS SECTION - ANIMATED PLANETS
   ========================================================================= */
.cosmic-benefits-section {
    color: #000;
    position: relative;
    overflow: hidden;
    /* padding: 6rem 0; */
}

/* Animated Stars Background */
.cosmic-benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, var(--heading-color) 100%, transparent),
        radial-gradient(1px 1px at 40% 70%, var(--heading-color) 100%, transparent),
        radial-gradient(2px 2px at 60% 20%, var(--heading-color) 100%, transparent),
        radial-gradient(1.5px 1.5px at 80% 60%, var(--heading-color) 100%, transparent);
    background-size: 50% 50%;
    opacity: 0.3;
    animation: cosmic-stars 10s linear infinite;
}
.cosmic-layout .hero-planet-wrap.reused-planet-wrap{position: static;}
@keyframes cosmic-stars {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.cosmic-layout {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(min-width:1440px){
    .cosmic-layout{
        height:700px;
    }
}
/* Central Element (Reused Slider) */
.cosmic-center {
    position: relative;
    width: 320px;
    height: 320px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reused-planet-wrap {
    width: 100% !important;
    height: 100% !important;
}
.cosmic-halo {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    /* border: 1px dashed rgba(0, 0, 0, 0.15); */
    border: 2px dashed rgba(163,106,38, 0.3);
    animation: rotate-slow 40s linear infinite reverse;
    pointer-events: none;
}
.cosmic-halo::after {
    content: '';
    position: absolute;
    inset: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    z-index: -1;
}

/* Points Positioning */
.cosmic-point {
    position: absolute;
    width: 300px;
    text-align: center;
    opacity: 0; 
    animation: fade-in-point 1s ease forwards;
}

.cosmic-point-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}
.cosmic-point-title em { color:var(--gold-muted); }

.cosmic-point-desc {
    font-size: 1.25rem;
    color: var(--heading-color);
    line-height: 1.4;
    text-wrap: balance;
}

/* Dotted Connecting Lines */
.cosmic-line {
    position: absolute;
    border-top: 2px dotted rgba(163,106,38, 0.3);
    z-index: -1;
}

/* Positions (Radial) */
.p3 { 
    top: -40px; left: 50%; 
    transform: translateX(-50%); 
    animation-delay: 0.2s;
}
.p3 .cosmic-line {
    width: 2px; height: 80px; 
    top: 100%; left: 50%;
    border-top: none;
    border-left: 2px dotted rgba(163,106,38, 0.3);
}

.p1 { 
    top: 10%; left: -60px;
    animation-delay: 0.4s;
}
.p1 .cosmic-line {
    width: 100px; top: 100%; left: 100%;
    transform: rotate(30deg); transform-origin: top left;
}

.p2 { 
    top: 10%; right: -60px;
    animation-delay: 0.6s;
}
.p2 .cosmic-line {
    width: 100px; top: 100%; right: 100%;
    transform: rotate(-30deg); transform-origin: top right;
}

.p4 { 
    bottom: 10%; right: -60px;
    animation-delay: 0.8s;
}
.p4 .cosmic-line {
    width: 100px; bottom: 100%; right: 100%;
    transform: rotate(30deg); transform-origin: bottom right;
}

.p5 { 
    bottom: 10%; left: -60px;
    animation-delay: 1s;
}
.p5 .cosmic-line {
    width: 100px; bottom: 100%; left: 100%;
    transform: rotate(-30deg); transform-origin: bottom left;
}

@keyframes fade-in-point {
    to { opacity: 1; }
}

/* Responsive Cosmic */
@media (max-width: 1200px) {
    .cosmic-point { width: 240px; }
    .p1 { left: 0; }
    .p2 { right: 0; }
    .p4 { right: 0; }
    .p5 { left: 0; }
}

@media (max-width: 991px) {
    .cosmic-layout {
        height: auto;
        flex-direction: column;
        gap: var(--space-2xl);
        padding: var(--space-xl) 0;
    }
    .cosmic-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        width: 100%;
        text-align: center;
    }
    .cosmic-point {
        position: relative;
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        transform: none !important;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }
    .cosmic-line { display: none; }
    .cosmic-center { margin-bottom: var(--space-lg); }
    .cosmic-point-title { font-size: 1.5rem; }
}

/* =========================================================================
   TAROT & ASTROLOGY EXPERTISE SECTION
   ========================================================================= */
.tarot-expertise-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: var(--space-3xl) 0;
}
.tarot-expertise-section .about-journey-media{min-height:740px;max-height:740px;background-color:#f9daae;}
.tarot-expertise-section .about-journey-photo{width:100%;}
.tarot-expertise-section .about-journey-media img{object-fit:cover;width:100%;}
.tarot-expertise-inner {
    display: grid;
    min-height: 600px !important;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .tarot-expertise-inner {
        grid-template-columns: 55% 45% !important;
    }
}

@media (max-width: 991px) {
    .tarot-expertise-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Left Column: Text Content */
.tarot-expertise-content {
    opacity: 0;
    animation: fade-in-left 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tarot-expertise-content .section-eyebrow {
    margin-bottom: var(--space-md);
}

.tarot-expertise-content .heading-lg {
    margin-bottom: var(--space-lg);
}

.tarot-expertise-desc {
    margin-bottom: var(--space-xl);
    color: var(--ink-muted);
    line-height: 1.7;
}

/* Bullet Points - 2x2 Grid Layout */
.tarot-expertise-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
}

.tarot-bullet-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
}

.tarot-bullet-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 168, 103, 0.15) 0%, rgba(163, 106, 38, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--gold-muted);
    margin-bottom: var(--space-xs);
}

.tarot-bullet-content h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

.tarot-bullet-content p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* Right Column: Visual */
.tarot-expertise-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fade-in-right 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tarot-expertise-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    background: #0a0a0a;
    border-radius: 0 150px 0 0;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(44, 36, 24, 0.15),
        0 0 0 1px rgba(196, 163, 90, 0.1);
}

.tarot-expertise-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.tarot-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(174, 120, 55, 0.1) 0%, rgba(10, 10, 10, 0.2) 100%);
    pointer-events: none;
}

/* Responsive Tarot */
@media (max-width: 991px) {
    .tarot-expertise-content {
        text-align: center;
    }

    .tarot-expertise-content .section-eyebrow {
        justify-content: center;
    }

    .tarot-expertise-desc {
        max-width: 600px;
        margin-inline: auto;
        margin-bottom: var(--space-xl);
    }

    .tarot-expertise-bullets {
        max-width: 600px;
        margin-inline: auto;
    }

    .tarot-bullet-item {
        text-align: center;
        align-items: center;
    }

    .tarot-expertise-image-wrap {
        max-width: 400px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .tarot-expertise-bullets {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 600px) {
    .tarot-expertise-image-wrap {
        border-radius: 0 100px 0 0;
        max-width: 320px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tarot-expertise-content,
    .tarot-expertise-visual {
        animation: none;
        opacity: 1;
    }
}

/* =========================================================================
   STATISTICS SECTION
   ========================================================================= */
.stats-section {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
}

/* Subtle cosmic background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(196, 163, 90, 0.15) 100%, transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(196, 163, 90, 0.1) 100%, transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(196, 163, 90, 0.08) 100%, transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(196, 163, 90, 0.12) 100%, transparent);
    background-size: 200% 200%;
    opacity: 0.6;
    animation: cosmic-drift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cosmic-drift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        /* max-width: 320px; */
        margin: 0 auto;
    }
}

/* Stat Item */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: fade-in-up-stat 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stat-item[data-stat-delay="0"] { animation-delay: 0.2s; }
.stat-item[data-stat-delay="100"] { animation-delay: 0.4s; }
.stat-item[data-stat-delay="200"] { animation-delay: 0.6s; }
.stat-item[data-stat-delay="300"] { animation-delay: 0.8s; }

@keyframes fade-in-up-stat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Circular Stat Element */
.stat-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 168, 103, 0.08) 0%, rgba(163, 106, 38, 0.03) 70%, transparent 100%);
    border-radius: 50%;
    display: flex;
    gap: var(--space-sm);
    flex-direction:column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-circle .logo-sun{height:100%;width:100%;background-image: url('../img/body-bg-zodiac.png');opacity:.25;}
@media(max-width:767px){
    .stat-circle .logo-sun{opacity:.125;}
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(163, 106, 38, 0.25);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);pointer-events: none;
}

.stat-circle::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(163, 106, 38, 0.15);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);pointer-events: none;
}

.stat-item:hover .stat-circle {
    background: radial-gradient(circle, rgba(227, 168, 103, 0.15) 0%, rgba(163, 106, 38, 0.08) 70%, transparent 100%);
    transform: scale(1.05);
}

.stat-item:hover .stat-circle::before {
    border-color: rgba(163, 106, 38, 0.4);
    box-shadow: 0 0 30px rgba(163, 106, 38, 0.15);pointer-events: none;
}

.stat-circle-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Stat Number */
.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-plus,
.stat-percent {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-muted);
    opacity: 0.9;
    line-height: 1;
}

/* Stat Label */
.stat-label {
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    max-width: 150px;
}

/* Responsive Stats */
@media (max-width: 991px) {
    .stat-circle {
        width: 180px;
        height: 180px;
    }
    .stat-number { font-size: 2.5rem; }
    .stat-plus, .stat-percent { font-size: 1.75rem; }
    .stat-label { font-size: 0.9375rem; }
}

@media (max-width: 600px) {
    .stat-circle {
        width: 160px;
        height: 160px;
    }
    .stat-number { font-size: 2.125rem; }
    .stat-plus, .stat-percent { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; max-width: 70%;}
}

/* Zodiac Overlay */
.zodiac-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.6;
}

.zodiac-circle {
    width: 100%;
    height: 100%;
    color: var(--gold-muted);
    animation: rotate-zodiac 60s linear infinite;
}

@keyframes rotate-zodiac {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*

/* =========================================================================
   UTILITIES & SECTION HEADERS
   ========================================================================= */
#offerings {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-4xl);
}
.section-header-wrap {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
}
.section-description {
    color: var(--ink-muted);
}
.pricing-header .text-body-lg {
    max-width: 600px;
    margin: var(--space-md) auto 0;
    color: var(--ink-muted);
}
.astrology-pricing-card .astrology-challenge-desc {
    max-width: none;
}

/* =========================================================================
   MOBILE UI OPTIMIZATIONS (â‰¤768px)
   ========================================================================= */
@media (max-width: 768px) {
    /* Global Typography Scaling */
    .heading-xl { font-size: clamp(2.25rem, 10vw, 3rem); line-height: 1.1; }
    .heading-lg { font-size: clamp(1.85rem, 8vw, 2.5rem); line-height: 1.2; }
    .heading-md { font-size: 1.5rem; }
    
    .section {
        padding-block: clamp(3rem, 10vw, 4rem);
    }

    /* Section Headers */
    .section-header-wrap {
        margin-bottom: var(--space-xl);
        padding-inline: var(--container-pad);
    }
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Hero Section Refinement */
    .hero-astrology {
        padding-top: 100px;
        padding-bottom: var(--space-2xl);
    }
    .hero-astrology-content {
        padding-inline: var(--container-pad);
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: var(--space-md);
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-title {
        margin-bottom: var(--space-md);
    }
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--space-xl);
    }
    .zodiac-wheel-wrapper {
        /* max-width: 320px; */
        margin-inline: auto;
    }
    .zodiac-inner-center{
        transform: translate3d(3px, 5px, 10px);
    }

    /* Challenges Cards */
    .astrology-challenge-card {
        min-height: auto;
        padding: var(--space-xl) var(--space-lg);
        border-radius: 20px;
    }
    .astrology-challenge-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    .astrology-challenge-desc {
        max-width: 100%;
        font-size: 0.9375rem;
    }

    /* How It Works - Stacking */
    /* .how-steps {
        display: flex;
        flex-direction: column;
        gap: var(--space-lg);
        padding-inline: var(--container-pad);
    }
    .how-step {
        text-align: left;
        align-items: flex-start;
        padding: var(--space-xl) var(--space-lg);
        min-height: auto;
        border-radius: 20px;
    }
    .how-step-number {
        font-size: 2.25rem;
        margin-bottom: var(--space-xs);
        opacity: 0.2;
    } */

    /* Cosmic Benefits Refinement */
    .cosmic-center {
        width: 240px;
        height: 240px;
    }
    .cosmic-point-title {
        font-size: 1.25rem;
    }
    .cosmic-point-desc {
        font-size: 1rem;
    }

    /* Tarot Expertise */
    .tarot-expertise-section {
        padding-bottom: 0;
    }
    .tarot-expertise-content {
        padding-inline: var(--container-pad);
    }
    .tarot-expertise-desc {
        font-size: 1rem;
    }
    .tarot-expertise-bullets {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: left;
    }
    .tarot-bullet-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: var(--space-md);
    }
    .tarot-bullet-icon {
        width: 44px;
        height: 44px; /* Touch friendly size */
        margin-bottom: 0;
    }

    /* Pricing Section */
    .astrology-pricing-grid {
        gap: var(--space-xl);
        padding-inline: var(--container-pad);
    }
    .astrology-pricing-card {
        min-height: auto;
        padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    }
    .astrology-pricing-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        top: -14px;
    }
    .astrology-pricing-amount {
        font-size: 2.5rem;
    }

    /* Testimonials Override */
    .testimonials-column-right {
        padding-top: 0 !important;
    }
    .testimonials-bento {
        padding-inline: var(--container-pad);
        gap: var(--space-lg);
    }
    .testimonial-bento-card {
        padding: var(--space-lg);
    }
    .testimonial-bento-quote {
        font-size: 0.9rem;
    }

    /* Final CTA */
    .final-cta-container {
        border-radius: 0;
        border-inline: none;
    }
    .final-cta-content {
        padding: var(--space-3xl) var(--container-pad);
    }
    .final-cta-visual {
        min-height: 280px;
    }
    .final-cta-image-wrap {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-title{font-size: clamp(2rem, 12vw, 2.5rem);}
    .zodiac-wheel-wrapper{max-width:100%;}
    .section-header-wrap h2{font-size: 1.75rem;}
}

@media (max-width: 991px) {
    .about-journey-media,.tarot-expertise-section .about-journey-media{
        border-radius: 0;
        min-height: 450px;
        max-height:450px;
    }
}