/* ====================================
   Healthy Habit Academy - FIXED PROPERLY
   ==================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --success: #10b981;
    --warning: #ef4444;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* HEADER - FIXED PROPERLY */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 45px;
    width: auto;
}

/* MOBILE MENU TOGGLE - BULLETPROOF */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    display: block;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--bg-light);
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: white;
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-large:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.6);
}

.btn-block {
    display: block;
    width: 100%;
}

.hero .btn-primary,
.hero .btn-secondary,
.cta-section .btn,
.cta-section .btn-large {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover,
.cta-section .btn:hover,
.cta-section .btn-large:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-title .highlight {
    color: white;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    font-weight: 700;
    min-width: 200px;
}

.hero-cta .btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Topics Section */
.topics {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.topic-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.topic-card p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.topic-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-link:hover {
    gap: 0.75rem;
}

/* Featured Review */
.featured-review {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.review-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
    border: 1px solid var(--border-light);
}

.review-text h2 {
    margin-bottom: 1rem;
}

.review-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.review-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

.highlight-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: var(--bg-white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 1.5rem;
}

.mission-content > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.value {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.value h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* REVIEW PAGE - FIXED PROPERLY THIS TIME */
.review-hero {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.review-hero h1 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stars {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-number {
    font-weight: 700;
    font-size: 1.125rem;
}

.review-count {
    opacity: 0.9;
    font-size: 0.9rem;
}

.last-updated {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Quick Summary */
.quick-summary {
    padding: 2.5rem 0;
    background: white;
}

.summary-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    max-width: 1200px;
    margin: 0 auto;
}

.summary-box h2 {
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.verdict {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

/* REVIEW CONTENT - SIMPLE SINGLE COLUMN ON DESKTOP */
.review-content {
    padding: 3rem 0;
    background: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-grid {
    display: block;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.75rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.35rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

/* Sidebar - AT THE END AFTER CONTENT */
.sidebar {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.rating-card {
    background: var(--primary);
    color: white;
    text-align: center;
    border: none;
}

.rating-card h3 {
    color: white;
}

.rating-display {
    margin: 1.25rem 0;
}

.big-rating {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stars-large {
    display: block;
    color: var(--accent);
    font-size: 1.75rem;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Lists */
.benefit-list,
.side-effects-list,
.caution-list,
.alternative-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li,
.side-effects-list li,
.caution-list li,
.alternative-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
}

.caution-list li::before,
.side-effects-list li::before {
    content: '!';
    position: absolute;
    left: 0.25rem;
    color: var(--warning);
    font-weight: 700;
    font-size: 1.125rem;
}

.alternative-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid,
.candidate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.benefit-card,
.candidate-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.benefit-card h4,
.candidate-card h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* Testimonials */
.testimonial {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}

.testimonial p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-section,
.cons-section {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 10px;
}

.pros-section h3 {
    color: var(--success);
}

.cons-section h3 {
    color: var(--warning);
}

.pros-list,
.cons-list {
    list-style: none;
    margin-top: 1.25rem;
}

.pros-list li,
.cons-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.5rem;
}

.cons-list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--warning);
    font-weight: 700;
    font-size: 1.5rem;
}

/* CTA Box */
.cta-box {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.disclaimer-small {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-item {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-light);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.takeaway-list,
.related-list {
    list-style: none;
}

.takeaway-list li,
.related-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.takeaway-list li:last-child,
.related-list li:last-child {
    border-bottom: none;
}

.takeaway-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Contact Page */
.page-hero {
    background: var(--primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: white;
    font-size: 1.125rem;
    opacity: 0.95;
}

.contact-content {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-method h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-method a {
    color: var(--primary);
    font-weight: 600;
    word-break: break-all;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.contact-method ul {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
}

.contact-method ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.contact-method ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: -0.5rem;
    margin-bottom: 0;
}

.form-message {
    padding: 1.75rem;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 0.75rem;
}

.success-message p {
    color: #065f46;
    margin-bottom: 0;
}

.error-message {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.error-message h3 {
    color: #991b1b;
    margin-bottom: 0.75rem;
}

.error-message p {
    color: #991b1b;
    margin-bottom: 0;
}

.error-message a {
    color: #991b1b;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-tagline {
    color: white !important;
    opacity: 1 !important;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* RESPONSIVE - MOBILE MENU THAT WORKS */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* SHOW MOBILE MENU TOGGLE */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* HIDE DESKTOP MENU, SHOW AS DROPDOWN */
    .nav-menu {
        display: none;
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        gap: 0;
        max-height: calc(100vh - 77px);
        overflow-y: auto;
        z-index: 999;
        margin: 0;
    }
    
    /* SHOW WHEN ACTIVE */
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
        margin: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1.25rem 1.5rem;
        width: 100%;
        border-radius: 0;
        display: block;
        background: white;
        font-size: 1.05rem;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--bg-light);
        color: var(--primary);
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .candidate-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .review-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1.25rem;
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
