:root {
  --bg: #eef3fb;
  --bg-soft: #f7f9fe;
  --card: rgba(255, 255, 255, 0.84);
  --card-strong: rgba(255, 255, 255, 0.94);
  --text: #11203b;
  --text-soft: #51627f;
  --muted: #7787a2;
  --line: rgba(129, 150, 184, 0.2);
  --line-strong: rgba(129, 150, 184, 0.35);
  --primary: #476dff;
  --primary-2: #8155ff;
  --accent: #0ea5e9;
  --success: #16a34a;
  --shadow-sm: 0 10px 24px rgba(29, 52, 91, 0.08);
  --shadow-md: 0 18px 45px rgba(39, 71, 127, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(87, 124, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(114, 63, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #edf2fb 0%, #eef5ff 40%, #edf2fb 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 2; }

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 126, 182, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 126, 182, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 320px; height: 320px; top: 90px; left: -120px;
  background: rgba(99, 144, 255, 0.35);
}
.orb-2 {
  width: 360px; height: 360px; bottom: 80px; right: -100px;
  background: rgba(141, 92, 255, 0.25);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(131, 150, 184, 0.12);
}
.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 220px; }
.brand-logo {
  width: 62px; height: 44px; object-fit: contain;
  border-radius: 12px; background: rgba(255,255,255,0.75); padding: 4px;
  box-shadow: var(--shadow-sm);
}
.brand-copy strong { display: block; font-size: 1.05rem; }
.brand-copy span { color: var(--text-soft); font-size: 0.9rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s ease;
}
.nav a:hover,
.footer-links a:hover { color: var(--primary); }

.top-actions { display: flex; align-items: center; gap: 14px; }
.language-switcher { position: relative; }
.lang-current {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.lang-current img,
.lang-option img { width: 20px; height: 20px; border-radius: 999px; object-fit: cover; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 180px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  display: none;
}
.language-switcher.open .lang-menu { display: block; }
.lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-option:hover { background: rgba(71, 109, 255, 0.08); }
.mobile-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.92);
  color: var(--text);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0 16px 16px;
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.hero {
  padding: 48px 0 22px;
}
.hero-grid,
.contact-grid,
.feature-layout,
.grid.two-cols,
.grid.three-cols {
  display: grid;
  gap: 24px;
}
.hero-grid {
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
}
.card, .glass {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}
.hero-copy,
.hero-visual { padding: 32px; }
.eyebrow,
.section-tag,
.spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(71, 109, 255, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.04;
  margin: 18px 0 14px;
  max-width: 12ch;
}
.hero-text,
.section-head p,
.feature-card p,
.contact-card p,
.spotlight-card p,
.checklist-card li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px;
}
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(99, 111, 255, 0.24);
}
.btn-secondary {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(132, 149, 184, 0.16);
}
.hero-stats strong { display: block; font-size: 1.25rem; }
.hero-stats span { color: var(--muted); font-size: 0.94rem; }
.hero-screen-wrap {
  background: linear-gradient(180deg, #e9f0fd, #fbfdff);
  border-radius: 22px;
  padding: 16px;
  border: 1px solid var(--line);
}
.hero-screen { border-radius: 16px; box-shadow: var(--shadow-md); }
.hero-badges {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7); color: var(--text-soft);
  border: 1px solid var(--line);
}
.hero-badges i { color: var(--success); }

.section { padding: 34px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}
.section-head.left { max-width: none; }
.section-head.between {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 14px 0 10px;
  line-height: 1.1;
}
.grid.two-cols { grid-template-columns: repeat(2, 1fr); }
.grid.three-cols { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.checklist-card,
.spotlight-card,
.contact-card,
.table-card {
  padding: 28px;
}
.feature-card .icon {
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(71,109,255,.12), rgba(129,85,255,.12));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.feature-card h3,
.checklist-card h3,
.spotlight-card h3,
.contact-card h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
}
.feature-layout { grid-template-columns: 1fr 1fr; }
.checklist {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 12px;
}
.checklist li {
  position: relative; padding-left: 28px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 5px rgba(71, 109, 255, 0.1);
}
.spotlight-card {
  background: linear-gradient(145deg, rgba(71,109,255,.12), rgba(129,85,255,.08), rgba(255,255,255,.92));
}
.mini-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 24px;
}
.mini-metrics div {
  background: rgba(255,255,255,0.74);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 14px;
}
.mini-metrics strong { display: block; margin-bottom: 6px; }
.mini-metrics span { color: var(--muted); }

.table-tools label { display: grid; gap: 8px; font-size: 0.95rem; color: var(--text-soft); }
.table-tools input {
  width: 260px; max-width: 100%;
  height: 50px; border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.8);
  padding: 0 16px; font: inherit; color: var(--text);
  outline: none;
}
.table-tools input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(71,109,255,.12); }
.table-responsive { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(129,150,184,.16);
}
th {
  color: var(--text);
  font-size: 0.95rem;
  background: rgba(71,109,255,.04);
}
td { color: var(--text-soft); }
tr:hover td { background: rgba(71,109,255,.035); }
.tool-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-badges span,
.tag-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(71,109,255,.08);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem; font-weight: 600;
}
.alt-space { margin-top: 22px; }

.other-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.other-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(129,85,255,.14), transparent 70%);
}
.other-card h3 { margin-top: 0; font-size: 1.22rem; }
.other-card p { color: var(--text-soft); line-height: 1.65; }
.inline-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%; background: transparent; border: 0;
  padding: 22px 24px; text-align: left; font: inherit; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  cursor: pointer; font-size: 1.08rem; font-weight: 600;
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-question i { transition: .2s ease; color: var(--primary); }

.contact-section { padding-bottom: 56px; }
.contact-grid { grid-template-columns: 1.2fr .8fr; }
.social-list { display: grid; gap: 14px; margin-top: 22px; }
.social-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  transition: .2s ease;
}
.social-link:hover { transform: translateY(-2px); border-color: var(--primary); }
.social-link .left { display: flex; align-items: center; gap: 14px; }
.social-link .left i {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(71,109,255,.08); color: var(--primary);
}
.note-card { background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,248,255,.88)); }

.footer {
  border-top: 1px solid rgba(129,150,184,.16);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}
.footer-inner {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer p { margin: 8px 0 0; color: var(--text-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-soft); }

.hidden-row { display: none; }

@media (max-width: 1100px) {
  .hero-grid,
  .feature-layout,
  .contact-grid,
  .grid.two-cols,
  .grid.three-cols {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .hero-copy,
  .hero-visual,
  .feature-card,
  .checklist-card,
  .spotlight-card,
  .contact-card,
  .table-card,
  .other-card { padding: 22px; }
}

@media (max-width: 640px) {
  .topbar-inner { min-height: 74px; }
  .brand-logo { width: 54px; height: 40px; }
  .hero { padding-top: 28px; }
  .hero-stats,
  .mini-metrics { grid-template-columns: 1fr; }
  .table-tools input { width: 100%; }
  .lang-current { height: 44px; padding: 0 14px; }
  .container { width: min(var(--container), calc(100% - 20px)); }
}

.pagination{
 display:flex;
 gap:8px;
 justify-content:center;
 margin-top:20px;
 flex-wrap:wrap;
}

.page-btn{
 border:1px solid var(--border);
 background:white;
 padding:6px 12px;
 border-radius:8px;
 cursor:pointer;
 font-weight:600;
}

.page-btn.active{
 background:var(--primary);
 color:white;
 border-color:var(--primary);
}
