@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #080510;
    --bg-card: rgba(21, 16, 38, 0.7);
    --bg-card-hover: rgba(30, 23, 54, 0.85);
    --primary: #FF9933; /* Saffron */
    --primary-gradient: linear-gradient(135deg, #FF9933 0%, #FF5E00 100%);
    --gold: #FFD700;
    --gold-gradient: linear-gradient(135deg, #FFE066 0%, #E6B800 100%);
    --text-main: #F5F5FA;
    --text-muted: #A09BB0;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 153, 51, 0.25);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF5E00;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #FFF;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Base Layout & Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(8, 5, 16, 0.75);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 65px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--border-glow);
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.app-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 290px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1c1926;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255, 153, 51, 0.15);
    overflow: hidden;
    position: relative;
}

.app-screen-content {
    width: 100%;
    height: 100%;
    background: #0F0B1E;
    display: flex;
    flex-direction: column;
    padding: 15px;
    position: relative;
}

/* Hero Mockup Internals */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.app-logo-small {
    width: 25px;
    height: 25px;
    border-radius: 5px;
}

.app-logo-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--primary);
}

.app-greeting-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.app-greeting-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.app-greeting-card p {
    font-size: 0.7rem;
}

.app-features-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    flex: 1;
}

.mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.mini-card:hover {
    background: rgba(255, 153, 51, 0.05);
    border-color: rgba(255, 153, 51, 0.2);
}

.mini-card span {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.mini-card h5 {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.mini-card p {
    font-size: 0.55rem;
}

.app-nav-mini {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Features Tabs Section */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: rgba(255, 153, 51, 0.1);
    color: var(--primary);
    border-color: rgba(255, 153, 51, 0.3);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    background-color: var(--bg-card-hover);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.06);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: #FFF;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* Ask Krishna Interactive Area */
.krishna-sandbox {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.chat-device-frame {
    width: 100%;
    max-width: 420px;
    height: 520px;
    background: #0D091B;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,153,51,0.05);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-device-header {
    background: rgba(21, 16, 38, 0.9);
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.krishna-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe399 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.4);
}

.chat-header-info h4 {
    font-size: 1rem;
    line-height: 1.2;
}

.chat-header-info span {
    font-size: 0.75rem;
    color: #10B981; /* Green online */
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-header-info span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-bubble.krishna {
    background: rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.15);
    color: var(--text-main);
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--primary-gradient);
    color: #FFF;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.chat-typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    display: none;
    gap: 4px;
}

.chat-typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.chat-pre-questions {
    padding: 1rem;
    background: rgba(8, 5, 16, 0.5);
    border-top: 1px solid var(--border-color);
}

.chat-pre-questions h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-family: var(--font-body);
}

.questions-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.q-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    text-align: left;
    font-size: 0.82rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.q-btn:hover {
    background: rgba(255, 153, 51, 0.1);
    border-color: rgba(255, 153, 51, 0.3);
}

/* Sadhana Progress Interactive Area */
.sadhana-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sadhana-stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

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

.stats-title h3 {
    font-size: 1.4rem;
}

.stats-date {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sadhana-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: rgba(255, 153, 51, 0.04);
    border-color: rgba(255, 153, 51, 0.2);
}

.checkbox-visual {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: transparent;
    transition: var(--transition-smooth);
}

.checklist-item.checked .checkbox-visual {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFF;
}

.checklist-item.checked span {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* App Download Call to Action Section */
.download-section {
    position: relative;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.07) 0%, transparent 60%);
    z-index: -1;
}

.download-card {
    background: linear-gradient(135deg, rgba(30, 23, 54, 0.8) 0%, rgba(13, 9, 27, 0.9) 100%);
    border: 1px solid rgba(255, 153, 51, 0.15);
    border-radius: 40px;
    padding: 5rem 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.download-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.download-card p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: #FFF;
    padding: 0.8rem 2.2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.store-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.15);
}

.store-btn span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.store-btn strong {
    font-size: 1.1rem;
    display: block;
    line-height: 1.2;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.8rem 2rem;
    font-size: 1rem;
}

.faq-item.active {
    background: var(--bg-card-hover);
    border-color: rgba(255, 153, 51, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer styling */
footer {
    background: #040209;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-gradient);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* Legal Pages Styling (privacy.html & terms.html) */
.legal-hero {
    padding: 160px 0 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-box h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-box h2:first-of-type {
    margin-top: 0;
}

.legal-box p {
    margin-bottom: 1.5rem;
}

.legal-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-box li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .krishna-sandbox, .sadhana-preview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sadhana-preview-grid {
        direction: rtl; /* Puts stats card first visually on tablet/mobile */
    }
    .sadhana-stats-card, .sadhana-preview-info {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0B0813;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .legal-box {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}
