/* ==========================================================================
   RelationshipGuru - Premium Soulmate Reading & Numerology App CSS
   Theme: Cosmic Mysticism, Sleek Dark Glassmorphism, Elegant Gold Accents
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    --bg-primary: #0a0518;
    --bg-secondary: #12092c;
    --cosmic-indigo: #1b103c;
    --cosmic-purple: #3b1d60;
    --cosmic-violet: #6b21a8;
    --nebula-pink: #d946ef;
    --mystic-gold: #f59e0b;
    --mystic-gold-pale: #fde68a;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --glass-bg: rgba(18, 9, 44, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-focus: rgba(245, 158, 11, 0.4);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(107, 33, 168, 0.2);
    --shadow-gold-glow: 0 0 20px rgba(245, 158, 11, 0.3);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- Cosmic Nebula Background Effect --- */
.stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(27, 16, 60, 0.4) 0%, rgba(10, 5, 24, 1) 100%),
                url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?q=80&w=1920&auto=format&fit=crop') center center / cover no-repeat;
    opacity: 0.85;
    z-index: -3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.nebula-overlay-1 {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
    animation: drift 25s ease-in-out infinite alternate;
}

.nebula-overlay-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -2;
    pointer-events: none;
    animation: drift 35s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

/* --- Layout --- */
.app-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* --- Header --- */
.app-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--mystic-gold);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    animation: magic-spin 6s linear infinite;
}

#app-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--mystic-gold) 70%, var(--nebula-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes magic-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* --- Main Workspace --- */
.main-content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
    flex-grow: 1;
    transition: grid-template-columns 0.3s ease;
}

.main-content.reading-active {
    grid-template-columns: 1fr;
}

.main-content.reading-active .control-panel {
    display: none;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

/* --- Glassmorphic Cards --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-card-nested {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 1rem;
}

/* --- Forms Styling --- */
.panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.panel-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-primary);
}

.card-icon {
    font-size: 1.4rem;
    color: var(--mystic-gold);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    font-size: 0.85rem;
}

.gold-icon {
    color: var(--mystic-gold);
}

.optional-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
select {
    background: rgba(10, 5, 24, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: var(--text-muted);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
select:focus {
    outline: none;
    border-color: var(--mystic-gold);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.15), inset 0 0 10px rgba(245, 158, 11, 0.05);
    background: rgba(10, 5, 24, 0.8);
}

/* Custom styling for date input icon color in modern browsers */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Option classes */
select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Sacred/Advanced Key Collapsible details */
.api-details {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.api-details summary {
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
    transition: background 0.3s;
}

.api-details summary:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.api-content {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.2);
}

.api-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    display: block;
}

/* --- Premium Glow Buttons --- */
.glow-button {
    position: relative;
    background: linear-gradient(135deg, var(--cosmic-violet) 0%, #7e22ce 50%, var(--nebula-pink) 100%);
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2rem;
    color: white;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(107, 33, 168, 0.4);
    margin-top: 0.5rem;
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.glow-button:active {
    transform: translateY(0);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
    z-index: 1;
}

.glow-button:hover .button-glow {
    transform: translate(-50%, -50%) scale(2);
}

/* --- Results Sanctuary States --- */
.results-sanctuary {
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.result-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
}

.result-state.active {
    display: flex;
}

/* Idle State / Cosmic Chart Compass */
.mystical-compass-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 2rem;
}

.compass-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(245, 158, 11, 0.2);
    border-radius: 50%;
}

.ring-outer {
    width: 160px;
    height: 160px;
    animation: rotate-clock 40s linear infinite;
    border-color: rgba(245, 158, 11, 0.15);
    border-style: solid;
    border-width: 1px;
}

.ring-middle {
    width: 120px;
    height: 120px;
    animation: rotate-anticlock 25s linear infinite;
    border-style: dotted;
    border-width: 2px;
}

.ring-inner {
    width: 80px;
    height: 80px;
    border-style: solid;
    border-color: rgba(217, 70, 239, 0.25);
    animation: rotate-clock 15s linear infinite;
}

.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: var(--mystic-gold);
    text-shadow: var(--shadow-gold-glow);
}

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

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

.results-sanctuary h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--mystic-gold-pale);
    letter-spacing: 0.02em;
}

.idle-text {
    max-width: 500px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Loading State / Celestial Orb Loading Animation */
.cosmic-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.orb-pulsar {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--nebula-pink) 0%, var(--cosmic-violet) 70%);
    border-radius: 50%;
    box-shadow: 0 0 35px var(--nebula-pink);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.orbit-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--mystic-gold);
    box-shadow: 0 0 10px var(--mystic-gold);
}

.p1 {
    top: 45px;
    left: 45px;
    animation: orbit-x 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.p2 {
    top: 45px;
    left: 45px;
    animation: orbit-y 3.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    background-color: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}

.p3 {
    top: 45px;
    left: 45px;
    animation: orbit-z 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    background-color: #a7f3d0;
    box-shadow: 0 0 10px #a7f3d0;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 20px rgba(217, 70, 239, 0.5); }
    100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 45px rgba(217, 70, 239, 0.9); }
}

@keyframes orbit-x {
    0% { transform: rotate(0deg) translateX(55px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(55px) rotate(-360deg); }
}

@keyframes orbit-y {
    0% { transform: rotate(120deg) translateX(45px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(45px) rotate(-480deg); }
}

@keyframes orbit-z {
    0% { transform: rotate(240deg) translateX(65px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(65px) rotate(-600deg); }
}

.pulse-text {
    animation: loading-pulse 1.8s ease-in-out infinite;
}

.loading-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.progress-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--mystic-gold) 0%, var(--nebula-pink) 100%);
    box-shadow: 0 0 10px var(--nebula-pink);
    border-radius: 10px;
    transition: width 0.4s ease;
}

@keyframes loading-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* --- Completed State Presentation Workspace --- */
#state-completed {
    display: none;
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    justify-content: flex-start;
}

#state-completed.active {
    display: flex;
}

.report-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-badge-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mystic-gold);
    font-size: 1.2rem;
    box-shadow: inset 0 0 10px rgba(245, 158, 11, 0.1);
}

.badge-info h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0px;
    text-align: left;
}

.badge-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.action-buttons-group {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.action-btn:active {
    transform: translateY(0);
}

.reset-btn {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.reset-btn:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

/* Split workspace styling */
.reading-workspace {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1150px) {
    .reading-workspace {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .reading-sheets-container {
        width: 100%;
    }
}

/* --- Golden Framed Sketch Card --- */
.sketch-frame-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.golden-frame {
    position: relative;
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 30%, #78350f 50%, #b45309 70%, #f59e0b 100%);
    padding: 16px; /* Thick decorative frame */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8),
                0 0 25px rgba(245, 158, 11, 0.25),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.golden-frame:hover {
    transform: scale(1.02);
}

/* Inside Frame Inner-shadow / border */
.frame-glass {
    position: relative;
    width: 100%;
    height: calc(100% - 24px); /* Room for plaque at bottom */
    background: #0d061f;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid #1e1104; /* Inside wooden groove */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.9);
}

.frame-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.frame-glass img.loaded {
    opacity: 1;
}

/* Shimmer/auric glow over the image */
.auric-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(245,158,11,0.08) 0%, rgba(217,70,239,0.06) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    mix-blend-mode: color-dodge;
}

/* Label Plaque */
.frame-label {
    width: 100%;
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    padding-top: 8px;
    border-top: 1px solid rgba(245, 158, 11, 0.3);
}

/* Image loading overlay inside the frame */
.sketch-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #110927;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.sketch-loader-overlay i {
    font-size: 2rem;
    color: var(--mystic-gold);
}

.sketch-loader-overlay span {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: loading-pulse 1.5s infinite;
}

.sketch-download-btn {
    max-width: 320px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.2);
}

/* Nested details profiles styling */
.soulmate-profile-panel {
    width: 100%;
    max-width: 320px;
}

.soulmate-profile-panel h4 {
    font-family: var(--font-serif);
    color: var(--mystic-gold-pale);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.profile-attributes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
}

.profile-attributes li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255,255,255,0.04);
    padding-bottom: 0.25rem;
}

.profile-attributes li span.attr-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-attributes li span.attr-val {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

/* --- Right Reading Sheet Pane --- */
.reading-sheets-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Numerology Widgets Grid */
.numerology-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .numerology-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75px;
}

.widget-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.widget-value {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mystic-gold);
}

.widget-small {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Reading Tabs Nav Layout */
.reading-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    scrollbar-width: auto;
    scrollbar-color: var(--mystic-gold) rgba(255, 255, 255, 0.02);
}

/* Styling custom scrollbar for tabs */
.reading-tabs::-webkit-scrollbar {
    height: 8px;
}

.reading-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.reading-tabs::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--mystic-gold) 0%, var(--nebula-pink) 100%);
    border-radius: 4px;
    box-shadow: 0 0 5px var(--mystic-gold);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: var(--mystic-gold-pale);
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(217, 70, 239, 0.1) 100%);
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Text Content Presentation (Markdown-like parser styling) */
.active-sheet-content {
    background: rgba(10, 5, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.75rem;
    min-height: 300px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.active-sheet-content::-webkit-scrollbar {
    width: 6px;
}

.active-sheet-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

/* Inner Report Markdown Formatting Styles */
.markdown-body h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--mystic-gold-pale);
    margin-top: 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    padding-bottom: 0.5rem;
}

.markdown-body p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    opacity: 0.95;
    text-align: justify;
}

.markdown-body strong {
    color: var(--mystic-gold);
    font-weight: 600;
}

.markdown-body em {
    color: #c084fc;
}

.markdown-body ul, 
.markdown-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.markdown-body li {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.markdown-body blockquote {
    border-left: 4px solid var(--mystic-gold);
    background: rgba(245, 158, 11, 0.05);
    padding: 0.85rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Numerology math card styles generated by parser */
.numerology-calc-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: var(--font-sans);
}

.numerology-calc-box .calc-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.numerology-calc-box .calc-steps {
    font-family: monospace;
    font-size: 1rem;
    color: var(--mystic-gold-pale);
    font-weight: bold;
}

/* --- Footer --- */
.app-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 768px) {
    .app-container {
        padding: 1rem;
    }
    
    #app-title {
        font-size: 2.2rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Accordion Component Styles */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(107, 33, 168, 0.08);
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.15);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.1rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--mystic-gold-pale);
}

.acc-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.acc-caret {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .acc-caret {
    transform: rotate(180deg);
    color: var(--mystic-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 2500px;
}

.accordion-content-inner {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   Sacred Package Builder & Checkout Funnel Upgrades
   ========================================================================== */

/* 1. Package Grid & Base Tier Cards */
.package-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.package-card-label {
    display: block;
    cursor: pointer;
}

.package-card-label input[type="radio"] {
    display: none; /* Hide default radio */
}

.package-card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.package-card-inner:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.package-card-label input[type="radio"]:checked + .package-card-inner {
    background: rgba(107, 33, 168, 0.15);
    border-color: var(--mystic-gold);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15), inset 0 0 10px rgba(245, 158, 11, 0.05);
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.pkg-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-card-label input[type="radio"]:checked + .package-card-inner .pkg-title {
    color: var(--mystic-gold-pale);
}

.pkg-price {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mystic-gold);
}

.pkg-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.highlight-card {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.02);
}

/* 2. Add-on Upgrades Panel */
.upsell-options-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.upsell-checkbox-card {
    display: block;
    cursor: pointer;
}

.upsell-checkbox-card input[type="checkbox"] {
    display: none; /* Hide default checkbox */
}

.upsell-card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.upsell-card-inner:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.upsell-checkbox-card input[type="checkbox"]:checked + .upsell-card-inner {
    background: rgba(217, 70, 239, 0.08);
    border-color: var(--nebula-pink);
    box-shadow: 0 0 12px rgba(217, 70, 239, 0.15);
}

.upsell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.upsell-price {
    color: var(--nebula-pink);
    font-weight: 700;
}

.upsell-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* 3. Dynamic Price Indicator */
.order-value-container {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08) 0%, rgba(107, 33, 168, 0.12) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold-glow);
}

.val-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.val-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mystic-gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    font-family: var(--font-sans);
}

/* 4. Checkout Modal overlay */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 2, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.checkout-modal-overlay.active {
    display: flex;
}

.checkout-modal-card {
    max-width: 500px;
    width: 100%;
    position: relative;
    border-color: rgba(245, 158, 11, 0.3) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.15) !important;
    text-align: center;
    animation: modal-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modal-slide-up {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.close-modal-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--text-primary);
}

.modal-cosmic-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: slow-rotate 15s linear infinite;
}

.modal-icon-center {
    font-size: 1.8rem;
    color: var(--mystic-gold);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.checkout-modal-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* 5. Checkout Summary & Pricing */
.modal-summary-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.modal-summary-panel h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--mystic-gold-pale);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.modal-items-list {
    list-style: none;
    margin-bottom: 0.75rem;
}

.modal-items-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-items-list li:last-child {
    border-bottom: none;
}

.modal-total-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.modal-total-bar #modal-total-price {
    font-size: 1.4rem;
    color: var(--mystic-gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/* 6. Urgency Counter */
.urgency-counter-box {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #fca5a5;
    font-weight: 600;
}

.pulse-red {
    color: #ef4444;
    animation: glow-pulse-red 1.2s ease-in-out infinite alternate;
}

@keyframes glow-pulse-red {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.checkout-timer {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.05em;
}

/* 7. Action Buttons */
.modal-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.checkout-pay-btn {
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.bypass-btn {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.85rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.bypass-btn:hover {
    border-color: var(--mystic-gold);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.payment-trust-badges {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.payment-trust-badges .divider {
    opacity: 0.3;
}

@keyframes slow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Post-Purchase Upsell Panel --- */
.post-purchase-upsell-panel {
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--shadow-gold-glow);
    transition: all 0.3s ease;
    text-align: left;
}

.post-purchase-upsell-panel h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--mystic-gold-pale);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-purchase-upsell-panel p.upsell-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-purchase-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.post-purchase-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-purchase-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.post-purchase-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.post-purchase-card-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-purchase-card-price {
    font-weight: 700;
    color: var(--mystic-gold);
    font-size: 1.1rem;
}

.post-purchase-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.post-purchase-upgrade-btn {
    background: linear-gradient(135deg, var(--mystic-gold) 0%, #d97706 100%);
    color: #0d061f;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

}

/* Trust, Testimonials & FAQ Section Styling */
.trust-faq-container {
    margin-top: 3.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    background: rgba(15, 7, 36, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-item {
    background: rgba(10, 5, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(10, 5, 24, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 1.25rem;
    margin-top: 0;
}

/* ==========================================
   🌅 Premium Landing Hero Section Styling
   ========================================== */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
    border-radius: 20px;
    background: rgba(15, 7, 36, 0.45);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-golden-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 480px;
}

.hero-golden-frame:hover {
    transform: scale(1.02);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 158, 11, 0.2);
}

.hero-golden-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-auric-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    pointer-events: none;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-pink {
    color: #ec4899;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 5, 24, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.hero-feature-card:hover {
    background: rgba(10, 5, 24, 0.55);
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.hero-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--mystic-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-feature-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.hero-feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-cta-btn {
    align-self: flex-start;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

/* Responsive adjustment for tablet/mobile */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .hero-text-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.1rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    
    .hero-cta-btn {
        align-self: center;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}

