:root {
  --text-primary: #1e1b2e;
  --primary-100: #c4b5fd;
  --primary-500: #7c3aed;
  --primary-700: #6d28d9;
  --primary-800: #4c1d95;
  --accent-400: #7c3aed;
  --accent-500: #6d28d9;
  --white: #ffffff;
  --background: #faf9ff;
  --border: #ede9fe;
  --surface-100: #f5f3ff;
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #faf9ff;
  color: #1e1b2e;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid #ede9fe; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: 60px; gap: 0; }
.logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, #7c3aed, #a855f7); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.logo-text { font-size: 17px; font-weight: 900; color: #1e1b2e; letter-spacing: -.4px; }
.logo-text .coral { color: #f97316; }
.nav-items { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; flex: 1; justify-content: center; }
.nav-items::-webkit-scrollbar { display: none; }
.nav-item { text-decoration: none; font-size: 13px; font-weight: 600; color: #6b7280; padding: 0 13px; height: 60px; display: flex; align-items: center; white-space: nowrap; border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: all .15s; overflow: hidden; }
.nav-item:hover { color: #7c3aed; border-bottom-color: #c4b5fd; }
.nav-item.active { color: #7c3aed; border-bottom-color: #7c3aed; }
.nav-cta { margin-left: auto; flex-shrink: 0; background: #7c3aed; color: #fff; font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.nav-cta:hover { background: #6d28d9; }

/* ── HAMBURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e1b2e;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
body.nav-open {
  overflow: hidden;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 0 32px;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-nav-item {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  padding: 16px 28px;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav-item:hover { color: #7c3aed; background: #faf9ff; }
.mobile-nav-item.active { color: #7c3aed; font-weight: 700; }
.mobile-menu-cta-wrap {
  padding: 28px 28px 0;
}
.mobile-nav-cta {
  display: block;
  text-align: center;
  background: #7c3aed;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-nav-cta:hover { background: #6d28d9; color: #fff; }

@media (max-width: 1180px) {
  .nav-items { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── LOGO ── */
.logo {
  max-width: 170px;
}

.logo a {
  display: flex;
}

/* ── HERO ── */
.hero { background: linear-gradient(145deg, #1e1b2e 0%, #2e1a47 45%, #3b1f63 100%); padding: 72px 28px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: -60px; width: 400px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%); }
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hero-top { text-align: center; margin-bottom: 52px; }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); border-radius: 100px; padding: 5px 16px; font-size: 12px; font-weight: 700; letter-spacing: .5px; color: #fdba74; margin-bottom: 22px; overflow: hidden; }
.hero h1 { font-size: 56px; font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 16px; }
.hero h1 .coral { color: #fb923c; }
.hero h1 .violet { color: #c4b5fd; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto 44px; line-height: 1.65; }

/* JOURNEY STEP SELECTOR */
.journey-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 0; }
.js-card { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 16px 16px 0 0; border-bottom: none; padding: 22px 18px 28px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all .2s; position: relative; overflow: hidden; }
.js-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(249,115,22,0.4); }
.js-card.highlight { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.35); }
.js-step { font-family: monospace; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.js-icon { font-size: 26px; line-height: 1; }
.js-title { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; }
.js-desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.js-arrow { font-size: 12px; font-weight: 700; color: #fb923c; margin-top: auto; }

/* ── CORAL QUICK LINKS STRIP ── */
.quicklinks { background: #f97316; padding: 12px 0; }
.ql-inner { margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 16px; overflow-x: auto; scrollbar-width: none; flex-wrap: wrap; justify-content: center;}
.ql-inner::-webkit-scrollbar { display: none; }
.ql-label { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); white-space: nowrap; flex-shrink: 0; }
.ql-div { width: 1px; height: 18px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.ql-link { display: inline-flex; align-items: center; gap: 0; font-size: 13px; font-weight: 700; color: #fff; text-decoration: none; white-space: nowrap; background: rgba(255,255,255,0.12); border-radius: 100px; padding: 5px 16px; flex-shrink: 0; transition: background .15s; overflow: hidden; line-height: 1.4; }
.ql-link:hover { background: rgba(255,255,255,0.22); }

/* ── SECTION ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section-hd { display: flex; align-items: flex-end; margin-bottom: 20px; padding-top: 52px; }
.s-eye { font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #7c3aed; margin-bottom: 6px; }
.section-hd h2 { font-size: 26px; font-weight: 900; color: #1e1b2e; letter-spacing: -.5px; margin-bottom: 0; }
.s-link { font-size: 13px; font-weight: 700; color: #7c3aed; text-decoration: none; margin-left: auto; border-bottom: 1.5px solid #ede9fe; padding-bottom: 1px; }
.s-link:hover { color: #6d28d9; }

/* ── RESUME LEAD ── */
.resume-lead { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.rl-main { background: #1e1b2e; border-radius: 18px; padding: 32px 32px 0; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: opacity .15s; }
.rl-main:hover { opacity: .92; }
.rl-badge { display: inline-flex; align-items: center; gap: 6px; background: #f97316; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; width: fit-content; }
.rl-main .rl-title { font-size: 24px; font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -.3px; margin-bottom: 10px; display: block; }
.rl-main .rl-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; display: block; }
.rl-vis { font-size: 72px; text-align: right; line-height: 1; margin-bottom: 0; padding-top: 8px; display: block; }
.rl-read { background: rgba(255,255,255,0.08); padding: 14px 32px; margin: 0 -32px; font-size: 13px; font-weight: 700; color: #c4b5fd; display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.rl-side { display: flex; flex-direction: column; gap: 12px; }
.rl-card { background: #fff; border-radius: 14px; border: 1.5px solid #ede9fe; padding: 18px 20px; text-decoration: none; display: flex; gap: 14px; align-items: flex-start; transition: all .15s; }
.rl-card:hover { border-color: #7c3aed; box-shadow: 0 4px 20px rgba(124,58,237,0.1); }
.rl-num { font-size: 22px; font-weight: 900; color: #ede9fe; flex-shrink: 0; line-height: 1; min-width: 30px; }
.rl-body .eye { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #7c3aed; margin-bottom: 4px; display: block; }
.rl-body .rl-body-title { font-size: 14.5px; font-weight: 700; color: #1e1b2e; line-height: 1.3; display: block; }

/* ── STEP-CARD GRID ── */
.step-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card { background: #fff; border-radius: 14px; border: 1.5px solid #ede9fe; padding: 22px 22px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all .15s; position: relative; }
.step-card:hover { border-color: #7c3aed; box-shadow: 0 6px 24px rgba(124,58,237,0.1); transform: translateY(-2px); }
.sc-step { position: absolute; top: 16px; right: 16px; font-family: monospace; font-size: 11px; font-weight: 700; color: #c4b5fd; }
.sc-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #7c3aed; }
.step-card .step-title { font-size: 15.5px; font-weight: 800; color: #1e1b2e; line-height: 1.3; padding-right: 36px; display: block; }
.step-card .step-desc { font-size: 13.5px; color: #64748b; line-height: 1.6; flex: 1; display: block; }
.sc-read { font-size: 12.5px; font-weight: 700; color: #7c3aed; margin-top: 4px; }

/* ── VIOLET BAND ── */
.violet-band { background: linear-gradient(135deg, #2e1a47, #4c1d95, #5b21b6); border-radius: 20px; padding: 48px 44px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; margin-top: 52px; }
.vb-left .s-eye { color: #c4b5fd; margin-bottom: 10px; }
.vb-left h2 { font-size: 30px; font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 12px; }
.vb-left p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.vb-cta { display: inline-flex; align-items: center; gap: 8px; background: #f97316; color: #fff; font-size: 14px; font-weight: 800; padding: 12px 22px; border-radius: 10px; text-decoration: none; transition: background .15s; }
.vb-cta:hover { background: #ea580c; }
.vb-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vb-link { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 18px; text-decoration: none; transition: background .15s; }
.vb-link:hover { background: rgba(255,255,255,0.14); }
.vb-link-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #c4b5fd; margin-bottom: 5px; display: block; }
.vb-link-title { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.3; display: block; }

/* ── CATEGORY TILES ── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cat-tile { border-radius: 14px; padding: 24px 18px; text-decoration: none; display: flex; flex-direction: column; gap: 8px; min-height: 120px; transition: all .15s; }
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.ct-icon { font-size: 26px; line-height: 1; }
.ct-name { font-size: 14.5px; font-weight: 800; color: #fff; line-height: 1.2; }
.ct-sub { font-size: 11.5px; color: rgba(255,255,255,0.6); }
.cc-resume { background: linear-gradient(145deg,#1e1b4b,#3730a3); }
.cc-job { background: linear-gradient(145deg,#0c1a2e,#1d4ed8); }
.cc-interview { background: linear-gradient(145deg,#1a0a2e,#7c3aed); }
.cc-salary { background: linear-gradient(145deg,#1a1000,#d97706); }
.cc-change { background: linear-gradient(145deg,#0a1a10,#16a34a); }
.cc-skills { background: linear-gradient(145deg,#0a1a2e,#0891b2); }
.cc-workplace { background: linear-gradient(145deg,#1a0a14,#be185d); }
.cc-free { background: linear-gradient(145deg,#1a0010,#dc2626); }

/* ── 4-COL LIST ── */
.list-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.lcol-hd { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #7c3aed; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #ede9fe; }
.lcol-items { display: flex; flex-direction: column; }
.litem { display: flex; align-items: flex-start; gap: 8px; padding: 10px 0; border-bottom: 1px solid #f8f7ff; text-decoration: none; }
.litem:last-child { border-bottom: none; }
.litem:hover .lt { color: #7c3aed; }
.li-dot { width: 5px; height: 5px; background: #c4b5fd; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.lt { font-size: 13.5px; font-weight: 600; color: #1e1b2e; line-height: 1.35; transition: color .15s; }

/* ── SALARY + NEGOTIATION ── */
.salary-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sal-card { background: #fff; border-radius: 16px; border: 1.5px solid #ede9fe; padding: 28px; }
.sal-card h3 { font-size: 17px; font-weight: 800; color: #1e1b2e; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #faf9ff; display: flex; align-items: center; gap: 8px; }
.sal-list { display: flex; flex-direction: column; }
.sal-item { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid #faf9ff; text-decoration: none; font-size: 14px; font-weight: 600; color: #1e1b2e; transition: color .15s; }
.sal-item:last-child { border-bottom: none; }
.sal-item:hover { color: #7c3aed; }
.sal-item::before { content: "→"; color: #c4b5fd; font-size: 13px; flex-shrink: 0; }

/* ── CAREER CHANGE CORAL STRIP ── */
.change-strip { background: #fff7ed; border: 2px solid #fed7aa; border-radius: 20px; padding: 36px 40px; display: grid; grid-template-columns: 240px 1fr; gap: 16px; align-items: start; margin-top: 52px; }
.chs-left .s-eye { color: #f97316; margin-bottom: 8px; }
.chs-left h3 { font-size: 22px; font-weight: 900; color: #1e1b2e; line-height: 1.2; letter-spacing: -.3px; }
.chs-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.chs-link { background: #fff; border: 1.5px solid #fed7aa; border-radius: 12px; padding: 14px 16px; text-decoration: none; transition: all .15s; }
.chs-link:hover { border-color: #f97316; box-shadow: 0 4px 16px rgba(249,115,22,0.12); }
.chs-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #f97316; margin-bottom: 5px; display: block; }
.chs-title { font-size: 13.5px; font-weight: 700; color: #1e1b2e; line-height: 1.3; display: block; }

/* ── DARK SKILLS SECTION ── */
.skills-dark { background: #1e1b2e; border-radius: 20px; padding: 48px 44px; margin-top: 52px; }
.sk-hd { display: flex; align-items: flex-end; margin-bottom: 24px; }
.sk-hd-left .s-eye { color: #c4b5fd; margin-bottom: 6px; }
.sk-hd-left h2 { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 0; }
.sk-all { font-size: 13px; font-weight: 700; color: #c4b5fd; text-decoration: none; margin-left: auto; border-bottom: 1.5px solid rgba(196,181,253,0.3); }
.sk-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.sk-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; text-decoration: none; transition: background .15s; display: flex; flex-direction: column; gap: 6px; }
.sk-card:hover { background: rgba(196,181,253,0.1); border-color: rgba(196,181,253,0.2); }
.sk-tag { font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #c4b5fd; }
.sk-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }

/* ── FOOTER ── */
footer { background: #1e1b2e; color: rgba(255,255,255,0.5); padding: 52px 28px 28px; margin-top: 64px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-brand-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.4px; margin-bottom: 6px; }
.footer-brand-name .coral { color: #fb923c; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35) !important; line-height: 1.7; max-width: 300px; margin-top: 8px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: #c4b5fd; }
.footer-rule { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: #c4b5fd; }
.footer-logo { max-width: 120px; }

.pb-52 { padding-bottom: 52px; }

@media (max-width: 1024px) {
  .hero { padding-bottom: 24px; }
  .hero h1 { font-size: 40px; }
  .journey-steps { grid-template-columns: repeat(3,1fr); }
  .js-card { border-radius: 16px; border-bottom: 1px; }
  .resume-lead { grid-template-columns: 1fr; }
  .violet-band { grid-template-columns: 1fr; padding: 24px; }
  .vb-links { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .list-4 { grid-template-columns: repeat(2,1fr); }
  .salary-section { grid-template-columns: 1fr; }
  .change-strip { grid-template-columns: 1fr; padding: 24px;}
  .skills-dark { padding: 24px }
  .chs-links { grid-template-columns: 1fr 1fr; }
  .sk-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-top .logo { margin: 0 auto 16px; }
  .footer-brand p { max-width: auto;}
}

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero .hero-sub { font-size: 16px; }
  .journey-steps { grid-template-columns: 1fr; }
  .step-grid, .cat-grid, .list-4, .sk-grid { grid-template-columns: 1fr; }
  .chs-links { grid-template-columns: 1fr; }
  .footer-top { gap: 24px; }
}

/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* FONTS RESET */
.pages h1,
.pages h2 {
  font-weight: 700;
  color: var(--text);
}

.pages h1,
.pages h2,
.pages h3,
.pages p,
.pages strong {
  color: var(--text);
}

.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* TABLE RESET */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--accent-400) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--background) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* CONTACT US FORM */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--bs-gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--accent-400);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--bs-gray-600);
}

#contact-form button {
  background: var(--accent-400);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--primary-800);
  background: var(--surface-100);
  border-color: var(--primary-100);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--primary-700);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%237c3aed'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: var(--primary-500);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
