.elementor-8 .elementor-element.elementor-element-c4b5b94{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-8 .elementor-element.elementor-element-c4b5b94{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-4b633a8 *//* =========================================================
   NOVE — Static CSS (Elementor / CloneWebX / SoftLite ready)
   Pure CSS, HEX colors, Google Fonts, no Tailwind, no oklch.
   ========================================================= */

:root {
  --nove-bg: #0a0a0f;
  --nove-surface: #14141c;
  --nove-fg: #ffffff;
  --nove-muted: #a3a3a3;
  --nove-border: rgba(255, 255, 255, 0.08);
  --nove-accent: #776ada;
  --nove-accent-hover: #8a7eea;

  --nove-light-bg: #f7f7f7;
  --nove-light-fg: #14141c;
  --nove-light-muted: #6b6b6b;
  --nove-light-border: rgba(0, 0, 0, 0.08);

  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--nove-bg);
  color: var(--nove-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =================== Header =================== */
.nove-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.nove-header.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nove-border);
}

.nove-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nove-header-inner { padding: 16px 48px; }
}

.nove-logo img {
  height: 38px;
  width: auto;
}

@media (min-width: 768px) {
  .nove-logo img { height: 48px; }
}

.nove-nav {
  display: none;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .nove-nav { display: flex; }
}

.nove-nav a {
  color: var(--nove-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nove-nav a:hover {
  color: var(--nove-fg);
}

.nove-header-cta {
  display: none;
}

@media (min-width: 768px) {
  .nove-header-cta { display: inline-flex; }
}

/* =================== Buttons =================== */
.nove-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background-color: var(--nove-accent);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nove-btn-primary:hover {
  background-color: var(--nove-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(119, 106, 218, 0.3);
}

.nove-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--nove-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nove-btn-outline:hover {
  border-color: var(--nove-accent);
  color: var(--nove-accent);
  transform: translateY(-2px);
}

.nove-section-light .nove-btn-outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--nove-light-fg);
}

.nove-section-light .nove-btn-outline:hover {
  border-color: var(--nove-accent);
  color: var(--nove-accent);
}

.nove-btn-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

/* =================== Typography =================== */
.nove-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.nove-heading-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.nove-heading-hero {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.nove-subtext {
  color: var(--nove-muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.nove-section-light .nove-subtext { color: var(--nove-light-muted); }

.nove-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nove-accent);
}

.text-accent { color: var(--nove-accent); }

/* =================== Sections =================== */
.nove-section {
  padding: clamp(64px, 10vh, 128px) clamp(24px, 5vw, 96px);
  position: relative;
}

.nove-section-light {
  background-color: var(--nove-light-bg);
  color: var(--nove-light-fg);
}

.nove-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nove-container-wide {
  max-width: 1600px;
  margin: 0 auto;
}

.nove-divider {
  width: 60px;
  height: 2px;
  background: var(--nove-accent);
}

/* =================== Hero =================== */
.nove-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.nove-hero-bg {
  position: absolute;
  inset: 0;
}

.nove-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nove-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
}

.nove-hero-glow {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(119, 106, 218, 0.25) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.nove-ghost-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(96px, 15vw, 224px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.nove-section-light .nove-ghost-text { color: rgba(0, 0, 0, 0.04); }

.nove-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .nove-hero-content { padding: 0 48px; }
}

@media (min-width: 1024px) {
  .nove-hero-content { padding: 0 96px; }
}

.nove-hero-label { margin-bottom: 24px; }

.nove-hero-title {
  max-width: 900px;
  margin-bottom: 32px;
}

.nove-hero-desc {
  max-width: 560px;
  margin-bottom: 40px;
}

/* =================== About =================== */
.nove-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .nove-about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.nove-about-lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--nove-light-fg);
}

.nove-mt-16 { margin-top: 16px; }
.nove-mt-24 { margin-top: 24px; }
.nove-mt-32 { margin-top: 32px; }
.nove-mt-40 { margin-top: 40px; }
.nove-mb-16 { margin-bottom: 16px; }
.nove-mb-24 { margin-bottom: 24px; }
.nove-mb-32 { margin-bottom: 32px; }
.nove-mb-40 { margin-bottom: 40px; }
.nove-mb-64 { margin-bottom: 64px; }
.nove-mb-80 { margin-bottom: 80px; }
.nove-mb-96 { margin-bottom: 96px; }

.nove-stack > * + * { margin-top: 32px; }

/* =================== Services =================== */
.nove-services-list > * + * { margin-top: 64px; }

@media (min-width: 768px) {
  .nove-services-list > * + * { margin-top: 0; }
}

.nove-service-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
  min-height: 80vh;
}

@media (min-width: 768px) {
  .nove-service-block { flex-direction: row; gap: 64px; padding: 0; }
  .nove-service-block.reversed { flex-direction: row-reverse; }
}

.nove-service-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .nove-service-image { width: 50%; aspect-ratio: auto; height: 70vh; }
}

.nove-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nove-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.6), transparent 50%);
  pointer-events: none;
}

.nove-service-text {
  width: 100%;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .nove-service-text { width: 50%; padding: 0 32px; }
}

.nove-service-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 32px;
}

.nove-service-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  color: var(--nove-muted);
  margin-top: 32px;
}

/* =================== Differentials (Bento) =================== */
.nove-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 8px;
}

@media (min-width: 768px) {
  .nove-bento {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 210px;
    gap: 12px;
  }
}

.nove-bento-item { position: relative; }
.nove-col-1 { grid-column: span 1; }
.nove-col-2 { grid-column: span 2; }

@media (min-width: 768px) {
  .md-col-1 { grid-column: span 1; }
  .md-col-2 { grid-column: span 2; }
}

.nove-text-card {
  height: 100%;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .nove-text-card { padding: 24px; }
}

.nove-text-card.white {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nove-text-card.dashed {
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

.nove-text-card.accent {
  background: var(--nove-accent);
  color: #ffffff;
}

.nove-text-card p {
  color: var(--nove-light-fg);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .nove-text-card p { font-size: 14px; }
}

.nove-text-card.accent p { color: #ffffff; }

.nove-text-card .light { font-weight: 300; }

.nove-image-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.nove-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.nove-image-card:hover img { filter: grayscale(0); }

.nove-bento-title-card {
  height: 100%;
  border-radius: 8px;
  background: var(--nove-light-bg);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nove-bento-title-card h2 {
  font-family: var(--font-display);
  color: var(--nove-light-fg);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nove-bento-title-card h2 span { display: inline-block; margin-left: 16px; }

.nove-diff-cta {
  margin-top: 64px;
  text-align: center;
}

/* =================== CEO =================== */
.nove-ceo-glow {
  position: absolute;
  top: 33%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(119, 106, 218, 0.2) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.nove-ceo-lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--nove-fg);
}

.nove-ceo-divider {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nove-ceo-divider span {
  color: var(--nove-muted);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =================== Clients =================== */
.nove-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .nove-clients-grid { grid-template-columns: repeat(4, 1fr); }
}

.nove-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 160px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.nove-client-logo:hover { opacity: 0.8; }

.nove-client-logo img {
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
  mix-blend-mode: multiply;
  filter: grayscale(1);
}

.nove-client-logo.larger img {
  max-height: 130%;
  max-width: 130%;
}

.nove-client-logo.invert img { filter: invert(1) grayscale(1); }

/* =================== CTA =================== */
.nove-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nove-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(119, 106, 218, 0.15) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* =================== Footer =================== */
.nove-footer {
  border-top: 1px solid var(--nove-border);
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .nove-footer { padding: 64px 48px; }
}

.nove-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.nove-footer-cols {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .nove-footer-cols { flex-direction: row; justify-content: space-between; }
}

.nove-footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.nove-footer-col a {
  display: block;
  color: var(--nove-muted);
  margin-top: 16px;
  transition: color 0.3s ease;
}

.nove-footer-col a:hover { color: var(--nove-fg); }

.nove-footer-logo {
  height: 32px;
  margin-bottom: 24px;
}

.nove-footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--nove-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .nove-footer-bottom { flex-direction: row; justify-content: space-between; }
}

.nove-footer-bottom p {
  color: var(--nove-muted);
  font-size: 12px;
}/* End custom CSS */


