/* ═══════════════════════════════════════════════════
   ATTENDIFY — SHARED PAGES CSS
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --primary: #2D3FE0;
  --secondary: #7C3AED;
  --grad: linear-gradient(135deg, #2D3FE0, #7C3AED);
  --bg: #f0f2f8;
  --text: #1a1a2e;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --success: #16a34a;
}

body {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 70% 50% at 5% 0%, rgba(45,63,224,.06) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 100%, rgba(124,58,237,.05) 0%, transparent 50%);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: #c7cbff; border-radius: 3px; }

/* ══ NAVBAR ══ */
nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.1); }

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.3rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .92rem; font-weight: 600; color: #4b5563; transition: color .2s; }
.nav-links a:hover { color: #111; }
.nav-cta {
  background: var(--grad) !important; color: #fff !important;
  padding: 8px 20px; border-radius: 50px; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(45,63,224,.3);
  -webkit-text-fill-color: #fff !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,63,224,.45) !important; }

.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: #374151; }
.nav-mobile-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }

@media (max-width: 768px) {
  .nav-mobile-btn { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; inset-inline: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; border-bottom: 1px solid #f1f5f9; }
  .nav-cta { margin: 12px 24px; display: block; text-align: center; border-radius: 12px !important; }
}

/* ══ CONTAINER ══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ══ PAGE HERO ══ */
.page-hero {
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  padding: 130px 24px 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .18;
  animation: blobFloat 9s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: #2D3FE0; top: -200px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #7C3AED; bottom: -150px; left: -80px; animation-delay: -4s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.04); }
}

.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(45,63,224,.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }

.page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,63,224,.1); border: 1px solid rgba(45,63,224,.25);
  padding: 6px 18px; border-radius: 50px;
  font-size: .83rem; font-weight: 700; color: var(--primary);
  margin-bottom: 20px;
}
.page-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.page-hero-content h1 {
  /* Reserve space and reduce CLS: use system fallback sizing until webfont loads */
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.24; margin-bottom: 16px; color: var(--text);
}
.grad-text {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero-content p {
  font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto;
}

/* ══ SECTIONS ══ */
.section { padding: 72px 0; }
.section-alt { background: rgba(255,255,255,.7); }
.section-grad {
  background: var(--grad);
  color: #fff;
}
.section-grad .stat-lbl { color: rgba(255,255,255,.8); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 1rem; }

/* ══ TWO COL ══ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

/* ══ INFO CARD ══ */
.info-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(45,63,224,.06);
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(45,63,224,.12); }
.gradient-border { border-top: 3px solid; border-image: var(--grad) 1; }
.info-icon { font-size: 2.4rem; margin-bottom: 14px; }
.info-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.info-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ══ TIMELINE ══ */
.story-timeline { max-width: 680px; margin: 0 auto; position: relative; padding-right: 32px; }
.story-timeline::before {
  content: ''; position: absolute; right: 10px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, #2D3FE0, #7C3AED, #e2e8f0);
  border-radius: 2px;
}
.timeline-item { display: flex; gap: 20px; margin-bottom: 36px; position: relative; }
.timeline-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid #c7cbff;
  flex-shrink: 0; margin-top: 4px;
  position: absolute; right: -41px;
  transition: border-color .3s;
}
.timeline-dot.active { border-color: #2D3FE0; background: #2D3FE0; box-shadow: 0 0 0 4px rgba(45,63,224,.15); }
.timeline-content { padding-right: 8px; }
.timeline-year {
  font-size: .78rem; font-weight: 800; color: #2D3FE0;
  background: rgba(45,63,224,.1); padding: 2px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 6px;
}
.timeline-content h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.timeline-content p { color: var(--muted); font-size: .93rem; }

/* ══ VALUES GRID ══ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(45,63,224,.12); border-color: #c7cbff; }
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(45,63,224,.12), rgba(124,58,237,.12));
}
.value-icon svg { width: 26px; height: 26px; stroke: #2D3FE0; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3, .value-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.value-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ══ STATS ROW ══ */
.stats-row {
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; line-height: 1; }
.stat-lbl { font-size: .85rem; font-weight: 600; margin-top: 4px; opacity: .8; }
.section-grad .stat-num { color: #fff; }

/* ══ CTA BOX ══ */
.cta-box {
  background: var(--grad); border-radius: 24px; padding: 56px 40px;
  text-align: center; color: #fff;
  box-shadow: 0 8px 40px rgba(45,63,224,.28);
}
.cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-box p { font-size: 1rem; opacity: .88; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  padding: 13px 28px; border-radius: 50px;
  font-size: .95rem; font-weight: 800; font-family: inherit;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: transform .2s;
}
.btn-primary-p:hover { transform: translateY(-2px); }
.btn-secondary-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-size: .95rem; font-weight: 700; font-family: inherit;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.btn-secondary-p:hover { background: rgba(255,255,255,.25); }

/* ══ FOOTER ══ */
.site-footer {
  background: #0f172a; color: #94a3b8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { grid-column: span 1; }
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.2rem; font-weight: 900; color: #fff;
  margin-bottom: 12px;
}
.footer-logo img { height: 36px; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }

.footer-col h5 { font-size: .9rem; font-weight: 800; color: #e2e8f0; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: #94a3b8; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 24px;
  text-align: center; font-size: .85rem;
}

/* ══ CONTACT FORM ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: 14px; padding: 18px 20px;
  border: 1px solid var(--border);
}
.ci-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(45,63,224,.1), rgba(124,58,237,.08));
  border: 1px solid rgba(45,63,224,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-label { font-size: .8rem; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.ci-value { font-size: .95rem; font-weight: 700; color: var(--text); }

.form-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(45,63,224,.07);
}
.form-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 24px; color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .88rem; font-weight: 700; color: #475569; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #f8fafc; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 14px; color: var(--text);
  font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #a5b4fc; background: #fff;
  box-shadow: 0 0 0 3px rgba(45,63,224,.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%; padding: 13px; border-radius: 12px;
  background: var(--grad); color: #fff; border: none;
  font-size: 1rem; font-weight: 800; font-family: inherit;
  cursor: pointer; box-shadow: 0 4px 16px rgba(45,63,224,.3);
  transition: opacity .2s, transform .2s; margin-top: 4px;
}
.btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ══ SUCCESS MSG ══ */
.form-success {
  display: none; text-align: center; padding: 32px 20px;
  animation: fadeUp .4s ease;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(12px);} to { opacity:1; transform: translateY(0);} }
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: .93rem; }

/* ══ BLOG ══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(45,63,224,.12); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2D3FE0, #7C3AED);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-thumb svg {
  width: 52px; height: 52px; stroke: rgba(255,255,255,.9); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.blog-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: .75rem; font-weight: 800; color: #2D3FE0;
  background: rgba(45,63,224,.1); padding: 3px 10px;
  border-radius: 20px; display: inline-block; margin-bottom: 10px;
}
.blog-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 14px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: #94a3b8; }
.blog-read-more { color: #2D3FE0; font-weight: 700; font-size: .85rem; margin-top: 12px; display: inline-flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: #7C3AED; }

/* ══ CAREERS ══ */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: #fff; border-radius: 16px; padding: 22px 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.job-card:hover { border-color: #c7cbff; box-shadow: 0 4px 20px rgba(45,63,224,.1); }
.job-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: .78rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; background: #f1f5f9; color: #475569;
  border: 1px solid var(--border);
}
.job-tag.remote { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.job-tag.full { background: #eef0ff; color: #2D3FE0; border-color: #c7cbff; }
.btn-apply {
  flex-shrink: 0; padding: 10px 22px; border-radius: 10px;
  background: var(--grad); color: #fff; border: none;
  font-size: .88rem; font-weight: 700; font-family: inherit;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 3px 10px rgba(45,63,224,.25);
  transition: opacity .2s, transform .2s;
}
.btn-apply:hover { opacity: .9; transform: translateY(-1px); }

/* ══ HELP / FAQ ══ */
.help-search-wrap {
  max-width: 540px; margin: 24px auto 0; position: relative;
}
.help-search {
  width: 100%; padding: 14px 20px 14px 50px;
  border-radius: 50px; border: 1.5px solid var(--border);
  background: #fff; font-family: inherit; font-size: .95rem;
  outline: none; transition: border-color .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.help-search:focus { border-color: #a5b4fc; }
.help-search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: #94a3b8;
}
.help-search-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.help-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 48px; }
@media (max-width: 640px) { .help-cats { grid-template-columns: 1fr 1fr; } }
.help-cat {
  background: #fff; border-radius: 16px; padding: 20px 16px; text-align: center;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.help-cat:hover { transform: translateY(-3px); border-color: #c7cbff; box-shadow: 0 6px 20px rgba(45,63,224,.1); }
.help-cat.active { border-color: #2D3FE0; background: linear-gradient(135deg,rgba(45,63,224,.06),rgba(124,58,237,.06)); }
.help-cat.active .help-cat-icon { background: linear-gradient(135deg,#2D3FE0,#7C3AED); }
.help-cat.active .help-cat-icon svg { stroke: #fff; }
.help-cat-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,rgba(45,63,224,.1),rgba(124,58,237,.1));
  transition: background .2s;
}
.help-cat-icon svg { width: 22px; height: 22px; stroke: #2D3FE0; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.help-cat h4 { font-size: .9rem; font-weight: 800; margin: 0; }
.help-cat p { font-size: .78rem; color: var(--muted); margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 14px; border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: right; background: none; border: none;
  padding: 18px 20px; font-family: inherit; font-size: .97rem; font-weight: 700;
  color: var(--text); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: #f8fafc; }
.faq-q .faq-arrow {
  flex-shrink: 0; width: 20px; height: 20px; stroke: currentColor;
  fill: none; stroke-width: 2; transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: .93rem; color: var(--muted); line-height: 1.7;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ══ POLICY PAGES ══ */
.policy-wrap { max-width: 780px; margin: 0 auto; }
.policy-card {
  background: #fff; border-radius: 20px; padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(45,63,224,.06);
}
.policy-card h2 { font-size: 1.3rem; font-weight: 900; margin: 32px 0 12px; color: var(--text); }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; line-height: 1.8; }
.policy-card ul { list-style: none; margin-bottom: 14px; }
.policy-card ul li {
  padding: 6px 0; color: var(--muted); font-size: .93rem;
  padding-right: 20px; position: relative;
}
.policy-card ul li::before {
  content: '◆'; position: absolute; right: 0;
  color: #2D3FE0; font-size: .55rem; top: 10px;
}
.policy-date { font-size: .82rem; color: #94a3b8; margin-bottom: 28px; }

/* ══ REGISTER PAGE ══ */
.register-wrap {
  min-height: 100dvh; display: flex; align-items: center;
  justify-content: center; padding: 100px 24px 40px;
}
.register-card {
  background: #fff; border-radius: 24px; padding: 40px 36px;
  max-width: 500px; width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 8px 48px rgba(45,63,224,.10);
}
.register-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.register-logo img { height: 44px; }
.register-logo span { font-size: 1.4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.register-title { text-align: center; font-size: 1.3rem; font-weight: 900; margin-bottom: 6px; }
.register-sub { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.divider { text-align: center; position: relative; margin: 20px 0; }
.divider::before { content: ''; position: absolute; top: 50%; inset-inline: 0; height: 1px; background: var(--border); }
.divider span { background: #fff; padding: 0 12px; position: relative; font-size: .83rem; color: #94a3b8; font-weight: 600; }
.oauth-btn {
  width: 100%; padding: 12px; border-radius: 10px; border: 1.5px solid var(--border);
  background: #fff; font-family: inherit; font-size: .92rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--text); transition: background .2s, border-color .2s; margin-bottom: 10px;
}
.oauth-btn:hover { background: #f8fafc; border-color: #c7cbff; }
.login-link { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 20px; }
.login-link a { color: var(--primary); font-weight: 700; }

/* ══ REGISTER EXTENDED ══ */
body.register-page { background: linear-gradient(135deg,#eef0ff 0%,#f5eeff 100%); }
.register-wrap { position: relative; gap: 48px; flex-wrap: wrap; justify-content: center; }
.register-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.register-card { position: relative; z-index: 1; }
.register-header { text-align: center; margin-bottom: 24px; }
.register-header img { height: 48px; margin: 0 auto 10px; }
.register-header h1 { font-size: 1.4rem; font-weight: 900; margin-bottom: 6px; }
.register-header p { color: var(--muted); font-size: .88rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.password-wrap { position: relative; }
.password-toggle { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 1rem; padding: 0; }
.password-strength { font-size: .78rem; margin-top: 4px; min-height: 18px; }
.str-weak { color: #ef4444; } .str-medium { color: #f59e0b; } .str-good { color: #3b82f6; } .str-strong { color: #16a34a; }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .88rem; color: var(--muted); }
.form-check input { width: 16px; height: 16px; accent-color: var(--primary); }
.form-check a { color: var(--primary); font-weight: 700; }
.form-error { color: #ef4444; font-size: .85rem; text-align: center; margin-top: 8px; min-height: 20px; }
.register-divider { text-align: center; position: relative; margin: 20px 0; }
.register-divider::before { content: ''; position: absolute; top: 50%; inset-inline: 0; height: 1px; background: var(--border); }
.register-divider span { background: #fff; padding: 0 14px; position: relative; font-size: .82rem; color: #94a3b8; font-weight: 600; }
.register-login { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 16px; }
.register-login a { color: var(--primary); font-weight: 700; }
.register-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px 0; }
.success-icon { font-size: 3.5rem; }
.register-success h2 { font-size: 1.3rem; font-weight: 900; }
.register-success p { color: var(--muted); font-size: .92rem; }
.success-loader { width: 40px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-top: 8px; }
.success-loader::after { content: ''; display: block; width: 100%; height: 100%; background: var(--grad); animation: loader 2.5s linear forwards; }
@keyframes loader { from { transform: scaleX(0); transform-origin: right; } to { transform: scaleX(1); } }
.register-features { position: relative; z-index: 1; background: rgba(255,255,255,.7); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); border-radius: 24px; padding: 36px 32px; max-width: 280px; align-self: center; }
.register-features h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 20px; }
.register-features ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.register-features ul li { font-size: .9rem; color: var(--text); }
.register-trust { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.register-trust p { font-size: .82rem; color: var(--muted); }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } .register-features { display: none; } }

/* ══ CONTACT EXTENDED ══ */
.section-title-sm { font-size: 1.2rem; font-weight: 900; margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(45,63,224,.1), rgba(124,58,237,.1));
  border: 1px solid rgba(45,63,224,.15);
}
.contact-icon svg { width: 22px; height: 22px; stroke: #2D3FE0; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item strong { font-size: .92rem; font-weight: 800; display: block; margin-bottom: 2px; }
.contact-info-item p { font-size: .88rem; color: var(--muted); margin: 0; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { padding: 8px 16px; border-radius: 10px; border: 1.5px solid var(--border); background: #fff; font-size: .82rem; font-weight: 700; color: var(--text); cursor: pointer; transition: all .2s; font-family: inherit; }
.social-btn:hover { border-color: var(--primary); color: var(--primary); background: #f0f2ff; }

/* ══ BLOG EXTENDED ══ */
.blog-read-more { color: var(--primary); font-size: .85rem; font-weight: 700; display: inline-block; margin-top: 12px; }
.blog-read-more:hover { text-decoration: underline; }

/* ══ JOB CARD EXTENDED ══ */
.job-tag.hybrid { background: #fef3c7; color: #92400e; }

/* ══ PAGE HERO SM ══ */
.page-hero-sm { min-height: 280px; padding: 130px 24px 60px; }

/* ══ POLICY LINK ══ */
.policy-card a { color: var(--primary); font-weight: 700; }

/* ══ HELP SEARCH ══ */
.help-search-wrap { position: relative; max-width: 520px; margin: 24px auto 0; }
.help-search { width: 100%; padding: 14px 48px 14px 20px; border-radius: 50px; border: 2px solid rgba(255,255,255,.5); background: rgba(255,255,255,.9); font-family: inherit; font-size: 1rem; color: var(--text); outline: none; }
.help-search:focus { border-color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.help-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; pointer-events: none; }

/* ══ ANIMATIONS ══ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   LAYOUT — NAVBAR & FOOTER (moved from layout.js)
   ═══════════════════════════════════════════════════ */

/* ── NAVBAR ── */
#lyt-nav{position:fixed;top:0;right:0;left:0;z-index:1000;display:flex;align-items:center;justify-content:space-between;padding:0 5%;height:70px;background:rgba(255,255,255,.95);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid rgba(0,0,0,.08);box-shadow:0 2px 20px rgba(0,0,0,.07);transition:all .3s}
#lyt-nav.scrolled{background:rgba(255,255,255,.98);box-shadow:0 4px 30px rgba(0,0,0,.1)}
.lyt-logo{display:flex;align-items:center;gap:10px;font-size:1.4rem;font-weight:900;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.lyt-logo img{height:52px;width:auto;object-fit:contain;-webkit-text-fill-color:initial}
.lyt-links{display:flex;align-items:center;gap:32px;list-style:none}
.lyt-links a{font-size:.95rem;font-weight:600;color:#4b5563;transition:color .2s}
.lyt-links a:hover{color:#111827}
.lyt-cta{background:var(--grad);color:#fff!important;padding:9px 22px;border-radius:50px;font-weight:700!important;box-shadow:0 4px 20px rgba(79,110,247,.35);transition:transform .2s,box-shadow .2s!important;-webkit-text-fill-color:#fff!important}
.lyt-cta:hover{transform:translateY(-2px);box-shadow:0 6px 28px rgba(79,110,247,.5)!important}
.lyt-burger{display:none;background:none;border:none;cursor:pointer;color:#374151;padding:0}
.lyt-burger svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}

/* ── MOBILE DRAWER ── */
#lyt-drawer{display:none;position:fixed;inset:0;z-index:999;background:rgba(10,10,15,.97);flex-direction:column;align-items:center;justify-content:center;gap:28px}
#lyt-drawer.open{display:flex}
#lyt-drawer a{font-size:1.4rem;font-weight:700;color:#f0f2f5}
#lyt-drawer a:hover{color:#fff}
.lyt-drawer-close{position:absolute;top:24px;left:24px;background:none;border:none;cursor:pointer;color:#f0f2f5;font-size:1.6rem;line-height:1}
.lyt-drawer-cta{background:var(--grad);color:#fff!important;padding:14px 36px;border-radius:50px;font-size:1rem!important;font-weight:700!important;box-shadow:0 6px 24px rgba(79,110,247,.4)}

/* ── FOOTER ── */
#lyt-footer{background:rgba(15,15,20,.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-top:1px solid rgba(100,100,150,.18);padding:60px 5% 32px}
.lyt-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.lyt-footer-brand .lyt-logo{margin-bottom:14px}
.lyt-footer-brand p{font-size:.9rem;color:var(--muted);line-height:1.8;max-width:280px}
.lyt-footer-col h4{font-size:.92rem;font-weight:800;color:#fff;margin-bottom:16px}
.lyt-footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.lyt-footer-col ul li a{font-size:.88rem;color:var(--muted);transition:color .2s}
.lyt-footer-col ul li a:hover{color:#e5e7eb}
.lyt-footer-bottom{border-top:1px solid rgba(100,100,150,.18);padding-top:28px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.lyt-footer-bottom p{font-size:.83rem;color:var(--muted)}
.lyt-socials{display:flex;gap:12px}
.lyt-social-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid rgba(100,100,150,.2);display:flex;align-items:center;justify-content:center;font-size:1rem;transition:background .2s;cursor:pointer;color:#9ca3af;text-decoration:none}
.lyt-social-btn:hover{background:rgba(79,110,247,.15);color:#fff}

/* ── WHATSAPP FLOAT ── */
.lyt-wa{position:fixed;bottom:28px;left:28px;z-index:900;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 24px rgba(37,211,102,.4);cursor:pointer;transition:transform .2s;animation:lytWa 3s ease-in-out infinite}
.lyt-wa:hover{transform:scale(1.1)}
@keyframes lytWa{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

/* ── BACK TO TOP ── */
.lyt-top{position:fixed;bottom:28px;right:28px;z-index:900;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.75);border:1px solid rgba(100,100,150,.18);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1.2rem;color:var(--muted);box-shadow:0 4px 16px rgba(0,0,0,.2);transition:opacity .3s,transform .2s,color .2s;opacity:0;pointer-events:none}
.lyt-top.show{opacity:1;pointer-events:all}
.lyt-top:hover{transform:translateY(-3px);color:var(--text)}

@media(max-width:900px){.lyt-links{display:none}.lyt-burger{display:flex}.lyt-footer-grid{grid-template-columns:1fr 1fr;gap:32px}}
@media(max-width:600px){.lyt-footer-grid{grid-template-columns:1fr}.lyt-footer-bottom{flex-direction:column;text-align:center}.lyt-wa{bottom:16px;left:16px;width:48px;height:48px}.lyt-top{bottom:16px;right:16px}}
