/* QuizOntario — Main Stylesheet | quizontario.com */
:root {
  --qo-forest: #2C5F2E;
  --qo-forest-light: #3a7d3c;
  --qo-lake: #1B6CA8;
  --qo-lake-light: #2980b9;
  --qo-sky: #E8F4FD;
  --qo-cream: #F9F6F0;
  --qo-birch: #F5F0E8;
  --qo-dark: #1A1F2E;
  --qo-text: #2D3748;
  --qo-text-muted: #718096;
  --qo-white: #FFFFFF;
  --qo-border: #E2E8F0;
  --qo-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --qo-shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --qo-shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --qo-radius: 12px;
  --qo-radius-lg: 20px;
  --qo-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --qo-font-display: 'Playfair Display', Georgia, serif;
  --qo-font-body: 'Source Serif 4', Georgia, serif;
  --qo-font-ui: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--qo-font-body); color: var(--qo-text); background: var(--qo-white); line-height: 1.7; overflow-x: hidden; }

/* ─── UTILITIES ─── */
.qo-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.qo-container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.qo-section { padding: 80px 0; }
.qo-section-sm { padding: 48px 0; }
.qo-text-center { text-align: center; }
.qo-hidden { display: none !important; }
.qo-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: var(--qo-font-display); line-height: 1.25; color: var(--qo-dark); }
.qo-display-title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.qo-section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.qo-section-subtitle { font-size: 1.1rem; color: var(--qo-text-muted); max-width: 600px; margin: 0 auto 48px; font-family: var(--qo-font-ui); }
.qo-label-tag { display: inline-block; font-family: var(--qo-font-ui); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--qo-forest); background: rgba(44,95,46,0.1); padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }

/* ─── BUTTONS ─── */
.qo-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--qo-font-ui); font-size: 0.95rem; font-weight: 600; padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; transition: var(--qo-transition); letter-spacing: 0.01em; }
.qo-btn-primary { background: var(--qo-forest); color: var(--qo-white); }
.qo-btn-primary:hover { background: var(--qo-forest-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,95,46,0.35); }
.qo-btn-secondary { background: transparent; color: var(--qo-forest); border: 2px solid var(--qo-forest); }
.qo-btn-secondary:hover { background: var(--qo-forest); color: var(--qo-white); transform: translateY(-2px); }
.qo-btn-lake { background: var(--qo-lake); color: var(--qo-white); }
.qo-btn-lake:hover { background: var(--qo-lake-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,108,168,0.35); }
.qo-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ─── NAVIGATION ─── */
.qo-nav-wrapper { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--qo-border); transition: var(--qo-transition); }
.qo-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.qo-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.qo-nav-logo-mark { width: 40px; height: 40px; background: var(--qo-forest); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--qo-font-display); font-weight: 700; font-size: 1.1rem; }
.qo-nav-logo-text { font-family: var(--qo-font-display); font-size: 1.3rem; font-weight: 700; color: var(--qo-dark); }
.qo-nav-logo-text span { color: var(--qo-forest); }
.qo-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.qo-nav-links a { display: block; padding: 8px 14px; font-family: var(--qo-font-ui); font-size: 0.9rem; font-weight: 500; color: var(--qo-text); text-decoration: none; border-radius: 6px; transition: var(--qo-transition); }
.qo-nav-links a:hover { background: var(--qo-sky); color: var(--qo-lake); }
.qo-nav-cta { font-family: var(--qo-font-ui) !important; font-size: 0.9rem !important; font-weight: 600 !important; color: var(--qo-white) !important; background: var(--qo-forest) !important; padding: 9px 20px !important; border-radius: 8px !important; }
.qo-nav-cta:hover { background: var(--qo-forest-light) !important; }
.qo-nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.qo-nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--qo-dark); border-radius: 2px; transition: var(--qo-transition); }
.qo-nav-mobile { display: none; flex-direction: column; padding: 16px 24px; border-top: 1px solid var(--qo-border); gap: 4px; }
.qo-nav-mobile.qo-nav-open { display: flex; }
.qo-nav-mobile a { font-family: var(--qo-font-ui); font-size: 0.95rem; font-weight: 500; color: var(--qo-text); text-decoration: none; padding: 10px 12px; border-radius: 8px; }
.qo-nav-mobile a:hover { background: var(--qo-sky); }

/* ─── HERO ─── */
.qo-hero-section { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0d2818 0%, #1a4a2e 40%, #1B6CA8 100%); }
.qo-hero-bg-layer { position: absolute; inset: 0; background-image: url('../images/banner.avif'); background-size: cover; background-position: center; opacity: 0.18; }
.qo-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(26,74,46,0.85) 50%, rgba(27,108,168,0.75) 100%); }
.qo-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.qo-hero-text .qo-label-tag { background: rgba(255,255,255,0.15); color: #a8d5b0; }
.qo-hero-title { font-family: var(--qo-font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; color: var(--qo-white); line-height: 1.1; margin-bottom: 24px; }
.qo-hero-title em { font-style: italic; color: #8dd4a0; }
.qo-hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 40px; line-height: 1.75; font-family: var(--qo-font-ui); }
.qo-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.qo-hero-btn-primary { background: #fff; color: var(--qo-forest); padding: 16px 32px; border-radius: 10px; font-family: var(--qo-font-ui); font-weight: 700; font-size: 1rem; text-decoration: none; transition: var(--qo-transition); display: inline-flex; align-items: center; gap: 8px; }
.qo-hero-btn-primary:hover { background: #e8f5e9; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.qo-hero-btn-ghost { background: transparent; color: #fff; padding: 16px 32px; border-radius: 10px; font-family: var(--qo-font-ui); font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: var(--qo-transition); display: inline-flex; align-items: center; gap: 8px; }
.qo-hero-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.qo-hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.qo-hero-stat-num { font-family: var(--qo-font-display); font-size: 2rem; font-weight: 700; color: #8dd4a0; line-height: 1; }
.qo-hero-stat-label { font-family: var(--qo-font-ui); font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── HERO QUIZ PANEL ─── */
.qo-hero-quiz-panel { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 32px; }
.qo-hero-quiz-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.qo-hero-quiz-title { font-family: var(--qo-font-ui); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8dd4a0; }
.qo-hero-quiz-badge { background: rgba(141,212,160,0.2); color: #8dd4a0; font-family: var(--qo-font-ui); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.qo-quick-quiz-question { font-family: var(--qo-font-display); font-size: 1.15rem; color: #fff; margin-bottom: 20px; line-height: 1.5; }
.qo-quick-quiz-options { display: flex; flex-direction: column; gap: 10px; }
.qo-quick-option { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 16px; color: rgba(255,255,255,0.85); font-family: var(--qo-font-ui); font-size: 0.9rem; cursor: pointer; transition: var(--qo-transition); text-align: left; width: 100%; }
.qo-quick-option:hover { background: rgba(141,212,160,0.15); border-color: rgba(141,212,160,0.4); transform: translateX(4px); }
.qo-quick-option.qo-correct { background: rgba(141,212,160,0.25); border-color: #8dd4a0; color: #8dd4a0; }
.qo-quick-option.qo-wrong { background: rgba(239,83,80,0.2); border-color: #ef5350; color: #ef9a9a; }
.qo-quick-quiz-feedback { margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-family: var(--qo-font-ui); font-size: 0.9rem; display: none; }
.qo-quick-quiz-feedback.qo-show { display: block; }
.qo-feedback-correct { background: rgba(141,212,160,0.15); color: #8dd4a0; border: 1px solid rgba(141,212,160,0.3); }
.qo-feedback-wrong { background: rgba(239,83,80,0.12); color: #ef9a9a; border: 1px solid rgba(239,83,80,0.3); }
.qo-quiz-next-btn { margin-top: 16px; width: 100%; padding: 12px; background: var(--qo-forest); color: #fff; border: none; border-radius: 10px; font-family: var(--qo-font-ui); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--qo-transition); display: none; }
.qo-quiz-next-btn.qo-show { display: block; }
.qo-quiz-next-btn:hover { background: var(--qo-forest-light); }

/* ─── WAVE SEPARATOR ─── */
.qo-wave-separator { display: block; width: 100%; overflow: hidden; line-height: 0; }
.qo-wave-separator svg { display: block; width: 100%; }

/* ─── TOPIC SELECTOR ─── */
.qo-topic-section { background: var(--qo-cream); padding: 80px 0; }
.qo-topic-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.qo-topic-tab { padding: 10px 24px; border-radius: 30px; border: 2px solid var(--qo-border); background: var(--qo-white); font-family: var(--qo-font-ui); font-size: 0.9rem; font-weight: 600; color: var(--qo-text-muted); cursor: pointer; transition: var(--qo-transition); display: inline-flex; align-items: center; gap: 8px; }
.qo-topic-tab:hover { border-color: var(--qo-forest); color: var(--qo-forest); }
.qo-topic-tab.qo-tab-active { background: var(--qo-forest); border-color: var(--qo-forest); color: var(--qo-white); }
.qo-quiz-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.qo-quiz-card { background: var(--qo-white); border-radius: var(--qo-radius-lg); overflow: hidden; box-shadow: var(--qo-shadow-sm); transition: var(--qo-transition); cursor: pointer; }
.qo-quiz-card:hover { transform: translateY(-6px); box-shadow: var(--qo-shadow-lg); }
.qo-quiz-card-geo, .qo-quiz-card-driving, .qo-quiz-card-culture, .qo-quiz-card-civic { display: block; }
.qo-quiz-card-img { width: 100%; height: 180px; object-fit: cover; }
.qo-quiz-card-body { padding: 24px; }
.qo-quiz-card-tag { display: inline-block; font-family: var(--qo-font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.qo-tag-geography { background: #e8f5e9; color: #2C5F2E; }
.qo-tag-driving { background: #e3f2fd; color: #1B6CA8; }
.qo-tag-culture { background: #fff3e0; color: #E65100; }
.qo-tag-civic { background: #f3e5f5; color: #6A1B9A; }
.qo-quiz-card-title { font-family: var(--qo-font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--qo-dark); }
.qo-quiz-card-desc { font-family: var(--qo-font-ui); font-size: 0.9rem; color: var(--qo-text-muted); margin-bottom: 20px; line-height: 1.6; }
.qo-quiz-card-meta { display: flex; align-items: center; justify-content: space-between; }
.qo-quiz-card-questions { font-family: var(--qo-font-ui); font-size: 0.82rem; color: var(--qo-text-muted); display: flex; align-items: center; gap: 6px; }

/* ─── FULL QUIZ MODULE ─── */
.qo-quiz-module-section { padding: 80px 0; background: var(--qo-white); }
.qo-quiz-module-wrapper { max-width: 760px; margin: 0 auto; }
.qo-quiz-module { background: var(--qo-white); border: 2px solid var(--qo-border); border-radius: var(--qo-radius-lg); overflow: hidden; box-shadow: var(--qo-shadow-md); }
.qo-quiz-module-header { padding: 28px 32px; background: linear-gradient(135deg, var(--qo-forest), var(--qo-lake)); color: white; }
.qo-quiz-module-name { font-family: var(--qo-font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.qo-quiz-progress-bar-wrap { background: rgba(255,255,255,0.2); border-radius: 10px; height: 6px; overflow: hidden; margin-top: 12px; }
.qo-quiz-progress-fill { height: 100%; background: #8dd4a0; border-radius: 10px; transition: width 0.5s ease; }
.qo-quiz-body { padding: 36px 32px; }
.qo-quiz-q-counter { font-family: var(--qo-font-ui); font-size: 0.82rem; font-weight: 600; color: var(--qo-text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.qo-quiz-question-text { font-family: var(--qo-font-display); font-size: 1.25rem; color: var(--qo-dark); margin-bottom: 28px; line-height: 1.5; }
.qo-quiz-options-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.qo-quiz-option-btn { width: 100%; text-align: left; padding: 16px 20px; border: 2px solid var(--qo-border); border-radius: 10px; background: var(--qo-white); font-family: var(--qo-font-ui); font-size: 0.95rem; color: var(--qo-text); cursor: pointer; transition: var(--qo-transition); display: flex; align-items: center; gap: 14px; }
.qo-quiz-option-btn:hover:not(:disabled) { border-color: var(--qo-forest); background: rgba(44,95,46,0.04); transform: translateX(4px); }
.qo-quiz-option-btn.qo-selected { border-color: var(--qo-lake); background: var(--qo-sky); }
.qo-quiz-option-btn.qo-answer-correct { border-color: var(--qo-forest); background: #e8f5e9; color: var(--qo-forest); }
.qo-quiz-option-btn.qo-answer-wrong { border-color: #ef5350; background: #ffebee; color: #c62828; }
.qo-option-letter { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--qo-border); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; transition: var(--qo-transition); }
.qo-quiz-option-btn.qo-answer-correct .qo-option-letter { background: var(--qo-forest); color: white; }
.qo-quiz-option-btn.qo-answer-wrong .qo-option-letter { background: #ef5350; color: white; }
.qo-quiz-explanation { margin-top: 20px; padding: 16px 20px; background: var(--qo-sky); border-left: 4px solid var(--qo-lake); border-radius: 0 10px 10px 0; font-family: var(--qo-font-ui); font-size: 0.9rem; color: var(--qo-text); display: none; }
.qo-quiz-explanation.qo-show { display: block; animation: qo-slide-in 0.3s ease; }
.qo-quiz-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--qo-border); }
.qo-quiz-score-display { font-family: var(--qo-font-ui); font-size: 0.9rem; color: var(--qo-text-muted); }
.qo-quiz-results-panel { text-align: center; padding: 48px 32px; }
.qo-quiz-results-score { font-family: var(--qo-font-display); font-size: 4rem; font-weight: 700; color: var(--qo-forest); line-height: 1; margin-bottom: 8px; }
.qo-quiz-results-msg { font-family: var(--qo-font-ui); font-size: 1.1rem; color: var(--qo-text-muted); margin-bottom: 32px; }

/* ─── KNOWLEDGE CARDS ─── */
.qo-knowledge-section { background: var(--qo-birch); padding: 80px 0; }
.qo-knowledge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.qo-knowledge-card { background: var(--qo-white); border-radius: var(--qo-radius); overflow: hidden; box-shadow: var(--qo-shadow-sm); transition: var(--qo-transition); }
.qo-knowledge-card:hover { transform: translateY(-4px); box-shadow: var(--qo-shadow-md); }
.qo-knowledge-card-header { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.qo-knowledge-card-icon { font-size: 1.8rem; margin-right: 12px; }
.qo-knowledge-card-htitle { font-family: var(--qo-font-display); font-size: 1rem; font-weight: 700; color: var(--qo-dark); flex: 1; }
.qo-knowledge-expand-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--qo-border); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--qo-transition); flex-shrink: 0; }
.qo-knowledge-expand-btn.qo-expanded { background: var(--qo-forest); color: white; transform: rotate(45deg); }
.qo-knowledge-card-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.qo-knowledge-card-body.qo-open { max-height: 500px; padding: 0 24px 24px; }
.qo-knowledge-card-body p { font-family: var(--qo-font-ui); font-size: 0.9rem; color: var(--qo-text-muted); line-height: 1.7; }

/* ─── PROGRESS TRACKER ─── */
.qo-progress-section { background: linear-gradient(135deg, var(--qo-dark) 0%, #0d2a3a 100%); padding: 80px 0; color: white; }
.qo-progress-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.qo-progress-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--qo-radius); padding: 24px; text-align: center; transition: var(--qo-transition); }
.qo-progress-card:hover { background: rgba(255,255,255,0.1); }
.qo-progress-circle { position: relative; width: 80px; height: 80px; margin: 0 auto 16px; }
.qo-progress-circle svg { transform: rotate(-90deg); }
.qo-progress-circle-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 6; }
.qo-progress-circle-fill { fill: none; stroke: #8dd4a0; stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.qo-progress-circle-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--qo-font-ui); font-weight: 700; font-size: 1rem; color: white; }
.qo-progress-card-label { font-family: var(--qo-font-ui); font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.qo-progress-card-title { font-family: var(--qo-font-display); font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 6px; }

/* ─── TESTIMONIALS ─── */
.qo-testimonials-section { padding: 80px 0; background: var(--qo-white); overflow: hidden; }
.qo-testimonials-carousel { position: relative; overflow: hidden; }
.qo-testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.qo-testimonial-slide { min-width: 100%; padding: 0 24px; display: flex; justify-content: center; }
.qo-testimonial-card { background: var(--qo-cream); border-radius: var(--qo-radius-lg); padding: 40px 48px; max-width: 700px; width: 100%; text-align: center; box-shadow: var(--qo-shadow-sm); }
.qo-testimonial-quote { font-family: var(--qo-font-display); font-size: 3rem; color: var(--qo-forest); line-height: 1; margin-bottom: 16px; }
.qo-testimonial-text { font-family: var(--qo-font-body); font-size: 1.1rem; color: var(--qo-text); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.qo-testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.qo-testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--qo-forest); }
.qo-testimonial-name { font-family: var(--qo-font-ui); font-weight: 700; font-size: 0.95rem; color: var(--qo-dark); }
.qo-testimonial-role { font-family: var(--qo-font-ui); font-size: 0.82rem; color: var(--qo-text-muted); margin-top: 2px; }
.qo-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.qo-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--qo-border); border: none; cursor: pointer; transition: var(--qo-transition); }
.qo-carousel-dot.qo-dot-active { background: var(--qo-forest); width: 24px; border-radius: 4px; }
.qo-carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.qo-carousel-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--qo-border); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--qo-transition); font-size: 1.1rem; }
.qo-carousel-arrow:hover { border-color: var(--qo-forest); background: var(--qo-forest); color: white; }

/* ─── PHILOSOPHY ─── */
.qo-philosophy-section { background: var(--qo-sky); padding: 80px 0; }
.qo-philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.qo-philosophy-img { border-radius: var(--qo-radius-lg); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--qo-shadow-lg); }
.qo-philosophy-list { list-style: none; margin-top: 32px; }
.qo-philosophy-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.qo-philosophy-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--qo-forest); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.qo-philosophy-item-text h4 { font-family: var(--qo-font-ui); font-size: 0.95rem; font-weight: 700; color: var(--qo-dark); margin-bottom: 4px; }
.qo-philosophy-item-text p { font-family: var(--qo-font-ui); font-size: 0.88rem; color: var(--qo-text-muted); line-height: 1.6; }

/* ─── TEAM ─── */
.qo-team-section { padding: 80px 0; background: var(--qo-white); }
.qo-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.qo-team-card { text-align: center; padding: 32px 24px; border-radius: var(--qo-radius-lg); background: var(--qo-cream); transition: var(--qo-transition); }
.qo-team-card:hover { transform: translateY(-4px); box-shadow: var(--qo-shadow-md); }
.qo-team-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--qo-white); box-shadow: var(--qo-shadow-sm); }
.qo-team-name { font-family: var(--qo-font-display); font-size: 1.05rem; font-weight: 700; color: var(--qo-dark); margin-bottom: 4px; }
.qo-team-role { font-family: var(--qo-font-ui); font-size: 0.82rem; color: var(--qo-forest); font-weight: 600; margin-bottom: 12px; }
.qo-team-bio { font-family: var(--qo-font-ui); font-size: 0.85rem; color: var(--qo-text-muted); line-height: 1.6; }

/* ─── CTA ─── */
.qo-cta-section { background: linear-gradient(135deg, var(--qo-forest) 0%, var(--qo-lake) 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.qo-cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.qo-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.qo-cta-title { font-family: var(--qo-font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: white; margin-bottom: 20px; }
.qo-cta-desc { font-family: var(--qo-font-ui); font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.7; }

/* ─── ARTICLES ─── */
.qo-articles-section { padding: 80px 0; background: var(--qo-cream); }
.qo-articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.qo-article-card { background: var(--qo-white); border-radius: var(--qo-radius-lg); overflow: hidden; box-shadow: var(--qo-shadow-sm); transition: var(--qo-transition); text-decoration: none; color: inherit; display: block; }
.qo-article-card:hover { transform: translateY(-6px); box-shadow: var(--qo-shadow-lg); }
.qo-article-card-img { width: 100%; height: 220px; object-fit: cover; }
.qo-article-card-body { padding: 28px; }
.qo-article-card-category { display: inline-block; font-family: var(--qo-font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--qo-forest); margin-bottom: 10px; }
.qo-article-card-title { font-family: var(--qo-font-display); font-size: 1.2rem; font-weight: 700; color: var(--qo-dark); margin-bottom: 12px; line-height: 1.35; }
.qo-article-card-excerpt { font-family: var(--qo-font-ui); font-size: 0.88rem; color: var(--qo-text-muted); line-height: 1.6; margin-bottom: 20px; }
.qo-article-card-meta { display: flex; align-items: center; justify-content: space-between; font-family: var(--qo-font-ui); font-size: 0.8rem; color: var(--qo-text-muted); border-top: 1px solid var(--qo-border); padding-top: 16px; }

/* ─── DISCLAIMER ─── */
.qo-disclaimer-section { padding: 32px 0; background: #f8f4ef; border-top: 1px solid var(--qo-border); }
.qo-disclaimer-box { background: var(--qo-white); border: 1px solid var(--qo-border); border-radius: var(--qo-radius); padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.qo-disclaimer-icon { font-size: 1.4rem; flex-shrink: 0; }
.qo-disclaimer-text { font-family: var(--qo-font-ui); font-size: 0.85rem; color: var(--qo-text-muted); line-height: 1.6; }

/* ─── FOOTER ─── */
.qo-footer { background: var(--qo-dark); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.qo-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.qo-footer-brand h3 { font-family: var(--qo-font-display); font-size: 1.4rem; color: white; margin-bottom: 12px; }
.qo-footer-brand p { font-family: var(--qo-font-ui); font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.qo-footer-col h4 { font-family: var(--qo-font-ui); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.qo-footer-col ul { list-style: none; }
.qo-footer-col ul li { margin-bottom: 10px; }
.qo-footer-col ul li a { font-family: var(--qo-font-ui); font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--qo-transition); }
.qo-footer-col ul li a:hover { color: white; }
.qo-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.qo-footer-copyright { font-family: var(--qo-font-ui); font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.qo-footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.qo-footer-legal-links a { font-family: var(--qo-font-ui); font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--qo-transition); }
.qo-footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

/* ─── PAGE HERO (inner pages) ─── */
.qo-page-hero { background: linear-gradient(135deg, var(--qo-forest) 0%, var(--qo-lake) 100%); padding: 80px 24px 60px; text-align: center; color: white; }
.qo-page-hero h1 { font-family: var(--qo-font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 16px; }
.qo-page-hero p { font-family: var(--qo-font-ui); font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; }
.qo-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-family: var(--qo-font-ui); font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.qo-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.qo-breadcrumb a:hover { color: white; }

/* ─── ARTICLE LAYOUT ─── */
.qo-article-layout-long { display: grid; grid-template-columns: 1fr 320px; gap: 60px; padding: 60px 0; align-items: start; }
.qo-article-content h2 { font-family: var(--qo-font-display); font-size: 1.6rem; margin: 40px 0 16px; color: var(--qo-dark); }
.qo-article-content h3 { font-family: var(--qo-font-display); font-size: 1.2rem; margin: 28px 0 12px; color: var(--qo-dark); }
.qo-article-content p { font-family: var(--qo-font-body); font-size: 1rem; line-height: 1.85; color: var(--qo-text); margin-bottom: 20px; }
.qo-article-content img { width: 100%; border-radius: var(--qo-radius); margin: 28px 0; box-shadow: var(--qo-shadow-sm); }
.qo-article-content blockquote { border-left: 4px solid var(--qo-forest); padding: 16px 24px; background: var(--qo-sky); border-radius: 0 12px 12px 0; margin: 28px 0; }
.qo-article-content blockquote p { font-style: italic; color: var(--qo-lake); font-size: 1.05rem; margin: 0; }
.qo-article-sidebar { position: sticky; top: 92px; }
.qo-sidebar-widget { background: var(--qo-cream); border-radius: var(--qo-radius); padding: 24px; margin-bottom: 24px; }
.qo-sidebar-widget h3 { font-family: var(--qo-font-display); font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--qo-dark); }
.qo-sidebar-link-list { list-style: none; }
.qo-sidebar-link-list li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--qo-border); }
.qo-sidebar-link-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.qo-sidebar-link-list a { font-family: var(--qo-font-ui); font-size: 0.88rem; color: var(--qo-lake); text-decoration: none; transition: var(--qo-transition); }
.qo-sidebar-link-list a:hover { color: var(--qo-forest); }

/* ─── CONTACT ─── */
.qo-contact-section { padding: 80px 0; }
.qo-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.qo-form-group { margin-bottom: 24px; }
.qo-form-label { display: block; font-family: var(--qo-font-ui); font-size: 0.88rem; font-weight: 600; color: var(--qo-dark); margin-bottom: 8px; }
.qo-form-label span { color: #ef5350; margin-left: 3px; }
.qo-form-input, .qo-form-select, .qo-form-textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--qo-border); border-radius: 8px; font-family: var(--qo-font-ui); font-size: 0.95rem; color: var(--qo-text); background: var(--qo-white); transition: var(--qo-transition); outline: none; }
.qo-form-input:focus, .qo-form-select:focus, .qo-form-textarea:focus { border-color: var(--qo-forest); box-shadow: 0 0 0 3px rgba(44,95,46,0.1); }
.qo-form-textarea { min-height: 140px; resize: vertical; }
.qo-form-error { display: none; font-family: var(--qo-font-ui); font-size: 0.82rem; color: #ef5350; margin-top: 6px; }
.qo-form-error.qo-show { display: block; }
.qo-captcha-wrap { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--qo-cream); border-radius: 8px; border: 2px solid var(--qo-border); }
.qo-captcha-question { font-family: var(--qo-font-ui); font-size: 0.95rem; font-weight: 600; color: var(--qo-dark); flex: 1; }
.qo-captcha-input { width: 80px; padding: 8px 12px; border: 2px solid var(--qo-border); border-radius: 6px; font-family: var(--qo-font-ui); font-size: 0.95rem; text-align: center; outline: none; }
.qo-captcha-input:focus { border-color: var(--qo-forest); }
.qo-contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.qo-contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--qo-sky); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.qo-contact-info-text h4 { font-family: var(--qo-font-ui); font-size: 0.88rem; font-weight: 700; color: var(--qo-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.qo-contact-info-text p, .qo-contact-info-text a { font-family: var(--qo-font-ui); font-size: 0.95rem; color: var(--qo-text); text-decoration: none; }
.qo-contact-info-text a:hover { color: var(--qo-forest); }
.qo-map-container { border-radius: var(--qo-radius-lg); overflow: hidden; margin-top: 32px; box-shadow: var(--qo-shadow-sm); }

/* ─── LEGAL ─── */
.qo-legal-content { padding: 60px 0; }
.qo-legal-content h2 { font-family: var(--qo-font-display); font-size: 1.4rem; margin: 36px 0 14px; color: var(--qo-dark); padding-bottom: 10px; border-bottom: 1px solid var(--qo-border); }
.qo-legal-content h3 { font-family: var(--qo-font-display); font-size: 1.1rem; margin: 24px 0 10px; color: var(--qo-dark); }
.qo-legal-content p, .qo-legal-content li { font-family: var(--qo-font-ui); font-size: 0.95rem; line-height: 1.8; color: var(--qo-text); margin-bottom: 14px; }
.qo-legal-content ul { padding-left: 24px; margin-bottom: 20px; }
.qo-legal-meta { font-family: var(--qo-font-ui); font-size: 0.82rem; color: var(--qo-text-muted); margin-bottom: 32px; padding: 12px 16px; background: var(--qo-cream); border-radius: 8px; }

/* ─── ABOUT ─── */
.qo-about-mission { padding: 80px 0; }
.qo-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.qo-mission-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--qo-radius-lg); box-shadow: var(--qo-shadow-lg); }
.qo-timeline { padding: 60px 0; background: var(--qo-cream); }
.qo-timeline-list { position: relative; max-width: 700px; margin: 0 auto; }
.qo-timeline-list::before { content: ''; position: absolute; left: 22px; top: 0; bottom: 0; width: 2px; background: var(--qo-border); }
.qo-timeline-item { display: flex; gap: 24px; margin-bottom: 40px; position: relative; }
.qo-timeline-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--qo-forest); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--qo-font-ui); font-weight: 700; font-size: 0.8rem; z-index: 1; box-shadow: 0 0 0 6px var(--qo-cream); }
.qo-timeline-body h4 { font-family: var(--qo-font-display); font-size: 1rem; font-weight: 700; color: var(--qo-dark); margin-bottom: 6px; }
.qo-timeline-body p { font-family: var(--qo-font-ui); font-size: 0.88rem; color: var(--qo-text-muted); line-height: 1.6; }

/* ─── COOKIE BANNER ─── */
.qo-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; padding: 0 24px 24px; display: none; animation: qo-slide-up 0.4s ease; }
.qo-cookie-banner.qo-show { display: block; }
.qo-cookie-inner { max-width: 900px; margin: 0 auto; background: var(--qo-dark); border-radius: var(--qo-radius-lg); padding: 24px 28px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; box-shadow: var(--qo-shadow-lg); }
.qo-cookie-text { flex: 1; font-family: var(--qo-font-ui); font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; min-width: 280px; }
.qo-cookie-text a { color: #8dd4a0; text-decoration: none; }
.qo-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.qo-cookie-accept { padding: 10px 22px; background: var(--qo-forest); color: white; border: none; border-radius: 8px; font-family: var(--qo-font-ui); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--qo-transition); }
.qo-cookie-accept:hover { background: var(--qo-forest-light); }
.qo-cookie-decline { padding: 10px 22px; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-family: var(--qo-font-ui); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--qo-transition); }
.qo-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ─── ANIMATIONS ─── */
@keyframes qo-slide-up { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes qo-slide-in { from { transform: translateX(-10px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes qo-fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.qo-animate-in { animation: qo-fade-in 0.6s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .qo-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .qo-footer-grid { grid-template-columns: 1fr 1fr; }
  .qo-philosophy-grid { grid-template-columns: 1fr; }
  .qo-philosophy-img { height: 300px; }
  .qo-article-layout-long { grid-template-columns: 1fr; }
  .qo-article-sidebar { position: static; }
  .qo-mission-grid { grid-template-columns: 1fr; }
  .qo-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .qo-nav-links { display: none; }
  .qo-nav-hamburger { display: flex; }
  .qo-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .qo-section { padding: 56px 0; }
  .qo-quiz-body { padding: 24px 20px; }
  .qo-testimonial-card { padding: 28px 24px; }
}



.logo{
  max-width: 80px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}