/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1B6B4A;
  --primary-light: #2D9B6A;
  --primary-pale: #E8F5EE;
  --primary-glow: rgba(27,107,74,0.08);
  --accent: #E8913A;
  --accent-light: #F5A623;
  --accent-pale: #FFF4E6;
  --bg: #FAFBFD;
  --bg-white: #FFFFFF;
  --bg-warm: #F5F3EF;
  --bg-hero: linear-gradient(165deg, #F0FAF4 0%, #FAFBFD 35%, #FFF9F2 70%, #FAFBFD 100%);
  --text: #1A2332;
  --text-secondary: #5A6B7D;
  --text-muted: #94A3B8;
  --border: #E8ECF1;
  --border-hover: rgba(27,107,74,0.25);
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.04), 0 1px 2px rgba(26,35,50,0.03);
  --shadow-md: 0 4px 16px rgba(26,35,50,0.06), 0 2px 6px rgba(26,35,50,0.04);
  --shadow-lg: 0 12px 40px rgba(26,35,50,0.08), 0 4px 12px rgba(26,35,50,0.04);
  --shadow-xl: 0 20px 60px rgba(26,35,50,0.1);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Noto Kufi Arabic', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.nav.scrolled { padding: 10px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav .wrap { max-width: 1260px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo-text { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--text); }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a, .nav-links li { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.25s; list-style: none; }
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn-primary { padding: 10px 26px; font-size: 14px; font-weight: 700; background: var(--primary); color: white; border-radius: 10px; transition: var(--transition); box-shadow: 0 2px 12px rgba(27,107,74,0.2); display: inline-block; text-align: center; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(27,107,74,0.3); }
.btn-secondary { padding: 10px 26px; font-size: 14px; font-weight: 700; background: var(--bg-white); color: var(--text); border: 1.5px solid var(--border); border-radius: 10px; transition: var(--transition); display: inline-block; text-align: center; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent { padding: 10px 26px; font-size: 14px; font-weight: 700; background: var(--accent); color: white; border-radius: 10px; transition: var(--transition); box-shadow: 0 2px 12px rgba(232,145,58,0.25); display: inline-block; text-align: center; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); }

/* Nav buttons with icons */
.nav-btn-icon { display: inline-flex; align-items: center; gap: 8px; }
.nav-btn-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-login-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 700; font-family: var(--font-body); color: var(--text-secondary); background: none; border: 1.5px solid var(--border); border-radius: 10px; transition: var(--transition); cursor: pointer; }
.nav-login-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-login-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.mobile-nav .nav-login-btn { padding: 12px 28px; font-size: 16px; border-radius: 12px; }
.mobile-nav .nav-btn-icon { font-size: 16px; padding: 12px 28px; }

/* Language Switcher */
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; font-size: 13px; font-weight: 700; font-family: var(--font-body); color: var(--text-secondary); background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; transition: var(--transition); text-decoration: none; letter-spacing: 0.5px; }
.lang-switcher:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.lang-switcher .lang-icon { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-nav .lang-switcher { padding: 10px 20px; font-size: 15px; border-radius: 10px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a, .mobile-nav li { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-secondary); list-style: none; }
.mobile-nav a:hover { color: var(--primary); }
@media(max-width:768px) { .nav-links { display: none; } .hamburger { display: flex; z-index: 1001; } .mobile-nav { display: flex; } }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 28px 80px; background: var(--bg-hero); overflow: hidden; }
.hero-deco-1 { position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(27,107,74,0.06), transparent 70%); }
.hero-deco-2 { position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(232,145,58,0.05), transparent 70%); }
.hero-deco-dots { position: absolute; top: 20%; left: 5%; width: 120px; height: 120px; background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px); background-size: 16px 16px; opacity: 0.08; }
.hero .wrap { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
@media(max-width:900px) { .hero .wrap { grid-template-columns: 1fr; text-align: center; } }
.hero-content { animation: fadeUp 0.9s 0.2s both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 30px; background: var(--primary-pale); font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 28px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: var(--font-display); font-size: clamp(32px,5.5vw,58px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; color: var(--text); }
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero p { font-size: clamp(15px,1.8vw,18px); color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
@media(max-width:900px) { .hero p { margin: 0 auto 36px; } }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
@media(max-width:900px) { .hero-buttons { justify-content: center; } }
.hero-buttons .btn-primary { padding: 16px 40px; font-size: 16px; border-radius: 12px; }
.hero-buttons .btn-secondary { padding: 16px 40px; font-size: 16px; border-radius: 12px; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
@media(max-width:900px) { .hero-trust { justify-content: center; } }
.hero-avatars { display: flex; }
.hero-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid white; margin-left: -10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--text-secondary); }
.hero-trust-text strong { color: var(--primary); font-weight: 700; }

.hero-visual { position: relative; animation: fadeUp 0.9s 0.5s both; }
.hero-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.hero-img-main img { width: 100%; height: 420px; object-fit: cover; }
.hero-float-card { position: absolute; background: var(--bg-white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 4s ease-in-out infinite; }
.hero-float-1 { bottom: -20px; right: -15px; }
.hero-float-2 { top: 20px; left: -20px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hf-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hf-icon svg { width: 20px; height: 20px; }
.hf-text { font-size: 12px; color: var(--text-secondary); }
.hf-text strong { display: block; font-size: 16px; color: var(--text); font-weight: 700; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 28px; }
.section.alt { background: var(--bg-warm); }
.wrap { max-width: 1260px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(26px,3.5vw,40px); font-weight: 800; }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 12px auto 0; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CATEGORIES (coursat-style boxes) ===== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.cat-card:hover .cat-card-overlay { background: rgba(20,25,35,0.55); }
.cat-card-cover { position: relative; width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-repeat: no-repeat; }
.cat-card-overlay { position: absolute; inset: 0; background: rgba(20,25,35,0.65); transition: var(--transition); z-index: 1; }
.cat-card-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 20px; }
.cat-card-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: var(--transition); }
.cat-card:hover .cat-card-icon { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.cat-card-icon svg { width: 24px; height: 24px; }
.cat-card-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin: 0; line-height: 1.5; }
@media (max-width: 991px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 767px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .cat-card-icon { width: 50px; height: 50px; font-size: 20px; } .cat-card-name { font-size: 14px; } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .cat-card-cover { aspect-ratio: 1 / 1; } }

/* ===== SUB-CATEGORY CARDS (coursat-style: icon + title) ===== */
.subcat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.subcat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; background: #f5f5f5; border: 1px solid #eee; border-radius: 10px; padding: 32px 16px 24px; transition: var(--transition); cursor: pointer; text-align: center; }
.subcat-card:hover { background: #eef1f3; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.subcat-card-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.subcat-card-icon img { max-width: 80px; max-height: 80px; object-fit: contain; }
.subcat-card-icon i { font-size: 64px; }
.subcat-card-icon svg { width: 56px; height: 56px; }
.subcat-card-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #333; }
@media (min-width: 768px) { .subcat-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== COURSES ===== */
.courses-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.courses-header .section-header { text-align: right; margin-bottom: 0; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; font-size: 13px; font-weight: 600; border-radius: 8px; background: var(--bg-white); color: var(--text-secondary); border: 1.5px solid var(--border); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-pale); color: var(--primary); border-color: var(--primary); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.course-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: pointer; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-thumb { height: 195px; position: relative; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-thumb img { transform: scale(1.05); }
.course-thumb .play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.course-card:hover .play-overlay { opacity: 1; }
.play-circle { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.play-circle svg { width: 22px; height: 22px; fill: var(--primary); margin-right: -2px; }
.course-tag { position: absolute; top: 14px; right: 14px; padding: 5px 14px; border-radius: 20px; background: var(--bg-white); font-size: 11px; font-weight: 700; color: var(--text); box-shadow: var(--shadow-sm); }
.course-body { padding: 20px 22px; }
.course-body h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.65; margin-bottom: 12px; }
.course-body h3 a { text-decoration: none; color: inherit; }
.course-stats { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
.course-stat { display: flex; align-items: center; gap: 4px; }
.course-stat svg { width: 14px; height: 14px; }
.course-stat.rating { color: var(--accent); font-weight: 700; }
.course-stat.rating svg { fill: var(--accent); }

/* ===== SINGLE COURSE PAGE ===== */
.cp-hero { background: linear-gradient(135deg, #F0FAF4, #FFF9F2); padding: 100px 28px 50px; }
.cp-hero .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
@media(max-width:900px) { .cp-hero .wrap { grid-template-columns: 1fr; } }
.cp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.cp-breadcrumb a { color: var(--primary); font-weight: 600; }
.cp-breadcrumb svg { width: 14px; height: 14px; stroke: var(--text-muted); transform: scaleX(-1); }
.cp-tag { display: inline-flex; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; color: white; margin-bottom: 16px; }
.cp-info h1 { font-family: var(--font-display); font-size: clamp(24px,3.5vw,36px); font-weight: 800; line-height: 1.35; margin-bottom: 16px; }
.cp-info p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; max-width: 520px; }
.cp-meta-row { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.cp-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.cp-meta-item svg { width: 18px; height: 18px; stroke: var(--primary); }
.cp-meta-item strong { color: var(--text); font-weight: 700; }
.cp-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cp-buttons .btn-primary { padding: 14px 36px; font-size: 16px; border-radius: 12px; }
.cp-buttons .btn-secondary { padding: 14px 36px; font-size: 16px; border-radius: 12px; }

.cp-video-preview { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.cp-video-preview img { width: 100%; height: 340px; object-fit: cover; }
.cp-video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.2); cursor: pointer; transition: background 0.3s; }
.cp-video-play:hover { background: rgba(0,0,0,0.3); }
.cp-play-btn { width: 72px; height: 72px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.cp-play-btn svg { width: 28px; height: 28px; fill: var(--primary); margin-right: -3px; }
.cp-duration-badge { position: absolute; bottom: 16px; right: 16px; padding: 6px 14px; border-radius: 8px; background: rgba(0,0,0,0.65); color: white; font-size: 13px; font-weight: 600; backdrop-filter: blur(4px); }

.cp-body { padding: 60px 28px; }
.cp-body .wrap { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
@media(max-width:900px) { .cp-body .wrap { grid-template-columns: 1fr; } }

.cp-tabs { display: flex; gap: 8px; margin-bottom: 32px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.cp-tab { padding: 12px 22px; font-size: 14px; font-weight: 700; color: var(--text-muted); background: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); cursor: pointer; }
.cp-tab:hover { color: var(--text); }
.cp-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.cp-module { margin-bottom: 16px; }
.cp-module-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--bg-warm); border-radius: 12px; cursor: pointer; transition: var(--transition); }
.cp-module-header:hover { background: var(--primary-pale); }
.cp-module-header h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.cp-module-header .meta { font-size: 12px; color: var(--text-muted); }
.cp-lessons { padding: 8px 0 0 0; }
.cp-lesson { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-radius: 10px; transition: background 0.2s; cursor: pointer; }
.cp-lesson:hover { background: rgba(27,107,74,0.04); }
.cp-lesson.active { background: var(--primary-pale); }
.cp-lesson-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid var(--border); }
.cp-lesson.completed .cp-lesson-icon { background: var(--primary); border-color: var(--primary); }
.cp-lesson.active .cp-lesson-icon { background: var(--accent); border-color: var(--accent); }
.cp-lesson-icon svg { width: 14px; height: 14px; }
.cp-lesson-info { flex: 1; }
.cp-lesson-title { font-size: 14px; font-weight: 500; color: var(--text); }
.cp-lesson.active .cp-lesson-title { font-weight: 700; color: var(--primary); }
.cp-lesson-dur { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.cp-sidebar { }
.cp-price-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.cp-price-val { text-align: center; margin-bottom: 24px; }
.cp-price-val .amount { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--primary); }
.cp-price-val .period { font-size: 14px; color: var(--text-muted); display: block; }
.cp-price-card .btn-primary { width: 100%; padding: 15px; font-size: 16px; border-radius: 12px; margin-bottom: 12px; display: block; text-align: center; }
.cp-price-card .btn-secondary { width: 100%; padding: 15px; font-size: 16px; border-radius: 12px; display: block; text-align: center; }
.cp-includes { margin-top: 28px; }
.cp-includes h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.cp-include-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); }
.cp-include-item svg { width: 18px; height: 18px; stroke: var(--primary); flex-shrink: 0; }

/* Section cards */
.cp-section-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.cp-section-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.cp-section-card h3 svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Benefits / What You Will Learn */
.cp-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:600px) { .cp-benefits-grid { grid-template-columns: 1fr; } }
.cp-benefit-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: var(--primary-pale); border-radius: 10px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.cp-benefit-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }

/* Quick Feature Badges */
.cp-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.cp-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--bg-white); border: 1.5px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.cp-badge svg { width: 16px; height: 16px; }

/* Curriculum meta summary */
.cp-curriculum-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.cp-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); flex-shrink: 0; }

/* Collapsed curriculum modules */
.cp-module.collapsed .cp-lessons { display: none; }

/* Requirements & audience lists */
.cp-req-list { list-style: none; padding: 0; margin: 0; }
.cp-req-list li { position: relative; padding: 10px 0 10px 28px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; border-bottom: 1px solid rgba(0,0,0,0.04); }
.cp-req-list li:last-child { border-bottom: none; }
.cp-req-list li::before { content: ''; position: absolute; right: auto; left: 0; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
/* RTL fix for list bullets */
html[dir="rtl"] .cp-req-list li { padding: 10px 28px 10px 0; }
html[dir="rtl"] .cp-req-list li::before { left: auto; right: 0; }

/* Course description */
.cp-description { font-size: 15px; color: var(--text-secondary); line-height: 1.9; }
.cp-description p { margin-bottom: 16px; }
.cp-description h2, .cp-description h3, .cp-description h4 { font-family: var(--font-display); margin-bottom: 12px; margin-top: 20px; color: var(--text); }

/* Quick info table in sidebar */
.cp-quick-info { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.cp-quick-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 14px; }
.cp-quick-row:last-child { border-bottom: none; }
.cp-quick-label { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.cp-quick-label svg { width: 16px; height: 16px; }
.cp-quick-row strong { color: var(--text); font-weight: 700; }

/* Plan selector in course sidebar */
.cp-plan-selector { display: grid; gap: 10px; margin-bottom: 20px; }
.cp-plan-option { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: var(--transition); background: var(--bg-white); }
.cp-plan-option:hover { border-color: var(--border-hover); }
.cp-plan-option.active { border-color: var(--primary); background: var(--primary-pale); }
.cp-plan-option .plan-name { font-weight: 700; font-size: 14px; }
.cp-plan-option .plan-price { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--primary); }
.cp-plan-option .plan-period { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.cp-all-access-note { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--primary-pale); border-radius: 10px; font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 20px; }
.cp-all-access-note svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Subscription status card (subscribed users) */
.cp-sub-active { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); border: 2px solid #86efac; border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; margin-bottom: 24px; }
.cp-sub-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: #16a34a; color: #fff; font-size: 13px; font-weight: 700; border-radius: 20px; margin-bottom: 16px; }
.cp-sub-badge svg { width: 16px; height: 16px; }
.cp-sub-plan { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.cp-sub-expires { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.cp-sub-expires strong { color: var(--text); }
.cp-sub-access-note { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; background: rgba(22,163,74,0.08); border-radius: 10px; font-size: 13px; color: #16a34a; font-weight: 600; }
.cp-sub-access-note svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Lesson links (enrolled) and locked (not enrolled) */
.cp-lesson-link { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: var(--transition); cursor: pointer; }
.cp-lesson-link:hover { background: var(--primary-pale); color: var(--primary); }
.cp-lesson-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.cp-lesson-locked { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 14px; color: var(--text-muted); opacity: 0.7; }
.cp-lesson-locked svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-muted); }
.cp-lesson-locked .cp-lock-icon { margin-inline-start: auto; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 780px; margin: 0 auto; }
.pricing-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; transition: var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg), 0 0 0 3px var(--primary-pale); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 22px; border-radius: 20px; background: var(--primary); font-size: 12px; font-weight: 700; color: white; }
.pricing-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 24px; }
.price-block { text-align: center; margin-bottom: 28px; }
.price-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; }
.price-cur { font-size: 14px; color: var(--text-muted); }
.price-per { display: block; font-size: 14px; color: var(--text-muted); }
.feat-list { margin-bottom: 28px; }
.feat-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.feat-row:last-child { border-bottom: none; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-check svg { width: 12px; height: 12px; stroke-width: 3; }
.feat-row span { font-size: 14px; color: var(--text-secondary); }
.pricing-card .btn-primary, .pricing-card .btn-secondary { width: 100%; text-align: center; display: block; padding: 15px; font-size: 16px; border-radius: 12px; }

/* ===== REFERRAL ===== */
.ref-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, #0f2b1e 0%, #163b2a 40%, #1a3a2e 70%, #1f3325 100%); padding: 0; }
.ref-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.ref-glow-1 { top: -80px; right: -40px; width: 320px; height: 320px; background: rgba(27,107,74,0.4); }
.ref-glow-2 { bottom: -60px; left: -40px; width: 280px; height: 280px; background: rgba(232,145,58,0.2); }
.ref-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.ref-banner-inner { position: relative; z-index: 2; padding: 64px 48px; text-align: center; }
@media(max-width:768px) { .ref-banner-inner { padding: 48px 24px; } }

/* Badge */
.ref-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 30px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); font-size: 13px; font-weight: 700; color: var(--accent-light); margin-bottom: 24px; backdrop-filter: blur(4px); }
.ref-badge svg { width: 16px; height: 16px; }

/* Title */
.ref-title { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: #fff; line-height: 1.35; margin-bottom: 16px; }
.ref-amount { background: linear-gradient(135deg, var(--accent), #FFD700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 900; }
.ref-desc { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* Steps row */
.ref-steps-row { display: flex; align-items: center; justify-content: center; gap: 0; margin: 48px 0 44px; flex-wrap: wrap; }
.ref-step-connector { width: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ref-step-connector svg { width: 40px; height: 24px; transform: scaleX(-1); }
@media(max-width:768px) { .ref-step-connector { display: none; } .ref-steps-row { gap: 16px; } }

/* Step card */
.ref-step-card { flex: 1 1 200px; max-width: 260px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px 24px; backdrop-filter: blur(8px); transition: var(--transition); text-align: center; }
.ref-step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.ref-step-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ref-step-icon svg { width: 26px; height: 26px; }
.ref-step-icon-1 { background: linear-gradient(135deg, rgba(27,107,74,0.3), rgba(45,155,106,0.2)); color: #6ee7a8; }
.ref-step-icon-2 { background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(99,102,241,0.2)); color: #93c5fd; }
.ref-step-icon-3 { background: linear-gradient(135deg, rgba(232,145,58,0.3), rgba(245,166,35,0.2)); color: #fcd34d; }
.ref-step-num { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.ref-step-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ref-step-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Copy bar */
.ref-copy-bar { display: inline-flex; align-items: center; gap: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; transition: var(--transition); }
.ref-copy-bar:hover { border-color: rgba(255,255,255,0.25); }
.ref-copy-url { display: flex; align-items: center; gap: 10px; padding: 14px 20px; }
.ref-copy-url svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.5; }
.ref-copy-url code { font-family: monospace; font-size: 14px; color: rgba(255,255,255,0.7); white-space: nowrap; max-width: 280px; overflow: hidden; text-overflow: ellipsis; }
@media(max-width:480px) { .ref-copy-url code { max-width: 160px; } }
.ref-copy-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; font-family: var(--font-body); border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.ref-copy-btn:hover { background: var(--primary-light); }
.ref-copy-btn svg { width: 16px; height: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.test-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.test-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.test-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.test-stars svg { width: 16px; height: 16px; fill: var(--accent); }
.test-card blockquote { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.test-author-info .name { font-weight: 700; font-size: 14px; }
.test-author-info .role { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(180deg, #1a2332 0%, #141b27 100%); color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 28px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; max-width: 1260px; margin: 0 auto; padding-bottom: 48px; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .logo-text { color: #fff; }
.footer .logo-text span { color: var(--primary-light); }
.footer-about .logo { margin-bottom: 6px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-top: 16px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
.footer-social a:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); border-color: transparent; }
.footer-social a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a:hover { color: white; background: var(--primary); }
.footer-col h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 20px; color: #fff; position: relative; }
.footer-col h4::after { content: ''; display: block; width: 24px; height: 2px; background: var(--primary); margin-top: 8px; border-radius: 2px; }
.footer-col a, .footer-col li { display: flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.45); padding: 6px 0; transition: all 0.25s; list-style: none; }
.footer-col a:hover { color: var(--primary-light); padding-inline-start: 4px; }
.footer-col .contact-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(27,107,74,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-col .contact-icon svg { width: 14px; height: 14px; stroke: var(--primary-light); fill: none; stroke-width: 2; }
.footer-bottom { max-width: 1260px; margin: 0 auto; padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== MODAL ===== */
.modal-bg { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.35); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-white); border-radius: var(--radius-xl); padding: 44px 40px; width: 100%; max-width: 430px; box-shadow: var(--shadow-xl); transform: translateY(16px); transition: transform 0.35s; position: relative; }
.modal-bg.open .modal { transform: translateY(0); }
.modal-x { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; border-radius: 10px; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-x:hover { background: var(--border); }
.modal-x svg { width: 16px; height: 16px; stroke: var(--text-secondary); stroke-width: 2; }
.modal h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.modal .sub { font-size: 14px; color: var(--text-secondary); text-align: center; margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; font-size: 15px; font-family: var(--font-body); color: var(--text); background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; outline: none; transition: border-color 0.25s; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.modal .btn-primary { width: 100%; padding: 14px; font-size: 16px; border-radius: 12px; margin-top: 6px; }
.modal-switch { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-secondary); }
.modal-switch button { background: none; color: var(--primary); font-weight: 700; font-size: 14px; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(60px); padding: 13px 28px; border-radius: 12px; background: var(--primary); color: white; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 3000; opacity: 0; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: #DC2626; }

/* ===== BACK TO TOP ===== */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 100; opacity: 0; pointer-events: none; transition: var(--transition); }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--primary); border-color: var(--primary); }
.back-top:hover svg { stroke: white; }
.back-top svg { width: 18px; height: 18px; stroke: var(--text-secondary); stroke-width: 2; }

/* ===== DASHBOARD ===== */
.dashboard-section { padding-top: 120px; }
.dash-header { margin-bottom: 40px; }
.dash-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.dash-header p { color: var(--text-secondary); }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.dash-stat-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.dash-stat-card .stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--primary); }
.dash-stat-card .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== 404 PAGE ===== */
.error-404 { text-align: center; padding: 160px 28px 100px; }
.error-404 h1 { font-family: var(--font-display); font-size: 120px; font-weight: 900; color: var(--primary); opacity: 0.15; }
.error-404 h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.error-404 p { color: var(--text-secondary); margin-bottom: 32px; }

/* ===== SEARCH RESULTS ===== */
.search-header { padding: 140px 28px 40px; text-align: center; background: var(--bg-warm); }
.search-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.search-header p { color: var(--text-secondary); margin-top: 8px; }

/* ===== CATEGORY HERO ===== */
.cat-hero { padding: 140px 28px 50px; background: linear-gradient(135deg, var(--primary-pale), var(--bg)); text-align: center; }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:768px) { .about-story { grid-template-columns: 1fr; } }
.about-story-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 300px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:768px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.about-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.about-stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 600; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:900px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .about-values { grid-template-columns: 1fr; } }
.about-value-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.about-value-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.about-value-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.about-value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.about-cta { background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale)); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 56px 40px; text-align: center; }
.about-cta h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 14px; }
.about-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== FAQ PAGE ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.faq-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px 24px; background: none; font-size: 15px; font-weight: 700; font-family: var(--font-display); color: var(--text); text-align: inherit; cursor: pointer; gap: 16px; }
.faq-toggle:hover { color: var(--primary); }
.faq-question { flex: 1; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.faq-icon svg { transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--primary-pale); color: var(--primary); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: block; background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); text-align: center; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.contact-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--text-muted); }
.contact-form-wrap { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
