:root {
  --nv-ink: #14171f;
  --nv-ink-rgb: 20, 23, 31;
  --nv-accent: #ff5a1f;
  --nv-accent-rgb: 255, 90, 31;
  --nv-accent-dark: #e04a12;
  --nv-muted: #6b7280;
  --nv-surface: #fbfaf7;
  --nv-surface-2: #f3f1ec;
  --nv-surface-3: #e9e6df;
  --nv-border: #e4e1da;
  --nv-radius: 20px;
  --nv-radius-sm: 12px;
  --nv-shadow: 0 10px 30px rgba(20, 23, 31, .08);
  --nv-shadow-lg: 0 24px 70px rgba(20, 23, 31, .16);
  --nv-font-head: "Fraunces", Georgia, serif;
  --nv-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bs-body-font-family: var(--nv-font-body);
  --bs-body-color: var(--nv-ink);
  --bs-body-bg: var(--nv-surface);
  --bs-link-color: var(--nv-ink);
  --bs-link-color-rgb: var(--nv-ink-rgb);
  --bs-link-hover-color: var(--nv-accent-dark);
  --bs-border-color: var(--nv-border);
  --bs-secondary-color: var(--nv-muted);
  --bs-secondary-bg: var(--nv-surface-2);
  --bs-tertiary-bg: var(--nv-surface-3);
  --bs-dark: var(--nv-ink);
  --bs-dark-rgb: var(--nv-ink-rgb);
}
[data-bs-theme="dark"] {
  --nv-ink: #ecebe6;
  --nv-ink-rgb: 236, 235, 230;
  --nv-muted: #9a9ca6;
  --nv-surface: #0e1116;
  --nv-surface-2: #151922;
  --nv-surface-3: #1d222d;
  --nv-border: #262b37;
  --nv-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  --nv-shadow-lg: 0 24px 70px rgba(0, 0, 0, .6);
  --bs-body-color: var(--nv-ink);
  --bs-body-bg: var(--nv-surface);
  --bs-link-color: var(--nv-ink);
  --bs-link-color-rgb: var(--nv-ink-rgb);
  --bs-border-color: var(--nv-border);
  --bs-secondary-color: var(--nv-muted);
  --bs-secondary-bg: var(--nv-surface-2);
  --bs-tertiary-bg: var(--nv-surface-3);
  color-scheme: dark;
}
[data-bs-theme="dark"] .btn-dark { --bs-btn-bg: #ecebe6; --bs-btn-border-color: #ecebe6; --bs-btn-color: #0e1116; --bs-btn-hover-bg: #fff; --bs-btn-hover-border-color: #fff; --bs-btn-hover-color: #0e1116; }
[data-bs-theme="dark"] .btn-outline-dark { --bs-btn-color: #ecebe6; --bs-btn-border-color: #3a3f4c; --bs-btn-hover-bg: #ecebe6; --bs-btn-hover-color: #0e1116; --bs-btn-hover-border-color: #ecebe6; }
[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select { background: var(--nv-surface-2); border-color: var(--nv-border); color: var(--nv-ink); }
[data-bs-theme="dark"] .form-control::placeholder { color: #6f737e; }
[data-bs-theme="dark"] .text-muted { color: var(--nv-muted) !important; }
[data-bs-theme="dark"] .dark-block { background: #05070a; }

html { scroll-behavior: smooth; }
body { line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, .h1, .h2, .h3, .h4, .display-3, .display-4, .display-5 { font-family: var(--nv-font-head); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
h5, h6, .h5, .h6 { font-family: var(--nv-font-body); font-weight: 700; letter-spacing: -.01em; }
a { text-decoration: none; transition: color .2s ease; }
img, svg { max-width: 100%; }
.text-accent { color: var(--nv-accent) !important; }
.bg-surface-2 { background: var(--nv-surface-2); }
.dark-block { background: var(--nv-ink); color: #fff; }
[data-bs-theme="light"] .dark-block { --nv-muted: #a0a4ad; }
.dark-block .text-muted { color: #a0a4ad !important; }
.dark-block h1, .dark-block h2, .dark-block h3 { color: #fff; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head h2, .page-title h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: .75rem; }
.section-head p { color: var(--nv-muted); font-size: 1.05rem; max-width: 600px; }
.section-head.text-center p { margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--nv-accent); margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--nv-accent); }
.eyebrow.light { color: #ffb08a; } .eyebrow.light::before { background: #ffb08a; }
.eyebrow.center { justify-content: center; } .eyebrow.center::before { display: none; }
.lead { font-size: 1.15rem; color: var(--nv-muted); }
.italic { font-style: italic; font-weight: 500; }

.btn { font-weight: 600; border-radius: 999px; padding: .75rem 1.5rem; transition: all .2s ease; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-accent { background: var(--nv-accent); border: 1px solid var(--nv-accent); color: #fff; }
.btn-accent:hover { background: var(--nv-accent-dark); border-color: var(--nv-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--nv-accent-rgb), .35); }
.btn-dark { --bs-btn-bg: var(--nv-ink); --bs-btn-border-color: var(--nv-ink); --bs-btn-hover-bg: #000; --bs-btn-hover-border-color: #000; }
.btn-outline-dark { --bs-btn-color: var(--nv-ink); --bs-btn-border-color: #cfcbc2; --bs-btn-hover-bg: var(--nv-ink); --bs-btn-hover-border-color: var(--nv-ink); --bs-btn-hover-color: #fff; }
.btn-light { --bs-btn-bg: #fff; --bs-btn-color: var(--nv-ink); --bs-btn-hover-bg: #f3f1ec; border: 0; }
.btn-outline-light { --bs-btn-border-color: rgba(255,255,255,.35); --bs-btn-hover-bg: rgba(255,255,255,.1); --bs-btn-hover-border-color: #fff; }
.btn-icon { width: 44px; height: 44px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.theme-toggle { border: 1px solid var(--nv-border); background: var(--nv-surface); color: var(--nv-ink); }
.theme-toggle:hover { background: var(--nv-surface-2); }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--nv-ink); }
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover { color: var(--nv-accent); } .link-arrow:hover i { transform: translate(3px, -3px); }

.topbar { background: var(--nv-ink); color: rgba(255,255,255,.75); font-size: .82rem; padding: .5rem 0; }
.topbar a { color: rgba(255,255,255,.85); } .topbar a:hover { color: var(--nv-accent); }
[data-bs-theme="dark"] .topbar { background: #05070a; }
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(251,250,247,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: all .25s ease; }
[data-bs-theme="dark"] .site-header { background: rgba(14,17,22,.85); }
.site-header.is-scrolled { border-bottom-color: var(--nv-border); box-shadow: 0 4px 24px rgba(20,23,31,.06); }
.site-header .navbar { padding: .85rem 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--nv-font-head); font-weight: 700; font-size: 1.5rem; color: var(--nv-ink); letter-spacing: -.02em; }
.navbar-nav .nav-link { font-weight: 500; color: var(--nv-ink); padding: .5rem 1rem !important; position: relative; }
.navbar-nav .nav-link::after { content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .25rem; height: 2px; background: var(--nv-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .dropdown-toggle::after { display: none; }
.dropdown-menu { border: 1px solid var(--nv-border); border-radius: 14px; box-shadow: var(--nv-shadow-lg); padding: .5rem; min-width: 220px; background: var(--nv-surface); }
.dropdown-item { border-radius: 8px; padding: .55rem .9rem; font-weight: 500; color: var(--nv-ink); }
.dropdown-item:hover { background: var(--nv-surface-2); color: var(--nv-accent); }
.navbar-toggler { border: 1px solid var(--nv-border); border-radius: 50%; width: 44px; height: 44px; padding: 0; font-size: 1.4rem; color: var(--nv-ink); }
.navbar-toggler:focus { box-shadow: none; }
.offcanvas { background: var(--nv-surface); }
.mobile-nav .nav-link { font-family: var(--nv-font-head); font-size: 1.25rem; font-weight: 600; padding: .7rem 0; border-bottom: 1px solid var(--nv-border); color: var(--nv-ink); }
.mobile-nav .nav-link.active { color: var(--nv-accent); }

.hero { position: relative; overflow: hidden; padding: 6rem 0 5rem; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--nv-accent); }
.hero .lead { max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem 1rem; margin-top: 2rem; align-items: center; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--nv-radius); width: 100%; display: block; }
.hero-media .float-stat { position: absolute; background: var(--nv-surface); border: 1px solid var(--nv-border); border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--nv-shadow-lg); }
.hero-media .float-stat b { font-family: var(--nv-font-head); font-size: 1.8rem; display: block; line-height: 1; }
.hero-media .float-stat small { color: var(--nv-muted); }
.hero-media .fs-1 { left: -8%; bottom: 12%; } .hero-media .fs-2 { right: -6%; top: 10%; }
@media (max-width: 991.98px) { .hero-media .float-stat { position: static; display: inline-block; margin: 1rem .5rem 0 0; } }
.hero-clients { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin-top: 2.5rem; color: var(--nv-muted); font-size: .85rem; align-items: center; }
.hero-clients b { font-family: var(--nv-font-head); font-size: 1.1rem; color: var(--nv-ink); opacity: .6; }
.hero-dark { background: var(--nv-ink); color: #fff; padding: 7rem 0 6rem; }
[data-bs-theme="dark"] .hero-dark { background: #05070a; }
.hero-dark h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: .98; letter-spacing: -.03em; }
.hero-dark .lead { color: rgba(255,255,255,.7); }
.hero-dark .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.7); }
.hero-dark .btn-outline-dark { --bs-btn-color: #fff; --bs-btn-border-color: rgba(255,255,255,.35); --bs-btn-hover-bg: #fff; --bs-btn-hover-color: var(--nv-ink); }
.hero-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--nv-radius); overflow: hidden; margin-top: 3rem; }
@media (min-width: 768px) { .hero-strip { grid-template-columns: repeat(4, 1fr); } }
.hero-strip div { background: var(--nv-ink); padding: 1.5rem; }
[data-bs-theme="dark"] .hero-strip div { background: #05070a; }
.hero-strip b { font-family: var(--nv-font-head); font-size: 2rem; display: block; color: #fff; line-height: 1; }
.hero-strip small { color: rgba(255,255,255,.6); }
.hero-split { padding: 5rem 0 0; }
.hero-split .media-wide { margin-top: 3rem; border-radius: var(--nv-radius) var(--nv-radius) 0 0; overflow: hidden; aspect-ratio: 21/8; }
.hero-split .media-wide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.clients { padding: 2rem 0; border-top: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border); }
.clients-row { display: flex; align-items: center; gap: 2rem; }
.clients-row > span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--nv-muted); white-space: nowrap; font-weight: 700; }
.marquee { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 4rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track b { font-family: var(--nv-font-head); font-size: 1.25rem; color: var(--nv-muted); white-space: nowrap; font-weight: 600; }
@keyframes marquee { to { transform: translateX(-50%); } }

.service-card { padding: 2rem; border-radius: var(--nv-radius); background: var(--nv-surface); border: 1px solid var(--nv-border); height: 100%; display: flex; flex-direction: column; transition: all .25s ease; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: auto -40px -40px auto; width: 140px; height: 140px; border-radius: 50%; background: rgba(var(--nv-accent-rgb), .08); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--nv-shadow-lg); border-color: rgba(var(--nv-accent-rgb), .4); }
.service-card:hover::after { transform: scale(1.6); }
.service-card .num { font-family: var(--nv-font-head); color: var(--nv-accent); font-size: .95rem; font-weight: 600; margin-bottom: 1rem; }
.service-card .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--nv-ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
[data-bs-theme="dark"] .service-card .icon { background: var(--nv-accent); }
.service-card h4 { font-size: 1.35rem; margin-bottom: .6rem; }
.service-card p { color: var(--nv-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.service-card .link-arrow { margin-top: auto; position: relative; z-index: 1; }
.service-row { display: flex; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid var(--nv-border); align-items: flex-start; }
.service-row:last-child { border-bottom: 1px solid var(--nv-border); }
.service-row .num { font-family: var(--nv-font-head); color: var(--nv-accent); font-size: 1.2rem; min-width: 48px; }
.service-row h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.service-row p { color: var(--nv-muted); margin-bottom: .75rem; }
.service-row .tags span { display: inline-block; font-size: .8rem; border: 1px solid var(--nv-border); border-radius: 999px; padding: .25rem .7rem; margin: 0 .35rem .35rem 0; color: var(--nv-muted); }

.about-media { position: relative; }
.about-media img { border-radius: var(--nv-radius); width: 100%; display: block; }
.about-media .badge-round { position: absolute; right: -20px; bottom: -20px; width: 150px; height: 150px; border-radius: 50%; background: var(--nv-accent); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-family: var(--nv-font-head); box-shadow: var(--nv-shadow-lg); }
.about-media .badge-round b { font-size: 2.6rem; line-height: 1; }
.about-media .badge-round small { font-family: var(--nv-font-body); font-size: .8rem; line-height: 1.2; }
@media (max-width: 575.98px) { .about-media .badge-round { width: 110px; height: 110px; right: 0; } .about-media .badge-round b { font-size: 1.8rem; } }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: .45rem 0 .45rem 2rem; position: relative; }
.check-list li::before { content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .5rem; color: var(--nv-accent); font-weight: 700; }
.stat { padding: 1.5rem 0; }
.stat .num { font-family: var(--nv-font-head); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; line-height: 1; }
.stat .num span { color: var(--nv-accent); }
.stat .label { color: var(--nv-muted); margin-top: .5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--nv-border); border: 1px solid var(--nv-border); border-radius: var(--nv-radius); overflow: hidden; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid .stat { background: var(--nv-surface); padding: 2rem 1.5rem; text-align: center; }

.process { counter-reset: step; }
.process-step { position: relative; padding: 2rem 0 2rem 5rem; border-top: 1px solid var(--nv-border); }
.process-step:last-child { border-bottom: 1px solid var(--nv-border); }
.process-step::before { counter-increment: step; content: "0" counter(step); position: absolute; left: 0; top: 2rem; font-family: var(--nv-font-head); font-size: 2rem; color: var(--nv-accent); line-height: 1; }
.process-step h4 { font-size: 1.35rem; margin-bottom: .4rem; }
.process-step p { color: var(--nv-muted); margin: 0; }
.process-grid .step-card { padding: 2rem; border-radius: var(--nv-radius); background: var(--nv-surface-2); height: 100%; }
.process-grid .step-card .n { font-family: var(--nv-font-head); font-size: 3rem; color: var(--nv-accent); line-height: 1; margin-bottom: 1rem; }
.process-grid .step-card h5 { margin-bottom: .5rem; }
.process-grid .step-card p { color: var(--nv-muted); font-size: .95rem; margin: 0; }

.work-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.work-filter button { border: 1px solid var(--nv-border); background: var(--nv-surface); color: var(--nv-ink); border-radius: 999px; padding: .5rem 1.1rem; font-weight: 600; font-size: .9rem; transition: all .2s ease; }
.work-filter button.active, .work-filter button:hover { background: var(--nv-ink); color: #fff; border-color: var(--nv-ink); }
[data-bs-theme="dark"] .work-filter button.active, [data-bs-theme="dark"] .work-filter button:hover { background: var(--nv-accent); border-color: var(--nv-accent); }
.work-card { display: block; border-radius: var(--nv-radius); overflow: hidden; position: relative; color: var(--nv-ink); }
.work-card .media { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--nv-radius); background: var(--nv-surface-2); }
.work-card.tall .media { aspect-ratio: 3/4; }
.work-card.wide .media { aspect-ratio: 16/9; }
.work-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); display: block; }
.work-card:hover .media img { transform: scale(1.05); }
.work-card .info { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1rem .25rem 0; }
.work-card .info h5 { font-family: var(--nv-font-head); font-size: 1.25rem; font-weight: 600; margin: 0; }
.work-card .info small { color: var(--nv-muted); display: block; margin-top: .2rem; }
.work-card .info .arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--nv-border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s ease; }
.work-card:hover .info .arrow { background: var(--nv-accent); border-color: var(--nv-accent); color: #fff; }
.work-item.is-hidden { display: none; }
.case-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem; border-radius: var(--nv-radius); background: var(--nv-surface-2); }
@media (min-width: 768px) { .case-meta { grid-template-columns: repeat(4, 1fr); } }
.case-meta small { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--nv-muted); margin-bottom: .3rem; font-weight: 700; }
.case-meta b { font-family: var(--nv-font-head); font-size: 1.05rem; font-weight: 600; }
.case-gallery { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.case-gallery img { border-radius: var(--nv-radius); width: 100%; display: block; }
.case-gallery .span-2 { grid-column: span 2; }
.result-card { padding: 2rem; border-radius: var(--nv-radius); background: var(--nv-ink); color: #fff; height: 100%; }
[data-bs-theme="dark"] .result-card { background: var(--nv-surface-2); }
.result-card b { font-family: var(--nv-font-head); font-size: 2.8rem; display: block; line-height: 1; color: var(--nv-accent); }
.result-card span { color: rgba(255,255,255,.7); }
[data-bs-theme="dark"] .result-card span { color: var(--nv-muted); }

.team-card { position: relative; }
.team-card .photo { aspect-ratio: 4/5; border-radius: var(--nv-radius); overflow: hidden; background: var(--nv-surface-2); margin-bottom: 1rem; position: relative; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .photo img { transform: scale(1.04); }
.team-card .photo .links { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; gap: .5rem; opacity: 0; transform: translateY(8px); transition: all .25s ease; }
.team-card:hover .photo .links { opacity: 1; transform: none; }
.team-card .photo .links a { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--nv-ink); display: inline-flex; align-items: center; justify-content: center; }
.team-card .photo .links a:hover { background: var(--nv-accent); color: #fff; }
.team-card h5 { font-family: var(--nv-font-head); font-size: 1.25rem; font-weight: 600; margin-bottom: .1rem; }
.team-card small { color: var(--nv-muted); }

.quote-card { padding: 2rem; border-radius: var(--nv-radius); background: var(--nv-surface); border: 1px solid var(--nv-border); height: 100%; display: flex; flex-direction: column; }
.quote-card > i { font-size: 2.5rem; color: var(--nv-accent); line-height: 1; margin-bottom: .75rem; }
.quote-card p { font-family: var(--nv-font-head); font-size: 1.15rem; font-weight: 500; line-height: 1.5; flex: 1; }
.quote-card .author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }
.quote-card .author small { display: block; color: var(--nv-muted); }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; flex-shrink: 0; font-size: .9rem; }
.av-1 { background: #14171f; } .av-2 { background: var(--nv-accent); } .av-3 { background: #2c5f6b; } .av-4 { background: #8b5e34; } .av-5 { background: #4b4f7a; } .av-6 { background: #5a7a3a; }
[data-bs-theme="dark"] .av-1 { background: #3a3f4c; }
.big-quote { font-family: var(--nv-font-head); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.3; }

.plan { border: 1px solid var(--nv-border); border-radius: var(--nv-radius); padding: 2.25rem; background: var(--nv-surface); height: 100%; display: flex; flex-direction: column; position: relative; transition: all .25s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--nv-shadow-lg); }
.plan.is-featured { background: var(--nv-ink); color: #fff; border-color: var(--nv-ink); }
[data-bs-theme="dark"] .plan.is-featured { background: var(--nv-surface-3); border-color: var(--nv-accent); }
.plan.is-featured .desc, .plan.is-featured li, .plan.is-featured .billed { color: rgba(255,255,255,.75); }
.plan .ribbon { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--nv-accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px; }
.plan h4 { font-size: 1.35rem; }
.plan .desc { color: var(--nv-muted); font-size: .92rem; min-height: 2.8em; }
.plan .price { font-family: var(--nv-font-head); font-size: 3rem; font-weight: 600; line-height: 1; margin: 1.25rem 0 .25rem; }
.plan .price small { font-family: var(--nv-font-body); font-size: 1rem; font-weight: 500; color: var(--nv-muted); }
.plan.is-featured .price small { color: rgba(255,255,255,.6); }
.plan .billed { color: var(--nv-muted); font-size: .82rem; min-height: 1.2em; }
.plan ul { list-style: none; padding: 0; margin: 1.75rem 0; flex: 1; }
.plan li { display: flex; gap: .65rem; padding: .4rem 0; font-size: .95rem; }
.plan li i { color: var(--nv-accent); }
.pricing-toggle { display: inline-flex; align-items: center; background: var(--nv-surface-2); border: 1px solid var(--nv-border); border-radius: 999px; padding: .3rem; }
.pricing-toggle button { border: 0; background: transparent; border-radius: 999px; padding: .55rem 1.2rem; font-weight: 600; color: var(--nv-muted); font-size: .92rem; }
.pricing-toggle button.active { background: var(--nv-ink); color: #fff; }
.pricing-toggle .save { color: var(--nv-accent); font-size: .78rem; font-weight: 700; margin-left: .35rem; }

.post-card { border-radius: var(--nv-radius); overflow: hidden; background: var(--nv-surface); border: 1px solid var(--nv-border); height: 100%; display: flex; flex-direction: column; transition: all .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--nv-shadow-lg); }
.post-card .post-media { aspect-ratio: 16/10; overflow: hidden; display: block; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-card .post-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .8rem; color: var(--nv-muted); display: flex; gap: .75rem; align-items: center; margin-bottom: .6rem; }
.post-meta .cat { color: var(--nv-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.post-card h5 { font-family: var(--nv-font-head); font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
.post-card h5 a { color: var(--nv-ink); } .post-card h5 a:hover { color: var(--nv-accent); }
.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-featured { border-radius: var(--nv-radius); overflow: hidden; position: relative; aspect-ratio: 16/8; display: block; color: #fff; }
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-featured .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(20,23,31,.92)); padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.post-featured h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); max-width: 720px; }
.post-featured .post-meta { color: rgba(255,255,255,.7); }
.post-content { font-size: 1.1rem; line-height: 1.85; }
.post-content h2, .post-content h3 { margin-top: 2.5rem; margin-bottom: .75rem; }
.post-content blockquote { border-left: 4px solid var(--nv-accent); padding: 1.25rem 1.75rem; background: var(--nv-surface-2); border-radius: 0 var(--nv-radius-sm) var(--nv-radius-sm) 0; font-family: var(--nv-font-head); font-size: 1.3rem; font-style: italic; }
.post-content img { border-radius: var(--nv-radius); }
.post-content ul li { margin-bottom: .4rem; }
.tag-list a { display: inline-block; background: var(--nv-surface-2); border: 1px solid var(--nv-border); border-radius: 999px; padding: .3rem .85rem; font-size: .82rem; color: var(--nv-ink); margin: 0 .35rem .35rem 0; }
.tag-list a:hover { border-color: var(--nv-accent); color: var(--nv-accent); }
.sidebar-card { background: var(--nv-surface); border: 1px solid var(--nv-border); border-radius: var(--nv-radius); padding: 1.75rem; }
.sidebar-card.sticky { position: sticky; top: 100px; }
.sidebar-card h5 { margin-bottom: 1rem; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: .6rem 0; border-bottom: 1px solid var(--nv-border); }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list a { display: flex; justify-content: space-between; color: var(--nv-ink); font-weight: 500; }
.sidebar-list a:hover { color: var(--nv-accent); }
.sidebar-list a span { color: var(--nv-muted); font-size: .85rem; }
.sidebar-nav a { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1.1rem; border-radius: 12px; background: var(--nv-surface-2); margin-bottom: .5rem; color: var(--nv-ink); font-weight: 600; transition: all .2s ease; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--nv-ink); color: #fff; }
[data-bs-theme="dark"] .sidebar-nav a:hover, [data-bs-theme="dark"] .sidebar-nav a.active { background: var(--nv-accent); }
.pagination .page-link { border-radius: 50% !important; margin: 0 .2rem; border: 1px solid var(--nv-border); color: var(--nv-ink); font-weight: 600; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: var(--nv-surface); }
.pagination .page-item.active .page-link { background: var(--nv-ink); border-color: var(--nv-ink); color: #fff; }
.pagination .page-link:hover { background: var(--nv-surface-2); }
.pagination .page-item.disabled .page-link { color: var(--nv-muted); }

.page-title { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--nv-border); background: var(--nv-surface-2); }
.page-title h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: .5rem 0 .75rem; }
.page-title .lead { max-width: 640px; margin: 0; }
.breadcrumb { font-size: .85rem; margin-bottom: 0; }
.breadcrumb a { color: var(--nv-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: "→"; color: var(--nv-muted); }
.breadcrumb-item.active { color: var(--nv-accent); }

.form-control, .form-select { border-radius: 12px; padding: .8rem 1rem; border-color: var(--nv-border); background: var(--nv-surface); }
.form-control:focus, .form-select:focus { border-color: var(--nv-accent); box-shadow: 0 0 0 .2rem rgba(var(--nv-accent-rgb), .18); }
.form-label { font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.form-check-input:checked { background-color: var(--nv-accent); border-color: var(--nv-accent); }
.newsletter .form-control { min-width: 220px; border-radius: 999px; }
.contact-card { padding: 1.75rem; border-radius: var(--nv-radius); border: 1px solid var(--nv-border); background: var(--nv-surface); height: 100%; }
.contact-card .icon { width: 50px; height: 50px; border-radius: 14px; background: var(--nv-surface-2); color: var(--nv-accent); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.contact-card h5 { margin-bottom: .35rem; }
.contact-card p { color: var(--nv-muted); font-size: .92rem; margin-bottom: .5rem; }
.map-wrap { border-radius: var(--nv-radius); overflow: hidden; border: 1px solid var(--nv-border); aspect-ratio: 16/6; background: var(--nv-surface-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.accordion-item { border: 1px solid var(--nv-border); border-radius: 14px !important; margin-bottom: .75rem; overflow: hidden; background: var(--nv-surface); }
.accordion-button { font-weight: 600; background: var(--nv-surface); color: var(--nv-ink); box-shadow: none !important; padding: 1.2rem 1.5rem; font-family: var(--nv-font-head); font-size: 1.1rem; }
.accordion-button:not(.collapsed) { background: var(--nv-surface); color: var(--nv-accent); }
.accordion-button::after { filter: none; }
.accordion-body { color: var(--nv-muted); padding-top: 0; }
.faq-tabs .nav-link { text-align: left; border-radius: 12px; padding: .9rem 1.1rem; color: var(--nv-ink); font-weight: 600; margin-bottom: .4rem; }
.faq-tabs .nav-link.active { background: var(--nv-ink); color: #fff; }
[data-bs-theme="dark"] .faq-tabs .nav-link.active { background: var(--nv-accent); }

.values-grid .value { padding: 2rem; border-radius: var(--nv-radius); border: 1px solid var(--nv-border); height: 100%; }
.values-grid .value i { font-size: 1.75rem; color: var(--nv-accent); }
.values-grid .value h5 { margin: 1rem 0 .5rem; }
.values-grid .value p { color: var(--nv-muted); font-size: .95rem; margin: 0; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--nv-border); }
.timeline-item { position: relative; padding: 0 0 2rem 2.5rem; }
.timeline-item::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--nv-accent); border: 4px solid var(--nv-surface); box-shadow: 0 0 0 2px var(--nv-accent); }
.timeline-item b { font-family: var(--nv-font-head); font-size: 1.2rem; color: var(--nv-accent); }
.timeline-item p { color: var(--nv-muted); margin: .25rem 0 0; }
.awards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .awards { grid-template-columns: repeat(4, 1fr); } }
.awards div { border: 1px solid var(--nv-border); border-radius: var(--nv-radius-sm); padding: 1.25rem; text-align: center; }
.awards div b { display: block; font-family: var(--nv-font-head); font-size: 1.1rem; }
.awards div small { color: var(--nv-muted); }

.cta-band { background: var(--nv-ink); color: #fff; border-radius: var(--nv-radius); padding: 3.5rem; position: relative; overflow: hidden; }
[data-bs-theme="dark"] .cta-band { background: var(--nv-surface-3); }
.cta-band::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(var(--nv-accent-rgb), .25); right: -120px; top: -200px; }
.cta-band .row { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.site-footer { background: var(--nv-surface-2); border-top: 1px solid var(--nv-border); }
[data-bs-theme="dark"] .site-footer { background: #0a0d12; }
.footer-top { padding: 3.5rem 0; border-bottom: 1px solid var(--nv-border); }
.footer-cta { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.footer-cta a { color: var(--nv-accent); border-bottom: 2px solid var(--nv-accent); }
.footer-cta a:hover { color: var(--nv-accent-dark); }
.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-title { font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: var(--nv-muted); } .footer-links a:hover { color: var(--nv-accent); }
.footer-contacts li { display: flex; gap: .75rem; margin-bottom: .7rem; color: var(--nv-muted); }
.footer-contacts i { color: var(--nv-accent); margin-top: .15rem; }
.footer-contacts a { color: var(--nv-muted); }
.social a { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; background: var(--nv-surface); border: 1px solid var(--nv-border); color: var(--nv-ink); transition: all .2s ease; }
.social a:hover { background: var(--nv-ink); color: #fff; border-color: var(--nv-ink); }
[data-bs-theme="dark"] .social a:hover { background: var(--nv-accent); border-color: var(--nv-accent); }
.footer-bottom { border-top: 1px solid var(--nv-border); padding: 1.5rem 0; }
.footer-bottom a { color: var(--nv-muted); }

.error-page { padding: 7rem 0; text-align: center; }
.error-page .code { font-family: var(--nv-font-head); font-size: clamp(6rem, 18vw, 12rem); font-weight: 600; line-height: 1; color: var(--nv-surface-3); }
.error-page .code span { color: var(--nv-accent); }
.thanks-icon { width: 96px; height: 96px; border-radius: 50%; background: rgba(var(--nv-accent-rgb), .14); color: var(--nv-accent); 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(22px); 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; } .marquee-track { animation: none; } }
@media (max-width: 991.98px) { .section { padding: 4rem 0; } .hero { padding: 3.5rem 0; } .hero-dark { padding: 4.5rem 0; } .cta-band { padding: 2.25rem; } .clients-row { flex-direction: column; align-items: flex-start; gap: 1rem; } .process-step { padding-left: 3.5rem; } .process-step::before { font-size: 1.4rem; } }
.marquee { width: 100%; min-width: 0; }
.clients-row > span { flex-shrink: 0; }
