:root {
  --nx-primary: #4f46e5;
  --nx-primary-rgb: 79, 70, 229;
  --nx-primary-hover: #4338ca;
  --nx-accent: #06b6d4;
  --nx-accent-rgb: 6, 182, 212;
  --nx-success: #10b981;
  --nx-warning: #f59e0b;
  --nx-ink: #0f172a;
  --nx-muted: #64748b;
  --nx-surface: #ffffff;
  --nx-surface-2: #f6f7fb;
  --nx-surface-3: #eef0f6;
  --nx-border: #e6e8f0;
  --nx-radius: 18px;
  --nx-radius-sm: 12px;
  --nx-shadow: 0 10px 30px rgba(15, 23, 42, .07);
  --nx-shadow-lg: 0 24px 70px rgba(15, 23, 42, .14);
  --nx-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  --nx-font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --nx-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bs-body-font-family: var(--nx-font-body);
  --bs-body-color: var(--nx-ink);
  --bs-body-bg: var(--nx-surface);
  --bs-primary: var(--nx-primary);
  --bs-primary-rgb: var(--nx-primary-rgb);
  --bs-link-color: var(--nx-primary);
  --bs-link-color-rgb: var(--nx-primary-rgb);
  --bs-link-hover-color: var(--nx-primary-hover);
  --bs-border-color: var(--nx-border);
  --bs-secondary-color: var(--nx-muted);
  --bs-secondary-bg: var(--nx-surface-2);
  --bs-tertiary-bg: var(--nx-surface-3);
}
[data-bs-theme="dark"] {
  --nx-ink: #e5e7ef;
  --nx-muted: #94a0b8;
  --nx-surface: #0b0f1a;
  --nx-surface-2: #111827;
  --nx-surface-3: #1a2234;
  --nx-border: #232b3d;
  --nx-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --nx-shadow-lg: 0 24px 70px rgba(0, 0, 0, .55);
  --bs-body-color: var(--nx-ink);
  --bs-body-bg: var(--nx-surface);
  --bs-link-color: #a5b4fc;
  --bs-link-color-rgb: 165, 180, 252;
  --bs-border-color: var(--nx-border);
  --bs-secondary-color: var(--nx-muted);
  --bs-secondary-bg: var(--nx-surface-2);
  --bs-tertiary-bg: var(--nx-surface-3);
  color-scheme: dark;
}
[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select { background-color: var(--nx-surface-2); border-color: var(--nx-border); color: var(--nx-ink); }
[data-bs-theme="dark"] .form-control::placeholder { color: #6b7590; }
[data-bs-theme="dark"] .text-muted { color: var(--nx-muted) !important; }
[data-bs-theme="dark"] .bg-light { background-color: var(--nx-surface-2) !important; }
[data-bs-theme="dark"] .btn-outline-primary { --bs-btn-color: #c7d2fe; --bs-btn-border-color: #3b4363; }

html { scroll-behavior: smooth; }
body { line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-4, .display-5 { font-family: var(--nx-font-head); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
a { text-decoration: none; transition: color .2s ease; }
img, svg { max-width: 100%; }
.ls-wide { letter-spacing: .12em; }
.text-gradient { background: var(--nx-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-surface-2 { background-color: var(--nx-surface-2); }
.bg-gradient-nx { background: var(--nx-gradient); }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head h2, .page-title h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: .75rem; }
.section-head p { color: var(--nx-muted); font-size: 1.05rem; max-width: 620px; }
.section-head.text-center p { margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--nx-primary); margin-bottom: .75rem; }
[data-bs-theme="dark"] .eyebrow { color: #a5b4fc; }
.eyebrow.pill { background: rgba(var(--nx-primary-rgb), .1); border-radius: 999px; padding: .35rem .85rem; letter-spacing: .04em; text-transform: none; font-size: .82rem; }
.shadow-soft { box-shadow: var(--nx-shadow); }
.rounded-xl { border-radius: var(--nx-radius) !important; }

.btn { font-weight: 600; border-radius: var(--nx-radius-sm); padding: .7rem 1.35rem; transition: all .2s ease; }
.btn-lg { padding: .9rem 1.75rem; font-size: 1.02rem; }
.btn-sm { padding: .45rem .9rem; font-size: .85rem; }
.btn-primary { --bs-btn-bg: var(--nx-primary); --bs-btn-border-color: var(--nx-primary); --bs-btn-hover-bg: var(--nx-primary-hover); --bs-btn-hover-border-color: var(--nx-primary-hover); --bs-btn-active-bg: var(--nx-primary-hover); box-shadow: 0 6px 18px rgba(var(--nx-primary-rgb), .3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--nx-primary-rgb), .4); }
.btn-outline-primary { --bs-btn-color: var(--nx-ink); --bs-btn-border-color: var(--nx-border); --bs-btn-hover-bg: var(--nx-surface-2); --bs-btn-hover-border-color: var(--nx-primary); --bs-btn-hover-color: var(--nx-primary); }
.btn-ghost { color: var(--nx-ink); }
.btn-ghost:hover { color: var(--nx-primary); background: var(--nx-surface-2); }
.btn-light { --bs-btn-bg: #fff; --bs-btn-color: var(--nx-primary); --bs-btn-hover-bg: #eef0ff; --bs-btn-hover-color: var(--nx-primary-hover); border: 0; }
.btn-outline-light { --bs-btn-border-color: rgba(255,255,255,.4); --bs-btn-hover-bg: rgba(255,255,255,.12); --bs-btn-hover-border-color: #fff; }
.btn-icon { width: 42px; height: 42px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.theme-toggle { border: 1px solid var(--nx-border); background: var(--nx-surface); color: var(--nx-ink); box-shadow: none; }
.theme-toggle:hover { background: var(--nx-surface-2); }
.btn-play { display: inline-flex; align-items: center; gap: .75rem; font-weight: 600; color: var(--nx-ink); }
.btn-play span { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--nx-border); display: inline-flex; align-items: center; justify-content: center; background: var(--nx-surface); transition: all .2s ease; }
.btn-play:hover span { background: var(--nx-primary); color: #fff; border-color: var(--nx-primary); }

.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(255,255,255,.75); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: all .25s ease; }
[data-bs-theme="dark"] .site-header { background: rgba(11,15,26,.75); }
.site-header.is-scrolled { border-bottom-color: var(--nx-border); box-shadow: 0 4px 24px rgba(15,23,42,.06); }
.site-header .navbar { padding: .9rem 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--nx-font-head); font-weight: 800; font-size: 1.35rem; color: var(--nx-ink); letter-spacing: -.02em; }
.navbar-nav .nav-link { font-weight: 500; color: var(--nx-ink); padding: .5rem .95rem !important; border-radius: 10px; font-size: .95rem; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--nx-primary); background: rgba(var(--nx-primary-rgb), .07); }
[data-bs-theme="dark"] .navbar-nav .nav-link:hover, [data-bs-theme="dark"] .navbar-nav .nav-link.active { color: #c7d2fe; }
.dropdown-menu { border: 1px solid var(--nx-border); border-radius: 14px; box-shadow: var(--nx-shadow-lg); padding: .5rem; min-width: 230px; background: var(--nx-surface); }
.dropdown-item { border-radius: 8px; padding: .55rem .85rem; font-weight: 500; color: var(--nx-ink); font-size: .93rem; }
.dropdown-item:hover { background: var(--nx-surface-2); color: var(--nx-primary); }
.dropdown-item i { color: var(--nx-primary); }
.navbar-toggler { border: 1px solid var(--nx-border); border-radius: 10px; padding: .35rem .6rem; font-size: 1.4rem; color: var(--nx-ink); }
.navbar-toggler:focus { box-shadow: none; }
.offcanvas { background: var(--nx-surface); }
.mobile-nav .nav-link { font-size: 1.05rem; font-weight: 600; padding: .7rem 0; border-bottom: 1px solid var(--nx-border); color: var(--nx-ink); }
.mobile-nav .nav-link.active { color: var(--nx-primary); }

.hero { position: relative; overflow: hidden; padding: 6rem 0 4rem; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; pointer-events: none; }
.hero-blob.b1 { width: 520px; height: 520px; background: #a5b4fc; top: -180px; left: -120px; }
.hero-blob.b2 { width: 480px; height: 480px; background: #a5f3fc; right: -140px; top: 40px; }
.hero-blob.b3 { width: 380px; height: 380px; background: #ddd6fe; left: 40%; bottom: -220px; }
[data-bs-theme="dark"] .hero-blob { opacity: .22; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; margin-bottom: 1.25rem; }
.hero .lead { font-size: 1.15rem; color: var(--nx-muted); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.25rem; font-size: .88rem; color: var(--nx-muted); }
.hero-note span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-note i { color: var(--nx-success); }
.hero-shot { margin-top: 3.5rem; border-radius: var(--nx-radius); box-shadow: var(--nx-shadow-lg); border: 1px solid var(--nx-border); overflow: hidden; background: var(--nx-surface); }
.hero-shot img { display: block; width: 100%; }
.hero-split { padding: 5rem 0 6rem; }
.hero-split h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.hero-float { position: relative; }
.hero-float .card-float { position: absolute; background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--nx-shadow-lg); display: flex; align-items: center; gap: .75rem; font-size: .88rem; animation: floaty 6s ease-in-out infinite; }
.hero-float .card-float b { display: block; font-family: var(--nx-font-head); }
.hero-float .card-float small { color: var(--nx-muted); }
.hero-float .card-float .ico { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-float .cf-1 { left: -8%; top: 18%; }
.hero-float .cf-2 { right: -6%; top: 55%; animation-delay: -3s; }
.hero-float .cf-3 { left: 10%; bottom: -4%; animation-delay: -1.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 991.98px) { .hero-float .card-float { display: none; } }
.hero-dark { background: radial-gradient(1200px 600px at 20% -10%, rgba(99,102,241,.35), transparent 60%), radial-gradient(900px 500px at 90% 10%, rgba(6,182,212,.25), transparent 60%), #0b0f1a; color: #fff; }
.hero-dark .lead { color: rgba(255,255,255,.72); }
.hero-dark .hero-note { color: rgba(255,255,255,.65); }
.hero-dark .btn-outline-primary { --bs-btn-color: #fff; --bs-btn-border-color: rgba(255,255,255,.3); --bs-btn-hover-bg: rgba(255,255,255,.1); --bs-btn-hover-color: #fff; --bs-btn-hover-border-color: #fff; }
.hero-dark .btn-play { color: #fff; }
.hero-dark .btn-play span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }

.logo-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; }
.logo-cloud span { font-family: var(--nx-font-head); font-weight: 800; font-size: 1.25rem; color: var(--nx-muted); opacity: .8; letter-spacing: -.02em; transition: all .2s ease; }
.logo-cloud span b { color: var(--nx-primary); font-weight: 800; }
.logo-cloud span:hover { opacity: 1; color: var(--nx-ink); }

.feature-card { padding: 2rem; border-radius: var(--nx-radius); background: var(--nx-surface); border: 1px solid var(--nx-border); height: 100%; transition: all .25s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--nx-shadow-lg); border-color: rgba(var(--nx-primary-rgb), .35); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(var(--nx-primary-rgb), .1); color: var(--nx-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.feature-icon.i-cyan { background: rgba(var(--nx-accent-rgb), .12); color: #0891b2; }
.feature-icon.i-green { background: rgba(16,185,129,.12); color: #059669; }
.feature-icon.i-amber { background: rgba(245,158,11,.14); color: #d97706; }
.feature-icon.i-pink { background: rgba(236,72,153,.12); color: #db2777; }
.feature-icon.i-violet { background: rgba(124,58,237,.12); color: #7c3aed; }
[data-bs-theme="dark"] .feature-icon { color: #a5b4fc; }
[data-bs-theme="dark"] .feature-icon.i-cyan { color: #67e8f9; } [data-bs-theme="dark"] .feature-icon.i-green { color: #6ee7b7; } [data-bs-theme="dark"] .feature-icon.i-amber { color: #fcd34d; } [data-bs-theme="dark"] .feature-icon.i-pink { color: #f9a8d4; } [data-bs-theme="dark"] .feature-icon.i-violet { color: #c4b5fd; }
.feature-card h5 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { color: var(--nx-muted); font-size: .95rem; margin-bottom: 0; }
.feature-card .more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; margin-top: 1rem; font-size: .9rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { display: flex; gap: .75rem; padding: .5rem 0; }
.feature-list li i { color: var(--nx-success); margin-top: .2rem; }
.feature-list li b { display: block; }
.feature-list li span { color: var(--nx-muted); font-size: .93rem; }

.bento { display: grid; gap: 1.25rem; grid-template-columns: repeat(12, 1fr); }
.bento > div { grid-column: span 12; }
@media (min-width: 768px) { .bento .b-6 { grid-column: span 6; } .bento .b-4 { grid-column: span 4; } .bento .b-8 { grid-column: span 8; } }
.bento-card { background: var(--nx-surface-2); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 2rem; height: 100%; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.bento-card h4 { font-size: 1.25rem; }
.bento-card p { color: var(--nx-muted); font-size: .95rem; }
.bento-card .art { margin-top: auto; border-radius: 12px; overflow: hidden; border: 1px solid var(--nx-border); background: var(--nx-surface); }
.bento-card .art img { display: block; width: 100%; }

.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.25rem; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 14px; background: var(--nx-gradient); color: #fff; font-family: var(--nx-font-head); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h5 { margin-bottom: .35rem; }
.step p { color: var(--nx-muted); font-size: .95rem; margin: 0; }
.step + .step { margin-top: 2rem; }

.stats-band { padding: 4rem 0; }
.stat { text-align: center; padding: 1.5rem; border-radius: var(--nx-radius); background: var(--nx-surface); border: 1px solid var(--nx-border); }
.stat .num { font-family: var(--nx-font-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1; background: var(--nx-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--nx-muted); margin-top: .5rem; font-size: .92rem; }

.integration-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border: 1px solid var(--nx-border); border-radius: 14px; background: var(--nx-surface); transition: all .2s ease; height: 100%; }
.integration-card:hover { border-color: rgba(var(--nx-primary-rgb), .4); transform: translateY(-2px); box-shadow: var(--nx-shadow); }
.integration-card .logo { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--nx-font-head); font-weight: 800; color: #fff; flex-shrink: 0; font-size: 1.05rem; }
.integration-card b { display: block; font-family: var(--nx-font-head); font-size: .98rem; }
.integration-card small { color: var(--nx-muted); }
.integration-card .badge { margin-left: auto; }
.badge-soft { background: rgba(var(--nx-primary-rgb), .1); color: var(--nx-primary); font-weight: 600; border-radius: 999px; padding: .35rem .7rem; font-size: .75rem; }
.badge-soft.green { background: rgba(16,185,129,.12); color: #059669; }
.badge-soft.amber { background: rgba(245,158,11,.14); color: #b45309; }
[data-bs-theme="dark"] .badge-soft { color: #c7d2fe; } [data-bs-theme="dark"] .badge-soft.green { color: #6ee7b7; } [data-bs-theme="dark"] .badge-soft.amber { color: #fcd34d; }

.pricing-toggle { display: inline-flex; align-items: center; gap: .75rem; background: var(--nx-surface-2); border: 1px solid var(--nx-border); border-radius: 999px; padding: .35rem; }
.pricing-toggle button { border: 0; background: transparent; border-radius: 999px; padding: .5rem 1.1rem; font-weight: 600; color: var(--nx-muted); font-size: .92rem; }
.pricing-toggle button.active { background: var(--nx-surface); color: var(--nx-ink); box-shadow: var(--nx-shadow); }
.pricing-toggle .save { color: var(--nx-success); font-size: .78rem; font-weight: 700; }
.plan { border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 2rem; background: var(--nx-surface); height: 100%; display: flex; flex-direction: column; position: relative; transition: all .25s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--nx-shadow-lg); }
.plan.is-featured { border-color: var(--nx-primary); box-shadow: 0 0 0 4px rgba(var(--nx-primary-rgb), .12); }
.plan .ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--nx-gradient); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; white-space: nowrap; }
.plan h4 { font-size: 1.15rem; margin-bottom: .25rem; }
.plan .desc { color: var(--nx-muted); font-size: .9rem; min-height: 2.8em; }
.plan .price { font-family: var(--nx-font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; margin: 1rem 0 .25rem; }
.plan .price small { font-size: 1rem; font-weight: 500; color: var(--nx-muted); }
.plan .billed { color: var(--nx-muted); font-size: .82rem; min-height: 1.2em; }
.plan ul { list-style: none; padding: 0; margin: 1.5rem 0; flex: 1; }
.plan li { display: flex; gap: .6rem; padding: .4rem 0; font-size: .93rem; }
.plan li i { color: var(--nx-success); }
.plan li.off { color: var(--nx-muted); } .plan li.off i { color: var(--nx-border); }
.compare-table { width: 100%; }
.compare-table th, .compare-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--nx-border); font-size: .93rem; vertical-align: middle; }
.compare-table thead th { font-family: var(--nx-font-head); background: var(--nx-surface-2); position: sticky; top: 72px; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-table td.yes i { color: var(--nx-success); font-size: 1.1rem; }
.compare-table td.no i { color: var(--nx-border); font-size: 1.1rem; }
.compare-table .group td { background: var(--nx-surface-2); font-weight: 700; font-family: var(--nx-font-head); }

.testimonial { background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 1.75rem; height: 100%; }
.testimonial .stars, .rating-line .stars { color: var(--nx-warning); }
.testimonial p { font-size: .97rem; }
.testimonial .author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.testimonial .author small { display: block; color: var(--nx-muted); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--nx-font-head); color: #fff; flex-shrink: 0; font-size: .9rem; }
.av-1 { background: linear-gradient(135deg, #4f46e5, #7c3aed); } .av-2 { background: linear-gradient(135deg, #06b6d4, #0ea5e9); } .av-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); } .av-4 { background: linear-gradient(135deg, #10b981, #06b6d4); } .av-5 { background: linear-gradient(135deg, #ec4899, #8b5cf6); } .av-6 { background: linear-gradient(135deg, #0f172a, #475569); }
.rating-line { color: var(--nx-muted); font-size: .92rem; }

.post-card { border: 1px solid var(--nx-border); border-radius: var(--nx-radius); overflow: hidden; background: var(--nx-surface); height: 100%; display: flex; flex-direction: column; transition: all .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--nx-shadow-lg); }
.post-card .post-media { aspect-ratio: 16/9; overflow: hidden; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-card .post-body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .8rem; color: var(--nx-muted); display: flex; gap: .75rem; align-items: center; margin-bottom: .6rem; }
.post-meta .cat { color: var(--nx-primary); font-weight: 600; }
.post-card h5 { font-size: 1.1rem; }
.post-card h5 a { color: var(--nx-ink); }
.post-card h5 a:hover { color: var(--nx-primary); }
.post-card .author { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: 1rem; font-size: .85rem; }
.post-card .author .avatar { width: 32px; height: 32px; font-size: .7rem; }
.post-content { font-size: 1.08rem; line-height: 1.85; }
.post-content h2, .post-content h3 { margin-top: 2.25rem; margin-bottom: .75rem; }
.post-content blockquote { border-left: 4px solid var(--nx-primary); padding: 1rem 1.5rem; background: var(--nx-surface-2); border-radius: 0 var(--nx-radius-sm) var(--nx-radius-sm) 0; font-style: italic; }
.post-content img { border-radius: var(--nx-radius); }
.post-content pre { background: #0f172a; color: #e2e8f0; padding: 1.25rem; border-radius: var(--nx-radius-sm); font-size: .88rem; overflow-x: auto; }
.tag-list a { display: inline-block; background: var(--nx-surface-2); border: 1px solid var(--nx-border); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; color: var(--nx-ink); margin: 0 .35rem .35rem 0; }
.tag-list a:hover { border-color: var(--nx-primary); color: var(--nx-primary); }
.sidebar-card { background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 1.5rem; }
.sidebar-card.sticky { position: sticky; top: 96px; }

.cta-box { background: var(--nx-gradient); border-radius: var(--nx-radius); padding: 3rem; position: relative; overflow: hidden; }
.cta-box::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.12); right: -180px; top: -260px; }
.cta-box::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); left: -100px; bottom: -180px; }
.cta-box .row { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

.page-title { padding: 4.5rem 0 3.5rem; background: radial-gradient(800px 300px at 50% -20%, rgba(99,102,241,.18), transparent 70%); border-bottom: 1px solid var(--nx-border); }
.page-title h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-title .lead { color: var(--nx-muted); max-width: 640px; font-size: 1.1rem; }

.form-control, .form-select { border-radius: var(--nx-radius-sm); padding: .7rem .95rem; border-color: var(--nx-border); background: var(--nx-surface); }
.form-control:focus, .form-select:focus { border-color: var(--nx-primary); box-shadow: 0 0 0 .2rem rgba(var(--nx-primary-rgb), .18); }
.form-label { font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.form-check-input:checked { background-color: var(--nx-primary); border-color: var(--nx-primary); }
.form-switch .form-check-input { width: 2.6em; height: 1.4em; }
.contact-card { background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 1.75rem; height: 100%; }
.contact-card .feature-icon { margin-bottom: 1rem; }
.map-wrap { border-radius: var(--nx-radius); overflow: hidden; border: 1px solid var(--nx-border); aspect-ratio: 16/6; background: var(--nx-surface-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr; }
@media (min-width: 992px) { .auth-page { grid-template-columns: 1fr 1fr; } }
.auth-side { background: var(--nx-gradient); color: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-side::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,.1); right: -250px; bottom: -300px; }
.auth-side > * { position: relative; z-index: 1; }
.auth-side .quote { font-size: 1.25rem; font-family: var(--nx-font-head); font-weight: 600; line-height: 1.5; }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.auth-form .inner { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 1.9rem; }
.btn-social { border: 1px solid var(--nx-border); background: var(--nx-surface); color: var(--nx-ink); display: flex; align-items: center; justify-content: center; gap: .6rem; width: 100%; }
.btn-social:hover { background: var(--nx-surface-2); }
.divider { display: flex; align-items: center; gap: 1rem; color: var(--nx-muted); font-size: .82rem; margin: 1.25rem 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--nx-border); }

.team-card { text-align: center; }
.team-card .photo { aspect-ratio: 1; border-radius: var(--nx-radius); overflow: hidden; margin-bottom: 1rem; background: var(--nx-surface-2); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h6 { margin-bottom: .1rem; }
.team-card small { color: var(--nx-muted); }
.team-card .links a { color: var(--nx-muted); margin: 0 .3rem; }
.team-card .links a:hover { color: var(--nx-primary); }
.value-card { padding: 1.75rem; border-radius: var(--nx-radius); background: var(--nx-surface-2); border: 1px solid var(--nx-border); height: 100%; }
.value-card h5 { font-size: 1.05rem; }
.value-card p { color: var(--nx-muted); font-size: .93rem; margin: 0; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--nx-border); }
.timeline-item { position: relative; padding-bottom: 1.75rem; }
.timeline-item::before { content: ""; position: absolute; left: -2rem; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--nx-primary); border: 3px solid var(--nx-surface); box-shadow: 0 0 0 2px var(--nx-primary); }
.timeline-item b { font-family: var(--nx-font-head); color: var(--nx-primary); }
.timeline-item p { color: var(--nx-muted); margin: .25rem 0 0; font-size: .95rem; }

.service-card { padding: 2rem; border-radius: var(--nx-radius); background: var(--nx-surface); border: 1px solid var(--nx-border); height: 100%; transition: all .25s ease; }
.service-card:hover { border-color: var(--nx-primary); transform: translateY(-4px); box-shadow: var(--nx-shadow-lg); }
.service-card .num { font-family: var(--nx-font-head); font-weight: 800; color: var(--nx-border); font-size: 2rem; line-height: 1; }
[data-bs-theme="dark"] .service-card .num { color: #2c3650; }
.case-card { border-radius: var(--nx-radius); overflow: hidden; position: relative; aspect-ratio: 4/3; display: block; color: #fff; }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-card:hover img { transform: scale(1.05); }
.case-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(11,15,26,.9)); padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.case-card .overlay small { color: rgba(255,255,255,.7); }
.case-card h5 { color: #fff; margin: .25rem 0 0; }
.tech-stack { display: flex; flex-wrap: wrap; gap: .6rem; }
.tech-stack span { border: 1px solid var(--nx-border); border-radius: 999px; padding: .4rem .9rem; font-size: .85rem; font-weight: 500; background: var(--nx-surface); }

.accordion-item { border: 1px solid var(--nx-border); border-radius: 14px !important; margin-bottom: .75rem; overflow: hidden; background: var(--nx-surface); }
.accordion-button { font-weight: 600; background: var(--nx-surface); color: var(--nx-ink); box-shadow: none !important; padding: 1.1rem 1.35rem; font-family: var(--nx-font-head); }
.accordion-button:not(.collapsed) { background: var(--nx-surface); color: var(--nx-primary); }
.accordion-button::after { filter: none; }
.accordion-body { color: var(--nx-muted); font-size: .95rem; padding-top: 0; }

.site-footer { background: var(--nx-surface-2); padding: 4.5rem 0 1.5rem; border-top: 1px solid var(--nx-border); }
[data-bs-theme="dark"] .site-footer { background: #080b14; }
.footer-title { font-family: var(--nx-font-head); font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: var(--nx-muted); font-size: .93rem; }
.footer-links a:hover { color: var(--nx-primary); }
.social a { display: inline-flex; width: 38px; height: 38px; border-radius: 10px; align-items: center; justify-content: center; background: var(--nx-surface); border: 1px solid var(--nx-border); color: var(--nx-ink); transition: all .2s ease; }
.social a:hover { background: var(--nx-primary); color: #fff; border-color: var(--nx-primary); }
.footer-bottom { border-top: 1px solid var(--nx-border); margin-top: 3rem; padding-top: 1.5rem; }
.status-dot { display: inline-flex; align-items: center; gap: .45rem; color: var(--nx-muted); }
.status-dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--nx-success); box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.lang-select { width: auto; border-radius: 8px; }

.error-page { padding: 7rem 0; text-align: center; }
.error-page .code { font-family: var(--nx-font-head); font-size: clamp(6rem, 18vw, 12rem); font-weight: 800; line-height: 1; background: var(--nx-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.thanks-icon { width: 96px; height: 96px; border-radius: 50%; background: rgba(16,185,129,.14); color: var(--nx-success); display: inline-flex; align-items: center; justify-content: center; font-size: 3rem; }

.back-to-top { position: fixed; right: 1.25rem; bottom: 1.25rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; z-index: 1030; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; } .reveal-delay-2 { transition-delay: .2s; } .reveal-delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } .hero-float .card-float { animation: none; } }
@media (max-width: 991.98px) { .section { padding: 4rem 0; } .hero { padding: 4rem 0 3rem; } .cta-box { padding: 2rem; } .auth-side { display: none; } }
.pagination .page-link { border-radius: 10px !important; margin: 0 .2rem; border: 1px solid var(--nx-border); color: var(--nx-ink); font-weight: 600; min-width: 40px; text-align: center; background: var(--nx-surface); }
.pagination .page-item.active .page-link { background: var(--nx-primary); border-color: var(--nx-primary); color: #fff; }
.pagination .page-link:hover { background: var(--nx-surface-2); }
.pagination .page-item.disabled .page-link { color: var(--nx-muted); background: var(--nx-surface); }
.input-group-text { border-color: var(--nx-border); border-radius: var(--nx-radius-sm); color: var(--nx-muted); }
