:root {
    --parchment: #EDEAE7;
    --saddle-brown: #804E20;
    --espresso: #422217;
    --coffee-bean: #281F19;
    --sunlit-clay: #ECB465;
    --pitch-black: #0B0402;
    
    --text-primary: var(--coffee-bean);
    --text-secondary: var(--espresso);
    --accent: var(--sunlit-clay);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --section-spacing: 100px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--parchment);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--coffee-bean);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Base Styles */
section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    background: var(--saddle-brown);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 20px rgba(128, 78, 32, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    background: var(--espresso);
    box-shadow: 0 15px 30px rgba(66, 34, 23, 0.3);
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--sunlit-clay);
    color: var(--coffee-bean);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(128, 78, 32, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(128, 78, 32, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(128, 78, 32, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

/* Cosmic Decorative Elements */
:root {
    --cosmic-size-lg: 800px;
    --cosmic-size-md: 500px;
    --cosmic-size-sm: 300px;
}

.celestial-wheel, .numerology-grid, .number-constellation, .mandala-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.star-sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ECB465' d='M12 2L14.5 9.5L22 12L14.5 14.5L12 22L9.5 14.5L2 12L9.5 9.5L12 2Z' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
    animation: twinkle 4s ease-in-out infinite;
}

/* Numerology Grid (Lo Shu Style) */
.numerology-grid {
    width: min(var(--cosmic-size-md), 60vw);
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M33.3 0 L33.3 100 M66.6 0 L66.6 100 M0 33.3 L100 33.3 M0 66.6 L100 66.6' stroke='%23804E20' stroke-opacity='0.08' stroke-width='0.2'/%3E%3Ctext x='16' y='20' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E4%3C/text%3E%3Ctext x='50' y='20' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E9%3C/text%3E%3Ctext x='83' y='20' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E2%3C/text%3E%3Ctext x='16' y='53' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E3%3C/text%3E%3Ctext x='50' y='53' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E5%3C/text%3E%3Ctext x='83' y='53' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E7%3C/text%3E%3Ctext x='16' y='86' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E8%3C/text%3E%3Ctext x='50' y='86' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E1%3C/text%3E%3Ctext x='83' y='86' font-family='serif' font-size='8' fill='%23804E20' fill-opacity='0.1'%3E6%3C/text%3E%3C/svg%3E");
}

/* Number Constellation */
.number-constellation {
    width: min(var(--cosmic-size-md), 70vw);
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='20' font-size='4' fill='%23ECB465' fill-opacity='0.15'%3E1%3C/text%3E%3Ctext x='80' y='15' font-size='3' fill='%23ECB465' fill-opacity='0.12'%3E7%3C/text%3E%3Ctext x='45' y='85' font-size='5' fill='%23ECB465' fill-opacity='0.18'%3E9%3C/text%3E%3Ctext x='70' y='60' font-size='2' fill='%23ECB465' fill-opacity='0.1'%3E3%3C/text%3E%3Ctext x='20' y='75' font-size='3' fill='%23ECB465' fill-opacity='0.12'%3E5%3C/text%3E%3Ccircle cx='11' cy='18' r='0.5' fill='%23ECB465' fill-opacity='0.1'/%3E%3Ccircle cx='81' cy='13' r='0.5' fill='%23ECB465' fill-opacity='0.1'/%3E%3Cpath d='M11 18 L45 85 M45 85 L81 13' stroke='%23ECB465' stroke-opacity='0.05' stroke-width='0.1'/%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}


/* Celestial Map (Planetary lines) */
.celestial-map {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' stroke='%23ECB465' stroke-opacity='0.05' stroke-width='0.1' fill='none'/%3E%3Ccircle cx='50' cy='50' r='30' stroke='%23ECB465' stroke-opacity='0.03' stroke-width='0.1' fill='none'/%3E%3Cpath d='M50 5 L50 95 M5 50 L95 50' stroke='%23ECB465' stroke-opacity='0.05' stroke-width='0.1'/%3E%3Ccircle cx='15' cy='30' r='1' fill='%23ECB465' fill-opacity='0.1'/%3E%3Ccircle cx='85' cy='70' r='1.5' fill='%23ECB465' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* Cosmic Dust Particles */
.cosmic-dust {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(128, 78, 32, 0.08) 1px, transparent 0);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* New: Sacred Geometry Texture */
.sacred-geometry-texture {
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 A40 40 0 1 0 90 50 A40 40 0 1 0 50 10' fill='none' stroke='%23804E20' stroke-opacity='0.4' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23804E20' stroke-opacity='0.3' stroke-width='0.3' fill='none'/%3E%3Cpath d='M50 10 L50 90 M10 50 L90 50 M21.7 21.7 L78.3 78.3 M78.3 21.7 L21.7 78.3' stroke='%23804E20' stroke-opacity='0.2' stroke-width='0.2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    display: block;
}

/* New: Floating Number Pattern */
.number-drift {
    position: absolute;
    inset: 0;
    min-height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ctext x='20' y='30' font-family='serif' font-size='16' fill='%23804E20' fill-opacity='0.15'%3E3%3C/text%3E%3Ctext x='150' y='40' font-family='serif' font-size='14' fill='%23804E20' fill-opacity='0.1'%3E7%3C/text%3E%3Ctext x='80' y='120' font-family='serif' font-size='18' fill='%23804E20' fill-opacity='0.2'%3E1%3C/text%3E%3Ctext x='40' y='170' font-family='serif' font-size='12' fill='%23804E20' fill-opacity='0.1'%3E9%3C/text%3E%3Ctext x='170' y='160' font-family='serif' font-size='14' fill='%23804E20' fill-opacity='0.15'%3E5%3C/text%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    display: block;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateSlowCenter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateBack {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes twinkle {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@media (max-width: 768px) {
    .hero-cosmos-bg {
        width: 160%;
        opacity: 0.1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 20px 0 80px;
    background: linear-gradient(135deg, rgba(245, 242, 239, 0.7) 0%, rgba(237, 234, 231, 0.7) 100%), url('assets/numer.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.celestial-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.celestial-left {
    left: -50px;
}

.celestial-right {
    right: -50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 180, 101, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero .tag {
    background: var(--espresso);
    color: white;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-attention-grabber {
    font-family: var(--font-heading);
    color: var(--saddle-brown);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px; /* ~120% */
    text-align: center;
    color: #050505;
    margin-bottom: 30px;
    max-width: 950px;
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--sunlit-clay);
    color: white;
    padding: 2px 12px;
    border-radius: 6px;
    display: inline-block;
}

.hero-image {
    perspective: 1000px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 650px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cosmos-bg {
    position: absolute;
    width: 170%; /* Slightly larger for better framing of the stack */
    aspect-ratio: 1/1;
    background-image: url('assets/cosmos.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1; /* Very subtle watermark */
    z-index: -1;
    animation: rotateSlowCenter 300s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    filter: sepia(1) saturate(0.5) brightness(0.8); /* Warm, engraved feel */
}

.hero-image {
    perspective: 1000px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 650px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cosmos-bg {
    position: absolute;
    width: 140%; /* Adjusted for single image framing */
    aspect-ratio: 1/1;
    background-image: url('assets/cosmos.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12; 
    z-index: -1;
    animation: rotateSlowCenter 300s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    filter: sepia(1) saturate(0.5) brightness(0.8);
}

.report-mockup {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.hero .subheadline {
    font-size: 1.25rem; /* Increased from 0.9rem for desktop */
    color: var(--espresso);
    margin-bottom: 40px;
    max-width: 800px; /* Slightly wider for better text flow with larger font */
    font-weight: 500;
    line-height: 1.5; /* Better readability for longer text */
}

@media (max-width: 768px) {
    .hero .subheadline {
        font-size: 0.9rem; /* Keep original size for mobile */
        line-height: 1.4;
    }
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-checkmarks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 25px;
    padding: 14px 28px;
    background: rgba(128, 78, 32, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(128, 78, 32, 0.1);
    transition: all 0.3s ease;
}

.cta-checkmarks:hover {
    transform: translateY(-2px);
}

.cta-checkmarks span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--coffee-bean);
    font-weight: 700;
}

.cta-checkmarks i {
    color: #2e7d32;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
}

@media (max-width: 768px) {
    .cta-checkmarks {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .cta-checkmarks span {
        font-size: 0.85rem;
    }
}

.report-mockup {
    width: 100%;
    max-width: 300px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.report-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.cta-group {
    margin-bottom: 24px;
}

.cta-meta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--espresso);
}

.cta-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-meta span::before {
    content: '✔';
    color: var(--saddle-brown);
}

.scarcity {
    color: #d32f2f;
    font-weight: 700;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* CTA Urgency Subtext */
.cta-urgency {
    color: #d32f2f;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: flash 2s infinite;
}

.cta-urgency i {
    font-size: 1.1rem;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
    .cta-urgency {
        font-size: 0.85rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

/* Problem Section */
.problem {
    background-color: var(--parchment);
    color: var(--coffee-bean);
    padding-top: 20px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.problem-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 3px solid var(--sunlit-clay);
    border-radius: 40px;
    padding: 30px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.problem h2 {
    color: var(--sunlit-clay);
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    line-height: 1.4;
    background: rgba(236, 180, 101, 0.25);
    padding: 15px 20px 15px 45px;
    border-radius: 15px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
    position: relative;
}

.problem-item::before {
    content: '•';
    color: #000;
    font-size: 1.5rem;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.problem-item:hover {
    transform: translateX(10px);
    background: rgba(236, 180, 101, 0.35);
}

.problem-truth {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1;
    font-size: 0.9rem;
    color: #333;
}

.text-highlight {
    color: var(--saddle-brown);
    font-weight: 800;
}

/* Solution Section */
.solution {
    background-color: white;
    padding-top: 50px;
}

.solution {
    background-color: #fff;
    padding: 40px 0;
}

.solution h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    color: var(--espresso);
}

.solution-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
    background: white;
    border: 1px solid rgba(128, 78, 32, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.solution-item:last-child:nth-child(odd) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: calc(50% - 7.5px); /* Match the width of a single column item minus half the gap */
}

@media (max-width: 640px) {
    .solution-item:last-child:nth-child(odd) {
        width: 100%;
    }
}

.solution-item:hover {
    border-color: var(--sunlit-clay);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--parchment);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saddle-brown);
    font-size: 1.1rem;
}

.solution-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--coffee-bean);
    font-weight: 700;
    line-height: 1.2;
}

.solution-item p {
    font-size: 0.85rem;
    color: var(--espresso);
    line-height: 1.3;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .solution-list {
        gap: 10px;
    }
    
    .solution-item {
        padding: 15px 10px;
    }
    
    .solution-item h3 {
        font-size: 0.9rem;
    }
    
    .solution-item p {
        font-size: 0.75rem;
    }
}


/* Inside Section */
.inside {
    background: linear-gradient(135deg, rgba(251, 249, 247, 0.8) 0%, rgba(245, 242, 239, 0.8) 100%), url('assets/numer.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 5px;
}

.inside h2.section-title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    color: var(--coffee-bean);
}

.inside-layout {
    display: grid;
    gap: 40px; /* Reduced from 80px */
    align-items: center; /* Centered for better vertical balance */
        padding-top: 50px;

}

/* Vibration Wheel Styles */
.vibration-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vibration-wheel {
    position: relative;
    width: 240px;
    height: 240px;
    background: #1a0f0a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(236, 180, 101, 0.1);
    border: 1px solid rgba(236, 180, 101, 0.15);
    overflow: hidden;
}

.cosmos-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    animation: rotateCosmos 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.vibration-cosmos-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.5) hue-rotate(340deg) brightness(0.8);
}

@keyframes rotateCosmos {
    from { transform: rotate(0deg) scale(1.2); }
    to { transform: rotate(360deg) scale(1.2); }
}

.wheel-center {
    position: relative;
    z-index: 5;
    text-align: center;
}

.vibration-label {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 5px;
    font-weight: 500;
}

.vibration-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--sunlit-clay);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 25px rgba(236, 180, 101, 0.6);
}

.orbit-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateWheel 40s linear infinite;
    z-index: 6;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: -14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(calc(var(--i) * 40deg)) translateY(-95px) rotate(calc(var(--i) * -40deg));
}

.orbit-item span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(236, 180, 101, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    background: rgba(26, 15, 10, 0.6);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-item:hover span {
    background: var(--sunlit-clay);
    color: #fff;
    transform: scale(1.1);
}

.wheel-halo {
    position: absolute;
    width: 105%;
    height: 105%;
    border: 1px solid rgba(236, 180, 101, 0.2);
    border-radius: 50%;
    animation: pulseHalo 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseNumber {
    0%, 100% { transform: scale(1); text-shadow: 0 0 25px rgba(236, 180, 101, 0.6); }
    50% { transform: scale(1.05); text-shadow: 0 0 40px rgba(236, 180, 101, 0.8); }
}

.vibration-number {
    animation: pulseNumber 3s ease-in-out infinite;
}

@keyframes rotateWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseHalo {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

@media (max-width: 640px) {
    .vibration-wheel {
        width: 280px;
        height: 280px;
    }
    .vibration-number {
        font-size: 3.8rem;
    }
    .orbit-item {
        transform: rotate(calc(var(--i) * 40deg)) translateY(-115px) rotate(calc(var(--i) * -40deg));
    }
    .orbit-item span {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vibration-wheel {
        width: 240px;
        height: 240px;
    }
    .vibration-number {
        font-size: 3.2rem;
    }
    .orbit-item {
        transform: rotate(calc(var(--i) * 40deg)) translateY(-95px) rotate(calc(var(--i) * -40deg));
    }
    .orbit-item span {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

/* Detail Items Styles Redux */
.book-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Premium Mockup Showcase Redesign */
.report-mockup-showcase {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-layers {
    position: relative;
    width: 100%;
    max-width: 280px; /* Scaled down for height reduction */
    height: 500px; /* Reduced from 620px */
}

.mockup-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures 9:16 images fill the frame */
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.main-mockup {
    width: 85%;
    height: 85%;
    z-index: 3;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(-2deg);
}

.interior-mockup {
    width: 80%;
    height: 80%;
    z-index: 2;
    top: 48%;
    left: 42%;
    transform: translate(-10%, -40%) rotate(10deg);
    opacity: 0.8;
}

.report-mockup-showcase:hover .main-mockup {
    transform: translate(-50%, -55%) rotate(-1deg);
}

.report-mockup-showcase:hover .interior-mockup {
    transform: translate(-25%, -45%) rotate(8deg);
}

.glamour-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 180, 101, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

.mockup-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--saddle-brown);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.badge-text {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.badge-sub {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 4px;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .mockup-layers {
        height: 380px; /* Reduced from 450px */
        max-width: 215px;
    }
    
    .mockup-badge {
        right: -10px;
        bottom: 20px;
        transform: rotate(0) scale(0.85);
    }
}


/* Detail Items Redesigned as Cards */
.inside-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.inside-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 15px 15px; /* Reduced padding */
    background: #f1ede9; /* Light parchment/cream */
    border: 1px solid var(--sunlit-clay); /* Gold/Brown border */
    border-radius: 4px;
    transition: all 0.3s ease;
}




.detail-icon {
    font-size: 2rem;
    color: var(--coffee-bean);
    margin-bottom: 15px;
    opacity: 0.8;
}

.detail-info h3 {
    font-size: 1.1rem;
    color: var(--coffee-bean);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.detail-info p {
    font-size: 0.85rem;
    color: var(--espresso);
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .inside-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vibration-showcase {
        order: -1;
    }
}

@media (max-width: 640px) {
    .inside-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }



    .inside-detail-item {
        padding: 15px 10px;
        align-items: center;
        text-align: center;
    }

    .detail-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .detail-info h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .detail-info p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-top: 5px;
        opacity: 0.6;
    }
}

/* Report Preview Section */
.report-preview {
    position: relative;
    background-color: var(--coffee-bean);
    padding-top: 0px;
    padding-bottom: 5px;
    color: white;
    z-index: 5;
}

/* Celestial Curve Divider - The 'Premium' Transition */
.report-preview::before {
    content: '';
    position: absolute;
    top: -59px; /* Seamless fit */
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--coffee-bean);
    clip-path: ellipse(80% 100% at 50% 100%);
    pointer-events: none;
}

.preview-header {
    text-align: center;
    margin-bottom: 0px;
}

.preview-header .section-title {
    color: white;
    margin-bottom: 0px;
    line-height: 1 !important;
}

.preview-header .section-subtitle {
    color: var(--sunlit-clay); 
    font-size: 0.95rem;
    margin-top: 2px;
    font-weight: 500;
    padding-bottom: 30px;
}

.timeline-container {
    padding: 0;
    position: relative;
    z-index: 2;
}

.timeline-header {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 5px;
}

.timeline-header h3 {
    color: var(--sunlit-clay);
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.timeline-header p {
    color: #d5d5d5;
    font-size: 0.85rem;
}

/* Month Selector */
.month-selector-wrapper {
    position: relative;
    margin-bottom: 15px;
    border-top: 1px solid rgba(236, 180, 101, 0.1);
    border-bottom: 1px solid rgba(236, 180, 101, 0.1);
    padding: 8px 0;
}

.month-selector {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.month-selector::-webkit-scrollbar {
    display: none;
}

.month-btn {
    flex: 0 0 110px;
    background: #1e1713;
    border: 1px solid #4a3a30;
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.month-btn i {
    font-size: 1.2rem;
    color: var(--sunlit-clay);
}

.month-btn .m-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.month-btn .m-status {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}

.month-btn .m-status.high { background: #2d5a27; color: #a8e6cf; }
.month-btn .m-status.moderate { background: #2c3e50; color: #d5dbdb; }
.month-btn .m-status.stable { background: var(--saddle-brown); color: var(--sunlit-clay); }

.month-btn .m-desc {
    font-size: 0.7rem;
    color: #a0a0a0;
}

.month-btn:hover {
    background: #3d2f26;
    transform: translateY(-5px);
}

.month-btn.active {
    background: var(--sunlit-clay);
    border-color: var(--sunlit-clay);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.month-btn.active i, 
.month-btn.active .m-name,
.month-btn.active .m-desc {
    color: var(--espresso);
}

.month-btn.active .m-status {
    background: var(--espresso);
    color: var(--sunlit-clay);
}

/* Intelligent Forecast Dashboard - Single Row 4-Column */
.forecast-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(43, 31, 25, 0.4);
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(236, 180, 101, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.report-page-marker {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--sunlit-clay);
    opacity: 0.4;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.forecast-card {
    background: rgba(30, 23, 19, 0.8);
    border: 1px solid rgba(236, 180, 101, 0.1);
    border-radius: 18px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.forecast-card.roadmap {
    background: #fffdf5;
    color: var(--espresso);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.forecast-card.roadmap .report-page-marker {
    color: var(--espresso);
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-title-row i {
    color: var(--sunlit-clay);
    font-size: 1.1rem;
}

.card-title-row h4 {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sunlit-clay);
    white-space: nowrap;
}

.forecast-card.roadmap h4 {
    color: var(--espresso);
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: normal;
}

.roadmap-header p {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.personal-year-box {
    background: #fdf2de;
    padding: 20px;
    border-radius: 15px;
    margin: 10px 0;
    text-align: center;
    border: 1px solid rgba(193, 141, 69, 0.1);
}

.py-number {
    font-size: 3.5rem; /* Slightly smaller to fit 4 cols */
    color: #8c5d25;
    margin: 5px 0;
    line-height: 1;
}

.py-desc {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.key-label {
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--espresso);
}

.key-months-grid {
    display: flex;
    gap: 5px;
}

.key-month-pill {
    flex: 1;
    background: white;
    padding: 8px 4px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.km-name {
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
}

.km-type {
    display: block;
    font-size: 0.6rem;
    opacity: 0.6;
}

.forecast-card ul {
    list-style: none;
    padding: 0;
}

.forecast-card ul li {
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
    color: #e0e0e0;
}

.energy-status-bar {
    background: rgba(238, 248, 255, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

.energy-insight {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.4;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

/* Legend */
.forecast-legend {
    background: rgba(30, 23, 19, 0.6);
    border-radius: 12px;
    padding: 15px 25px;
    margin-top: 20px;
}

.legend-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--sunlit-clay);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.legend-item strong {
    white-space: nowrap;
}

.legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-item .dot.high { background: #2d5a27; }
.legend-item .dot.moderate { background: #2c3e50; }
.legend-item .dot.stable { background: var(--saddle-brown); }
.legend-item .dot.caution { background: #943126; }

@media (max-width: 991px) {
    .forecast-dashboard {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .month-selector {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .month-btn {
        flex: 0 0 calc(33.33% - 8px); 
        padding: 15px 5px;
        min-width: 80px;
    }

    .month-btn .m-name { font-size: 0.85rem; }
    .month-btn .m-status { font-size: 0.55rem; padding: 1px 6px; }
    .month-btn .m-desc { font-size: 0.65rem; display: block; text-align: center; }

    .forecast-dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .report-page-marker {
        text-align: center;
    }

    .energy-status-bar {
        justify-content: center;
    }

    .energy-insight {
        text-align: center;
    }
    
    .py-number {
        font-size: 3rem;
    }

    .legend-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .month-btn {
        flex: 0 0 calc(33.33% - 8px);
    }
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: var(--coffee-bean);
    position: relative;
    border-top: 1px solid #3d2f26; /* Subtle divider from preview section */
}

.trust .section-title {
    margin-bottom: 60px;
    text-align: center;
    color: white; /* Ensure visibility on dark background */
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #251c17; /* Solid nearly black brown to match preview */
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    border: 1px solid #3d2f26;
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: #322720; /* Solid button background from preview */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--sunlit-clay);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--sunlit-clay);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: var(--saddle-brown);
    color: white;
    transform: translateY(-5px);
}

.trust-info h3 {
    font-size: 1.8rem;
    color: var(--sunlit-clay); /* Solid gold */
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.trust-info p {
    font-size: 0.9rem;
    color: #e0e0e0; /* Solid light grey */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: #3d2f26; /* Solid dark brown divider */
}

@media (max-width: 1024px) {
    .trust-grid {
        flex-wrap: wrap;
        padding: 30px;
    }
    .stat-divider {
        display: none;
    }
    .trust-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 640px) {
    .trust {
        padding: 60px 0;
    }
    .trust-grid {
        gap: 20px;
        padding: 20px;
    }
    .trust-item {
        flex: 1 1 100%; /* Change to 100% or keep 2 per row? Let's try 2 per row for attraction */
        flex: 1 1 45%;
    }
    .trust-info h3 {
        font-size: 1.4rem;
    }
    .trust-info p {
        font-size: 0.75rem;
    }
}

/* Testimonials */
.testimonials {
    background: white;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--parchment);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--saddle-brown);
}

/* Pricing Section */
.pricing {
    background: var(--espresso);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sun-cosmos-bg {
    display: none;
}

.mystic-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='%23804E20' opacity='0.5'/%3E%3Cpath d='M20 0 L20 40 M0 20 L40 20' stroke='%23804E20' stroke-width='0.1' opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3Cpath d='M50 50 m-40 0 a40 40 0 1 0 80 0 a40 40 0 1 0 -80 0' stroke='%23804E20' stroke-width='0.05' fill='none' opacity='0.1'/%3E%3Cpath d='M50 10 L90 50 L50 90 L10 50 Z' stroke='%23804E20' stroke-width='0.05' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 800px 800px;
    background-position: center;
}

/* Minimalistic Pricing Card Redesign */
.pricing-card {
    background: #ffffff;
    color: var(--coffee-bean);
    max-width: 900px;
    margin: 40px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-header {
    background: #fdfaf7;
    padding: 20px 30px; /* Even tighter */
    text-align: center;
    border-bottom: 1px solid #eee;
}

.best-value {
    display: inline-block;
    background: var(--sunlit-clay);
    color: var(--coffee-bean);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.4rem; /* Balanced punch */
    margin-bottom: 2px;
    line-height: 1;
    color: var(--coffee-bean);
}

.strikethrough {
    text-decoration: line-through;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    padding: 20px 40px; /* Tighter padding */
    gap: 20px;
    align-items: center;
}

.benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.benefit-list li {
    font-size: 0.9rem; /* Slightly smaller for density */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align price to right */
    gap: 15px;
    color: var(--espresso);
    margin-bottom: 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05); /* Subtle row feel */
    padding-bottom: 8px;
}

.benefit-price {
    font-weight: 700;
    color: var(--saddle-brown);
    opacity: 0.7;
}

.benefit-list li i {
    color: var(--sunlit-clay);
    font-size: 1.2rem;
}

.price-cta-block {
    background: #fdfaf7;
    padding: 15px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(236, 180, 101, 0.3); /* Softer gold border */
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); /* Internal depth */
}

/* Custom Strikethrough & Price Style */
.final-offer-badge {
    margin-bottom: 20px;
    text-align: center;
}

.offer-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--espresso);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 2.5rem; /* Large and clear */
    font-weight: 900;
    color: var(--espresso);
    opacity: 0.3;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* The custom horizontal cut through */
.old-price::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    top: 50%;
    height: 4px; /* Bold cut */
    background: var(--espresso);
    transform: translateY(-50%);
}

.new-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--saddle-brown);
    font-family: 'Poppins', sans-serif;
}

.offer-subline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--espresso);
    opacity: 0.6;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--saddle-brown);
    color: white;
    text-decoration: none;
    padding: 14px 25px; /* More compact height */
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 8px; /* Reduced from 15px */
}

.cta-btn:hover {
    background: var(--espresso);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--espresso);
    opacity: 0.6;
}

.pricing-trust-badges i {
    color: var(--saddle-brown);
    margin-right: 4px;
}

@media (max-width: 640px) {
    .pricing-trust-badges {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .pricing-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .pricing-content {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-list li {
        font-size: 1rem;
    }
}

/* Luxury Mentor Card Redesign */
.mentor-card-container {
    background: #fffcf8; /* Soft parchment white */
    border: 5px solid var(--sunlit-clay); /* Outer frame */
    border-radius: 40px;
    padding: 30px 20px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mentor-tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 10;
}

.mentor-glamour-aura {
    position: relative;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.isolation-bg {
    position: absolute;
    width: 240%;
    height: auto;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.mentor-main-portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--sunlit-clay);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mentor-main-portrait img {
    width: 110%; /* Slightly zoomed */
    height: 110%;
    object-fit: cover;
    margin-left: -5%;
}

.mentor-details-centered {
    position: relative;
    z-index: 3;
}

.mentor-name-lg {
    font-size: 2.2rem;
    color: var(--espresso);
    margin-bottom: 5px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.about {
    padding: var(--section-spacing) 0;
    position: relative;
    padding-bottom: 10px;
    padding-top: 50px;
}

.mentor-subs {
    font-size: 0.95rem;
    color: var(--saddle-brown);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.mentor-stat-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-tag-box {
    background: var(--espresso);
    padding: 12px 20px;
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stat-tag-box:hover {
    transform: translateY(-5px);
    background: var(--coffee-bean);
}

.tag-val {
    display: block;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.tag-lbl {
    display: block;
    color: var(--sunlit-clay);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mentor-card-container {
        padding: 25px 15px;
        margin: 20px auto;
        border-radius: 20px;
    }
    
    .mentor-tagline {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .mentor-name-lg {
        font-size: 1.6rem;
    }
    
    .mentor-main-portrait {
        width: 120px;
        height: 120px;
    }

    .mentor-subs {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .stat-tag-box {
        min-width: 110px;
        padding: 8px 12px;
    }
}

/* FAQ */
.faq {
    background: var(--parchment);
    padding-top: 50px;
    padding-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--espresso);
}

/* Responsive */
@media (max-width: 1024px) {
    .celestial-bg {
        width: 150px;
        opacity: 0.15;
    }
    .celestial-left { left: -30px; }
    .celestial-right { right: -30px; }
    .hero h1 {
        font-size: 22px;
        line-height: 30px;
    }
    .hero .container {
        grid-template-columns: 1fr;
    }
    .inside-content, .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-spacing {
        padding: 60px 0;
    }
}

/* WhatsApp Testimonials Carousel */
.whatsapp-testimonials {
    padding: 80px 0;
    background: var(--parchment);
    overflow: hidden;
}

.whatsapp-carousel {
    display: flex;
    overflow: hidden;
    padding: 20px 0 60px;
    position: relative;
    width: 100%;
}

.whatsapp-track {
    display: flex;
    gap: 40px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.whatsapp-track:hover {
    animation-play-state: paused;
}

.whatsapp-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.whatsapp-card img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 3 - 40px * 3)); }
}

@media (max-width: 768px) {
    .whatsapp-card {
        flex: 0 0 280px;
    }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 3 - 40px * 3)); }
    }
}

/* Sticky CTA Styles */
.sticky-cta {
    display: block; /* Always available, visibility controlled by .visible class */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(40, 31, 25, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(236, 180, 101, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    text-align: center;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.sticky-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    width: 100%;
    padding: 14px 30px;
    background: var(--saddle-brown);
    color: white;
    text-decoration: none;
    border-radius: 50px; /* More modern rounded look */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(128, 78, 32, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-cta-btn:hover {
    background: var(--espresso);
    transform: scale(1.02);
}

/* Ensure body has padding to accommodate the sticky bar */
body {
    padding-bottom: 90px;
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 15px 20px;
    }
    
    .sticky-cta-btn {
        max-width: 100%;
        font-size: 1rem;
        padding: 16px;
        border-radius: 12px;
    }
    
    body {
        padding-bottom: 110px;
    }
}
