@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
    --primary: #4F6144;
    --primary-hover: #435538;
    --secondary: #A3B18A;
    --secondary-light: #EDF0E6;
    --accent: #77896A;
    --dark: #26333A;
    --light-bg: #FAF6EF;
    --card-bg: #FFFFFF;
    --border: #E3DCCF;
    --text-main: #2F3E46;
    --text-muted: #7E8C86;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset standard */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--dark);
    font-weight: 700;
}

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

/* Scroll reveal system */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Fraunces', serif;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

.logo span {
    font-size: 0.8rem;
    font-family: 'Work Sans', sans-serif;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.cta-btn-secondary {
    background-color: var(--secondary-light);
    color: var(--primary-hover);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-secondary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section Home */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem 0;
    background: radial-gradient(circle at 80% 20%, var(--secondary-light) 0%, rgba(255,255,255,0) 50%);
    overflow: hidden;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/3;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 280px;
}

/* Outils Quick Select */
.needs-section {
    padding: 4rem 0;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.need-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.need-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.need-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.need-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.need-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.need-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Grid of Guides/Practices */
.guides-section {
    margin-bottom: 4rem;
}

.guides-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

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

.guide-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.guide-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.guide-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.guide-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guide-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.guide-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Outils Interactifs Block */
.interactive-promo {
    background: linear-gradient(135deg, #435538 0%, #4F6144 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.interactive-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.interactive-promo h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.interactive-promo p {
    color: var(--secondary-light);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.interactive-promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background-color: white;
    color: var(--primary-hover);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-white:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.interactive-decoration {
    position: absolute;
    right: -10%;
    top: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.2) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Page Dynamique Guide */
.guide-header {
    padding: 4rem 0 2rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guide-header-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.guide-header h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.guide-header-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
}

.guide-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 21/9;
}

.guide-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.guide-body-content h2 {
    font-size: 1.85rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-light);
}

.guide-body-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.guide-quote-box {
    background-color: var(--secondary-light);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-hover);
    font-size: 1.15rem;
    font-family: 'Fraunces', serif;
}

.scientific-box {
    background-color: #EDF0E6;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
    display: flex;
    gap: 1rem;
}

.scientific-box-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scientific-box-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Work Sans', sans-serif;
}

.scientific-box-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-details h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.tips-box {
    background-color: #EDF0E6;
    border: 1px dashed #D3DCC4;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.tips-box h3 {
    font-family: 'Work Sans', sans-serif;
    color: #3F5238;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tips-box ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tips-box li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.tips-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F6144;
    font-weight: 700;
}

/* Sidebar widget */
.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Cohérence Cardiaque Outil */
.cc-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3.5rem;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid var(--border);
}

.cc-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cc-mode-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cc-mode-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.respirator-wrapper {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.respirator-bg-circle {
    width: 250px;
    height: 250px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
    transition: transform 5s ease-in-out;
}

.respirator-main-circle {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 119, 182, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    transition: transform 5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations de respiration */
.inhale .respirator-main-circle {
    transform: scale(1.8);
}
.inhale .respirator-bg-circle {
    transform: scale(2.2);
    opacity: 0.5;
}

.exhale .respirator-main-circle {
    transform: scale(1);
}
.exhale .respirator-bg-circle {
    transform: scale(1.1);
    opacity: 0.2;
}

.cc-state-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    height: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cc-timer {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 2rem;
}

.cc-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cc-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cc-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.cc-btn.stop {
    background-color: #E11D48;
}
.cc-btn.stop:hover {
    background-color: #BE123C;
}

/* Comparatifs Page */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comp-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.comp-meta h3 {
    font-size: 1.4rem;
}

.comp-type {
    background-color: var(--secondary-light);
    color: var(--primary-hover);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    margin-top: 0.25rem;
    display: inline-block;
}

.comp-score {
    background-color: #4F6144;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.comp-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.comp-pros h4, .comp-cons h4 {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.comp-pros h4 { color: #15803D; }
.comp-cons h4 { color: #B91C1C; }

.comp-list {
    list-style-type: none;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.comp-list-pro li {
    padding-left: 1.25rem;
    position: relative;
    color: #2F3E46;
}

.comp-list-pro li::before {
    content: "+";
    color: #16A34A;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.comp-list-con li {
    padding-left: 1.25rem;
    position: relative;
    color: #2F3E46;
}

.comp-list-con li::before {
    content: "-";
    color: #DC2626;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.comp-verdict {
    background-color: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.comp-verdict h5 {
    font-size: 0.95rem;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.25rem;
}

.comp-verdict p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Outil Simulateur Stress */
.quiz-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3.5rem;
    max-width: 800px;
    margin: 2rem auto;
    border: 1px solid var(--border);
}

.quiz-progress-bar {
    height: 6px;
    background-color: var(--border);
    border-radius: 50px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background-color: var(--primary);
    width: 0;
    transition: var(--transition);
}

.quiz-question-box h2 {
    font-size: 1.85rem;
    margin-bottom: 2rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-option:hover {
    background-color: var(--secondary-light);
    border-color: var(--primary);
    padding-left: 1.5rem;
}

.quiz-option.selected {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quiz-results-box {
    display: none;
    text-align: center;
}

.quiz-results-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

/* Footer */
.main-footer {
    background-color: #26333A;
    color: #7E8C86;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #26333A;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Work Sans', sans-serif;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-link {
    font-size: 0.95rem;
    color: #7E8C86;
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #26333A;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* Audio Player Widget */
.audio-widget {
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    margin-top: 1rem;
}

.audio-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive fixes */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .guide-layout {
        grid-template-columns: 1fr;
    }
    .interactive-promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* simple burger menu toggle can be implemented */
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .cc-container, .quiz-container {
        padding: 2rem 1rem;
    }
}