/* ============================================
   Learn AI Hub - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563EB;
  --secondary: #0EA5E9;
  --accent: #F59E0B;
  --success: #10B981;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --text-light: #64748B;
  --border: #E2E8F0;
  --footer-bg: #0F172A;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --shadow: 0 4px 12px rgba(15,23,42,.04);
  --shadow-hover: 0 16px 40px rgba(15,23,42,.08);
  --shadow-btn: 0 8px 24px rgba(37,99,235,.3);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Plus Jakarta Sans','Noto Sans JP',sans-serif;
  --font-body: 'Inter','Noto Sans JP',sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }

/* Layout */
.xk2 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mn3 { padding-top: 80px; min-height: 60vh; }
.sc4 { padding: 80px 0; }
.sa5 { padding: 80px 0; background: var(--bg); }
.gr6 { display: grid; gap: 24px; }
.g27 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.g38 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g49 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.g5a { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.fx0 { display: flex; }
.fc1 { display: flex; align-items: center; justify-content: center; }
.fb2 { display: flex; align-items: center; justify-content: space-between; }
.fl3 { display: flex; flex-direction: column; }
.gs4 { gap: 8px; }
.gm5 { gap: 16px; }
.gl6 { gap: 32px; }

/* Header */
.hd7 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.hs8 { border-bottom-color: var(--border); box-shadow: 0 2px 12px rgba(15,23,42,.04); }
.hd7 .xk2 { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nv9 { display: flex; align-items: center; gap: 32px; }
.nl0 {
  font-weight: 500; font-size: .9rem; color: var(--text);
  padding: 8px 0; position: relative; transition: color var(--transition);
}
.nl0::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width var(--transition);
}
.nl0:hover, .na1 { color: var(--primary); }
.nl0:hover::after, .na1::after { width: 100%; }
.lg2 { display: flex; align-items: center; gap: 8px; }
.li3 { height: 36px; width: auto; }
.hm4 {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hm4 span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); border-radius: 2px; }
.ha5 span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ha5 span:nth-child(2) { opacity: 0; }
.ha5 span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mm6 {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  backdrop-filter: blur(20px);
}
.mo7 { display: flex; }
.mn8 { font-size: 1.2rem; font-weight: 600; color: var(--text); padding: 12px; }
.mn8:hover { color: var(--primary); }

/* Hero */
.hr9 {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(14,165,233,.03));
  position: relative; overflow: hidden;
}
.hr9::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.06), transparent 70%);
  border-radius: 50%;
}
.hr9::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.05), transparent 70%);
  border-radius: 50%;
}
.hc0 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.ht1 { max-width: 560px; }
.ht3 {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 20px;
}
.gt6 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs4 { font-size: 1.25rem; font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
.hd5 { color: var(--text-light); margin-bottom: 32px; font-size: 1rem; }
.hb7 { display: flex; gap: 16px; flex-wrap: wrap; }
.hv2 { display: flex; justify-content: center; align-items: center; }
.hv2 img { max-width: 100%; height: auto; }

/* Buttons */
.bt8 {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; transition: all var(--transition);
  font-family: var(--font-body); text-align: center;
}
.bp9 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,.15);
}
.bp9:hover { box-shadow: var(--shadow-btn); transform: translateY(-2px); color: #fff; }
.bo0 {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.bo0:hover { background: var(--primary); color: #fff; }
.bs1 { padding: 8px 16px; font-size: .85rem; }
.bl2 { padding: 16px 36px; font-size: 1.05rem; }
.bi3 { padding: 10px; border-radius: 50%; }

/* Stats Bar */
.sb4 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: -40px; position: relative; z-index: 2;
  box-shadow: 0 8px 32px rgba(15,23,42,.06);
}
.si5 { text-align: center; }
.sn6 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.sl7 { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

/* Cards */
.cd8 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.ch5:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.ci9 { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.cb0 { padding: 20px; }
.ct1 {
  font-family: var(--font-heading); font-size: 1.05rem;
  font-weight: 700; margin: 8px 0;
}
.ct1 a { color: var(--text); }
.ct1 a:hover { color: var(--primary); }
.cx2 { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.cm3 { display: flex; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.cf4 { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.cz6 { display: grid; grid-template-columns: 200px 1fr; }
.cz6 .ci9 { width: 100%; height: 100%; aspect-ratio: auto; }

/* Course cards */
.cc7 { display: flex; flex-direction: column; }
.cw8 { position: relative; overflow: hidden; display: block; }
.cw8 img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform var(--transition); }
.ch5:hover .cw8 img { transform: scale(1.03); }
.cb9 { position: absolute; top: 12px; left: 12px; z-index: 1; }
.cp0 { font-size: .8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.cr1 { display: flex; align-items: center; gap: 6px; }
.ct2 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; line-height: 1.5; }
.ct2 a { color: var(--text); }
.ct2 a:hover { color: var(--primary); }
.ce3 {
  font-size: .88rem; color: var(--text-light); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: 8px;
}
.cm4 { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }
.cl5 { font-size: .75rem; font-weight: 600; }
.cd6 { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.cc8 { font-size: .8rem; color: var(--success); display: flex; align-items: center; gap: 4px; font-weight: 500; }

/* Course info card */
.ci0 {
  background: linear-gradient(135deg, rgba(37,99,235,.03), rgba(14,165,233,.02));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-bottom: 32px;
}
.cr2 { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cr2:last-of-type { border-bottom: none; }
.cl3 { font-weight: 600; color: var(--text-light); min-width: 120px; font-size: .9rem; }
.cv4 { font-weight: 500; }

/* Badges */
.bd0 {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 600;
}
.bf1 { background: var(--success); color: #fff; }
.bl3 { border: 1px solid var(--border); background: var(--surface); }
.bb5 { color: var(--success); border-color: rgba(16,185,129,.3); }
.bm6 { color: var(--primary); border-color: rgba(37,99,235,.3); }
.ba7 { color: #DC2626; border-color: rgba(220,38,38,.3); }
.bc4 { background: rgba(16,185,129,.1); color: var(--success); }

/* Rating */
.rt8 { display: flex; align-items: center; gap: 6px; }
.rs9 { display: inline-flex; align-items: center; gap: 2px; }
.rn0 { font-weight: 600; font-size: .85rem; color: var(--text); }

/* Category cards */
.kc5 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: all var(--transition); cursor: pointer; text-decoration: none; display: block;
}
.kc5:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.ki6 { width: 56px; height: 56px; margin: 0 auto 16px; }
.kn7 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.kd8 { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.kc9 { font-size: .8rem; color: var(--primary); font-weight: 600; margin-top: 12px; }

/* Section headers */
.sh3 { text-align: center; margin-bottom: 48px; }
.st4 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.ss5 { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Steps / How it works */
.sp6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.sc7 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  position: relative; transition: all var(--transition);
}
.sc7:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sn8 {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.si1 { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--primary); }
.st9 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.sd0 { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* FAQ */
.fq2 { max-width: 800px; margin: 0 auto; }
.fi3 { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--surface); }
.fq4 {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: .95rem;
  list-style: none; transition: background var(--transition);
}
.fq4:hover { background: rgba(37,99,235,.02); }
.fq4::-webkit-details-marker { display: none; }
.fi6 { flex-shrink: 0; transition: transform var(--transition); color: var(--primary); }
details[open] .fi6 { transform: rotate(180deg); }
.fa5 { padding: 0 24px 18px; font-size: .9rem; color: var(--text-light); line-height: 1.8; }

/* Newsletter */
.nw7 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius); padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.nw7::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  border-radius: 50%;
}
.nt8 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.nf9 { display: flex; gap: 12px; max-width: 480px; margin: 24px auto 0; position: relative; z-index: 1; }
.ni0 {
  flex: 1; padding: 14px 20px; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.15);
  color: #fff; font-size: .95rem; font-family: var(--font-body);
}
.ni0::placeholder { color: rgba(255,255,255,.6); }
.ni0:focus { outline: none; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.2); }
.nb1 {
  padding: 14px 28px; border-radius: var(--radius-sm);
  background: #fff; color: var(--primary); font-weight: 700;
  border: none; cursor: pointer; font-size: .95rem; font-family: var(--font-body);
  transition: all var(--transition);
}
.nb1:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.nn2 { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 16px; position: relative; z-index: 1; }

/* Footer */
.ft3 { background: var(--footer-bg); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.fg4 { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.fc5 {}
.ft6 { font-family: var(--font-heading); font-weight: 700; color: #fff; margin-bottom: 20px; font-size: 1rem; }
.fl7 { display: block; color: rgba(255,255,255,.6); padding: 6px 0; font-size: .9rem; transition: color var(--transition); }
.fl7:hover { color: #fff; }
.fd8 { font-size: .88rem; line-height: 1.8; margin-bottom: 16px; color: rgba(255,255,255,.6); }
.fb9 { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.fl0 { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.fl0 a { color: rgba(255,255,255,.5); font-size: .8rem; }
.fl0 a:hover { color: #fff; }
.fc1x { font-size: .8rem; color: rgba(255,255,255,.4); }
.fl2x { height: 32px; width: auto; margin-bottom: 16px; }

/* Sidebar */
.sb3x { position: sticky; top: 96px; }
.wg4 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.wt5 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.wl6 { list-style: none; }
.wi7 { padding: 8px 0; border-bottom: 1px solid var(--border); }
.wi7:last-child { border-bottom: none; }
.wi7 a { display: flex; justify-content: space-between; align-items: center; color: var(--text); font-size: .9rem; }
.wi7 a:hover { color: var(--primary); }
.wc8 {
  background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(14,165,233,.03));
  border: 2px solid var(--primary); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.sf9x { display: flex; gap: 8px; }
.si0x {
  flex: 1; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9rem; font-family: var(--font-body);
  background: var(--bg);
}
.si0x:focus { outline: none; border-color: var(--primary); }
.sb1x {
  padding: 10px 16px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-size: .85rem; transition: all var(--transition);
}
.sb1x:hover { background: var(--secondary); }

/* Breadcrumbs */
.bc2x {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 16px 0; font-size: .85rem; color: var(--text-light);
}
.bi3x a { color: var(--text-light); }
.bi3x a:hover { color: var(--primary); }
.bs4x { color: var(--border); }

/* Course page content */
.cc5x {}
.ch6x { margin-bottom: 32px; }
.ct7x { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.ct8x { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px 14px; font-size: .8rem; color: var(--text-light); }
.cn9x { display: flex; gap: 16px; margin-top: 32px; }
.tb0x {
  background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px;
  font-size: .9rem; color: #047857;
}
.rc1x { margin-top: 48px; }
.am2x { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--text-light); margin-bottom: 20px; }
.ab3x { line-height: 1.9; }
.ab3x h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.ab3x h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin: 28px 0 12px; }
.ab3x p { margin-bottom: 16px; }
.ab3x ul, .ab3x ol { margin: 12px 0 20px 24px; }
.ab3x li { margin-bottom: 8px; }
.ab3x blockquote {
  background: rgba(37,99,235,.04); border-left: 4px solid var(--primary);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0; font-size: .95rem;
}
.ab3x a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.ab3x a:hover { color: var(--secondary); }

/* Page layouts */
.ph4x { padding: 32px 0 24px; }
.pt5x { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; }
.pc6x { padding: 0 0 60px; }
.cs7x { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.cm8x { min-width: 0; }

/* About page */
.ms9x { font-size: 1.1rem; line-height: 1.9; max-width: 800px; }
.vg0x { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vc1x {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all var(--transition);
}
.vc1x:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ag2x { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ai3x { text-align: center; padding: 24px; }
.pg4x { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc5x {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.pc5x:hover { box-shadow: var(--shadow-hover); }

/* Contact form */
.cf6x { max-width: 640px; }
.fg7x { margin-bottom: 20px; }
.fl8x { display: block; font-weight: 600; margin-bottom: 8px; font-size: .9rem; }
.fi9x, .ft0y, .fs1y {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font-body);
  background: var(--surface); transition: border-color var(--transition);
}
.fi9x:focus, .ft0y:focus, .fs1y:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.ft0y { min-height: 160px; resize: vertical; }
.fn2y { font-size: .85rem; color: var(--text-light); margin-top: 8px; }

/* Legal */
.lc3y { max-width: 800px; line-height: 1.9; }
.lc3y h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin: 36px 0 16px; }
.lc3y h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 12px; }
.lc3y p { margin-bottom: 14px; }
.lc3y ul { margin: 12px 0 16px 24px; }
.lc3y li { margin-bottom: 6px; }
.ls4y { margin-bottom: 32px; }
.lt5y { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .9rem; }
.lt5y th, .lt5y td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.lt5y th { background: var(--bg); font-weight: 600; }

/* Swiper */
.sw6y { position: relative; }
.sw7y { overflow: hidden; }
.sw8y { height: auto; }

/* Cookie Banner */
.ck9y {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 20px; box-shadow: 0 -4px 24px rgba(15,23,42,.06);
  display: none;
}
.ck0y { font-size: .9rem; color: var(--text-light); margin-bottom: 12px; }
.ck1y { display: flex; gap: 12px; flex-wrap: wrap; }
.ck2y {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000; display: none; align-items: center; justify-content: center;
}
.ck3y { position: absolute; inset: 0; background: rgba(15,23,42,.5); }
.ck4y {
  background: var(--surface); border-radius: var(--radius);
  padding: 32px; max-width: 480px; width: 90%; position: relative; z-index: 1;
  max-height: 80vh; overflow-y: auto;
}
.ck5y { padding: 16px 0; border-bottom: 1px solid var(--border); }
.ck5y label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-weight: 500; }

/* Pagination */
.pg6y { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pn7y {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-weight: 600; font-size: .9rem; color: var(--text);
  transition: all var(--transition); text-decoration: none;
}
.pn7y:hover { border-color: var(--primary); color: var(--primary); }
.pa8y { background: var(--primary); border-color: var(--primary); color: #fff; }
.pa8y:hover { color: #fff; }
.pa9y { color: var(--text-light); }

/* Utility */
.tc0y { text-align: center; }
.tp1y { color: var(--primary); }
.tl2y { color: var(--text-light); }
.ts3y { font-size: .85rem; }
.mb4y { margin-bottom: 8px; }
.mb5y { margin-bottom: 16px; }
.mb6y { margin-bottom: 32px; }
.mt7y { margin-top: 16px; }
.mt8y { margin-top: 32px; }
.hd9y { display: none; }
.vs0y { display: block; }
.sr1y { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.ir2y { max-width: 100%; height: auto; }
.cb3y {
  background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(14,165,233,.03));
  border: 2px solid var(--primary); border-radius: var(--radius);
  padding: 32px; text-align: center; margin: 32px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .g5a { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .cs7x { grid-template-columns: 1fr; }
  .sb3x { position: static; }
  .fg4 { grid-template-columns: repeat(2, 1fr); }
  .hc0 { grid-template-columns: 1fr; gap: 40px; }
  .hv2 { order: -1; }
  .hv2 img { max-width: 320px; margin: 0 auto; }
  .ht3 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  .nv9 { display: none; }
  .hm4 { display: flex; }
  .sc4, .sa5 { padding: 48px 0; }
  .g38 { grid-template-columns: repeat(2, 1fr); }
  .g5a { grid-template-columns: repeat(2, 1fr); }
  .sb4 { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 16px; }
  .sp6 { grid-template-columns: 1fr; }
  .fg4 { grid-template-columns: 1fr; }
  .vg0x, .ag2x, .pg4x { grid-template-columns: 1fr; }
  .st4 { font-size: 1.6rem; }
  .ht3 { font-size: 2rem; }
  .nf9 { flex-direction: column; }
  .cz6 { grid-template-columns: 1fr; }
  .nw7 { padding: 40px 24px; }
  .nt8 { font-size: 1.4rem; }
  .cn9x { flex-direction: column; }
  .fl0 { gap: 12px; }
}
@media (max-width: 480px) {
  .xk2 { padding: 0 16px; }
  .g38, .g27 { grid-template-columns: 1fr; }
  .g5a { grid-template-columns: 1fr; }
  .sb4 { grid-template-columns: 1fr; margin-top: -20px; }
  .ht3 { font-size: 1.7rem; }
  .hb7 { flex-direction: column; }
  .bt8 { width: 100%; justify-content: center; }
  .hr9 { padding: 100px 0 60px; }
}
