/*
 Theme Name:   Novoo Solutions
 Theme URI:    https://novoosolutions.com
 Description:  Novoo Solutions — Custom Blocksy Child Theme (marketing agency)
 Author:       Novoo Solutions
 Template:     blocksy
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  novoo-solutions
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --nv-purple:    #351f59;
  --nv-purple-2:  #4a2b7a;
  --nv-pink:      #db3866;
  --nv-magenta:   #e70d88;
  --nv-orange:    #f49b31;
  --nv-bg:        #f0e5f0;
  --nv-gray:      #f8f7fa;
  --nv-text:      #1a1a2e;
  --nv-muted:     #6b7280;
  --nv-white:     #ffffff;
  --nv-radius:    18px;
  --nv-shadow:    0 8px 32px rgba(53,31,89,.10);
  --nv-shadow-lg: 0 24px 64px rgba(53,31,89,.16);
  --nv-grad:      linear-gradient(135deg, var(--nv-purple) 0%, var(--nv-magenta) 100%);
  --nv-grad-warm: linear-gradient(135deg, var(--nv-magenta) 0%, var(--nv-orange) 100%);
  --nv-container: 1200px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--nv-text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
}
h1,h2,h3,h4,h5,h6,p,a,li,span,button,input,textarea {
  font-family: 'Poppins', sans-serif !important;
}
h1,h2,h3,h4 { color: var(--nv-purple); line-height: 1.25; margin: 0 0 .6em; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all .25s ease; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.nv-container { max-width: var(--nv-container); margin: 0 auto; padding: 0 5%; }
.nv-section { padding: 96px 0; }
.nv-section.gray { background: var(--nv-gray); }
.nv-section.tint { background: var(--nv-bg); }
.nv-center { text-align: center; }

/* Section headers */
.nv-tag {
  display: inline-block; background: rgba(53,31,89,.07); color: var(--nv-purple);
  font-size: .78rem; font-weight: 600; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase;
}
.nv-h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 700; margin-bottom: 16px; }
.nv-h2 .grad, .nv-h1 .grad {
  background: var(--nv-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nv-sub { font-size: 1.05rem; color: var(--nv-muted); max-width: 660px; line-height: 1.8; }
.nv-center .nv-sub { margin: 0 auto; }
.nv-head { margin-bottom: 56px; }

/* Buttons */
.nv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 14px; font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer; transition: all .3s ease; white-space: nowrap;
}
.nv-btn-primary { background: var(--nv-purple); color: #fff; box-shadow: 0 8px 24px rgba(53,31,89,.25); }
.nv-btn-primary:hover { background: var(--nv-magenta); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(231,13,136,.3); color:#fff; }
.nv-btn-warm { background: var(--nv-grad-warm); color: #fff; box-shadow: 0 8px 24px rgba(231,13,136,.25); }
.nv-btn-warm:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(244,155,49,.35); color:#fff; }
.nv-btn-outline { background: #fff; color: var(--nv-purple); border: 2px solid rgba(53,31,89,.15); }
.nv-btn-outline:hover { border-color: var(--nv-purple); background: var(--nv-bg); transform: translateY(-2px); }
.nv-btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.25); }
.nv-btn-ghost:hover { background: rgba(255,255,255,.2); color:#fff; }
.nv-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.nv-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(53,31,89,.07);
  transition: box-shadow .3s;
}
.nv-header.scrolled { box-shadow: 0 4px 30px rgba(53,31,89,.1); }
.nv-header-inner {
  max-width: var(--nv-container); margin: 0 auto; padding: 0 5%;
  height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nv-logo img { height: 40px; width: auto; }
.nv-nav { display: flex; align-items: center; gap: 2px; }
.nv-nav a {
  padding: 9px 15px; border-radius: 10px; font-size: .9rem; font-weight: 500;
  color: var(--nv-purple);
}
.nv-nav a:hover, .nv-nav a.active { background: var(--nv-bg); color: var(--nv-magenta); }
.nv-nav .cta { background: var(--nv-purple); color: #fff !important; padding: 11px 22px; margin-left: 8px; border-radius: 12px; font-weight: 600; }
.nv-nav .cta:hover { background: var(--nv-magenta); }

.nv-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nv-burger span { width: 24px; height: 2px; background: var(--nv-purple); border-radius: 2px; transition: .3s; }
.nv-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nv-burger.open span:nth-child(2) { opacity: 0; }
.nv-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nv-mobile {
  display: none; position: fixed; top: 78px; left: 0; right: 0; background: #fff;
  padding: 16px 5% 24px; z-index: 999; box-shadow: 0 12px 32px rgba(53,31,89,.12);
  border-bottom: 1px solid rgba(53,31,89,.07);
}
.nv-mobile.open { display: block; }
.nv-mobile a { display: block; padding: 13px 16px; border-radius: 10px; font-weight: 500; color: var(--nv-purple); }
.nv-mobile a:hover { background: var(--nv-bg); color: var(--nv-magenta); }
.nv-mobile .cta { background: var(--nv-purple); color: #fff; text-align: center; margin-top: 8px; font-weight: 600; }

/* ============================================================
   HERO (home)
   ============================================================ */
.nv-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 90px; position: relative; overflow: hidden; background: #fff;
}
.nv-hero-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.nv-hero-blob.b1 { width: 620px; height: 620px; top: -220px; right: -180px; background: radial-gradient(circle, rgba(231,13,136,.10), transparent 68%); }
.nv-hero-blob.b2 { width: 520px; height: 520px; bottom: -200px; left: -160px; background: radial-gradient(circle, rgba(53,31,89,.09), transparent 68%); }
.nv-hero-wave { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: 58%; opacity: .06; pointer-events: none; }

.nv-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; }
.nv-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(53,31,89,.06);
  border: 1px solid rgba(53,31,89,.12); border-radius: 50px; padding: 7px 18px;
  font-size: .8rem; font-weight: 600; color: var(--nv-purple); margin-bottom: 26px;
}
.nv-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--nv-magenta); animation: nvPulse 2s infinite; }
@keyframes nvPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.5} }
.nv-h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); font-weight: 700; line-height: 1.15; margin-bottom: 22px; }
.nv-hero p { font-size: 1.1rem; color: var(--nv-muted); max-width: 540px; line-height: 1.8; margin-bottom: 38px; }
.nv-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual: three floating cards */
.nv-hero-visual { position: relative; min-height: 480px; }
.nv-hcard {
  position: absolute; background: #fff; border-radius: 20px; padding: 22px;
  box-shadow: 0 20px 60px rgba(53,31,89,.14); border: 1px solid rgba(53,31,89,.06);
  animation: nvFloat 5s ease-in-out infinite;
}
.nv-hcard.c1 { top: 0; left: 8%; width: 300px; animation-delay: 0s; }
.nv-hcard.c2 { top: 190px; right: 0; width: 250px; animation-delay: 1.2s; }
.nv-hcard.c3 { bottom: 0; left: 0; width: 230px; animation-delay: .6s; }
@keyframes nvFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.nv-hcard-title { font-size: .78rem; font-weight: 600; color: var(--nv-purple); margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.nv-hcard-title em { font-style: normal; font-size: .68rem; color: #22c55e; font-weight: 600; }
.nv-bar { height: 8px; border-radius: 50px; background: var(--nv-grad); margin-bottom: 9px; animation: nvGrow 2.4s ease-in-out infinite alternate; transform-origin: left; }
@keyframes nvGrow { from{opacity:.45;transform:scaleX(.85)} to{opacity:1;transform:scaleX(1)} }
.nv-stat { font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.nv-stat-label { font-size: .72rem; color: var(--nv-muted); }
.nv-dots { display: flex; gap: 8px; margin-top: 12px; }
.nv-dots span { width: 26px; height: 26px; border-radius: 50%; }

/* ============================================================
   CLIENT LOGO STRIP (marquee)
   ============================================================ */
.nv-clients { padding: 48px 0; border-top: 1px solid rgba(53,31,89,.06); border-bottom: 1px solid rgba(53,31,89,.06); background: #fff; overflow: hidden; }
.nv-clients-label { text-align: center; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--nv-muted); font-weight: 600; margin-bottom: 28px; }
.nv-marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.nv-marquee-track { display: flex; gap: 72px; align-items: center; animation: nvMarquee 34s linear infinite; padding-right: 72px; flex-shrink: 0; }
.nv-marquee:hover .nv-marquee-track { animation-play-state: paused; }
@keyframes nvMarquee { from{transform:translateX(0)} to{transform:translateX(-100%)} }
.nv-marquee-track img { height: 44px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .55; transition: .3s; }
.nv-marquee-track img:hover { filter: none; opacity: 1; }

/* ============================================================
   SERVICE CARDS (3 core) + 6 marketing
   ============================================================ */
.nv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.nv-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.nv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.nv-card {
  background: #fff; border-radius: 22px; padding: 34px 30px;
  border: 1px solid rgba(53,31,89,.07); transition: all .35s ease; position: relative; overflow: hidden;
}
.nv-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--nv-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.nv-card:hover { transform: translateY(-8px); box-shadow: var(--nv-shadow-lg); border-color: rgba(53,31,89,.14); }
.nv-card:hover::after { transform: scaleX(1); }
.nv-card-icon { width: 72px; height: 72px; margin-bottom: 20px; border-radius: 18px; background: var(--nv-bg); display:flex; align-items:center; justify-content:center; overflow: hidden; }
.nv-card-icon img { width: 56px; height: 56px; object-fit: contain; }
.nv-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.nv-card p { font-size: .92rem; color: var(--nv-muted); margin: 0; line-height: 1.75; }
.nv-card .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: .85rem; font-weight: 600; color: var(--nv-magenta); }
.nv-card .link:hover { gap: 10px; }
.nv-card.featured { background: var(--nv-purple); color: #fff; border: none; }
.nv-card.featured h3 { color: #fff; }
.nv-card.featured p { color: rgba(255,255,255,.75); }
.nv-card.featured .nv-card-icon { background: rgba(255,255,255,.12); }

/* ============================================================
   WHY NOVOO (split)
   ============================================================ */
.nv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.nv-split p { color: var(--nv-muted); line-height: 1.85; }
.nv-checklist { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; }
.nv-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; font-weight: 500; color: var(--nv-text); }
.nv-checklist .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--nv-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0; margin-top: 2px; }

.nv-why-visual { position: relative; }
.nv-why-visual .main {
  background: var(--nv-grad); border-radius: 28px; padding: 44px; color: #fff;
  box-shadow: 0 30px 80px rgba(53,31,89,.3);
}
.nv-why-visual .main h3 { color:#fff; font-size: 1.6rem; margin-bottom: 8px; }
.nv-why-visual .main p { color: rgba(255,255,255,.8); margin: 0; }
.nv-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.nv-why-stats div { background: rgba(255,255,255,.12); border-radius: 16px; padding: 18px; }
.nv-why-stats strong { display:block; font-size: 1.8rem; font-weight: 700; line-height:1; margin-bottom: 4px; }
.nv-why-stats span { font-size: .75rem; opacity: .8; }
.nv-why-visual .circle { position: absolute; border-radius: 50%; z-index: -1; }
.nv-why-visual .circle.o { width: 160px; height: 160px; background: var(--nv-orange); top: -40px; right: -40px; opacity: .9; }
.nv-why-visual .circle.p { width: 110px; height: 110px; background: var(--nv-pink); bottom: -30px; left: -30px; opacity: .9; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nv-testi { background: #fff; border-radius: 24px; padding: 40px; border: 1px solid rgba(53,31,89,.07); position: relative; transition: .3s; }
.nv-testi:hover { box-shadow: var(--nv-shadow-lg); transform: translateY(-5px); }
.nv-testi .quote { position: absolute; top: 22px; right: 30px; font-size: 5rem; line-height: 1; font-weight: 700; color: rgba(53,31,89,.06); font-family: Georgia, serif !important; }
.nv-testi p { font-size: 1rem; color: var(--nv-text); line-height: 1.85; margin: 0 0 24px; font-style: italic; }
.nv-testi-author { display: flex; align-items: center; gap: 14px; }
.nv-testi-avatar { width: 48px; height: 48px; border-radius: 12px; background: var(--nv-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight: 700; font-size: 1rem; }
.nv-testi-author strong { display:block; font-size: .95rem; color: var(--nv-purple); }
.nv-testi-author span { font-size: .8rem; color: var(--nv-muted); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.nv-post { background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid rgba(53,31,89,.07); transition: .35s; display:flex; flex-direction:column; }
.nv-post:hover { transform: translateY(-8px); box-shadow: var(--nv-shadow-lg); }
.nv-post-thumb { height: 200px; background: var(--nv-grad); position: relative; overflow: hidden; }
.nv-post-thumb img { width:100%; height:100%; object-fit: cover; }
.nv-post-thumb .num { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size: 4rem; font-weight: 700; color: rgba(255,255,255,.18); }
.nv-post-body { padding: 26px; flex: 1; display:flex; flex-direction:column; }
.nv-post-meta { font-size: .75rem; color: var(--nv-muted); margin-bottom: 10px; display:flex; gap: 10px; }
.nv-post-meta span::before { content:'•'; margin-right: 8px; }
.nv-post-meta span:first-child::before { content:none; }
.nv-post h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
.nv-post h3 a:hover { color: var(--nv-magenta); }
.nv-post p { font-size: .88rem; color: var(--nv-muted); margin: 0 0 18px; flex:1; }
.nv-post .link { font-size: .85rem; font-weight: 600; color: var(--nv-magenta); display:inline-flex; gap: 6px; align-items:center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.nv-cta {
  background: linear-gradient(135deg, var(--nv-purple) 0%, var(--nv-purple-2) 55%, #2d1547 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.nv-cta .c1, .nv-cta .c2 { position:absolute; border-radius:50%; pointer-events:none; }
.nv-cta .c1 { width: 460px; height: 460px; top: -140px; right: -140px; background: radial-gradient(circle, rgba(231,13,136,.22), transparent 70%); }
.nv-cta .c2 { width: 400px; height: 400px; bottom: -120px; left: -120px; background: radial-gradient(circle, rgba(244,155,49,.16), transparent 70%); }
.nv-cta h2 { color:#fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; position: relative; }
.nv-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 36px; position: relative; }
.nv-cta-btns { display:flex; gap: 14px; justify-content:center; flex-wrap: wrap; position: relative; }

/* Half-circle brand motif (from company profile) */
.nv-halfcircles { position: relative; overflow: hidden; }
.nv-halfcircles::before, .nv-halfcircles::after, .nv-halfcircles .hc {
  content:''; position:absolute; bottom:-90px; width:180px; height:180px; border-radius:50%; opacity: .85; pointer-events:none;
}
.nv-halfcircles::before { left: 4%; background: var(--nv-magenta); }
.nv-halfcircles .hc { left: 22%; background: var(--nv-pink); }
.nv-halfcircles::after { right: 4%; background: var(--nv-orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.nv-footer { background: #0f0a1a; padding: 72px 0 32px; color: rgba(255,255,255,.55); }
.nv-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 52px; }
.nv-footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.nv-footer p { font-size: .88rem; line-height: 1.8; margin: 16px 0 0; max-width: 280px; }
.nv-footer h4 { color: rgba(255,255,255,.9); font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.nv-footer ul { display:flex; flex-direction:column; gap: 10px; }
.nv-footer ul a { font-size: .88rem; color: rgba(255,255,255,.55); }
.nv-footer ul a:hover { color: var(--nv-magenta); }
.nv-footer-contact li { display:flex; gap: 10px; align-items:flex-start; font-size: .88rem; }
.nv-footer-contact svg { width: 16px; height: 16px; flex-shrink:0; margin-top: 4px; stroke: var(--nv-magenta); fill: none; stroke-width: 2; }
.nv-social { display:flex; gap: 10px; margin-top: 20px; }
.nv-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center; }
.nv-social a:hover { background: var(--nv-magenta); transform: translateY(-2px); }
.nv-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.8); }
.nv-wa-btn { display:inline-flex; align-items:center; gap: 8px; background: #25d366; color:#fff; padding: 11px 20px; border-radius: 12px; font-size: .88rem; font-weight: 600; margin-top: 18px; }
.nv-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); color:#fff; }
.nv-wa-btn svg { width: 18px; height: 18px; fill: #fff; }
.nv-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.3); }
.nv-footer-bottom a { color: rgba(255,255,255,.4); }
.nv-footer-bottom a:hover { color: var(--nv-magenta); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.nv-page-hero {
  padding: 160px 0 80px; background: var(--nv-gray); position: relative; overflow: hidden;
}
.nv-page-hero::before { content:''; position:absolute; width: 500px; height:500px; border-radius:50%; top:-220px; right:-160px; background: radial-gradient(circle, rgba(231,13,136,.1), transparent 68%); }
.nv-page-hero .nv-h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.nv-page-hero p { font-size: 1.1rem; color: var(--nv-muted); max-width: 640px; line-height: 1.8; margin: 0; }
.nv-crumb { font-size: .8rem; color: var(--nv-muted); margin-bottom: 20px; display:flex; gap: 8px; }
.nv-crumb a:hover { color: var(--nv-magenta); }

/* ============================================================
   ABOUT — mission/vision, team, partners, certifications
   ============================================================ */
.nv-mv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.nv-mv-card { border-radius: 24px; padding: 40px; position: relative; overflow: hidden; }
.nv-mv-card.mission { background: var(--nv-purple); color:#fff; }
.nv-mv-card.vision { background: var(--nv-bg); }
.nv-mv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.nv-mv-card.mission h3 { color:#fff; }
.nv-mv-card p { margin:0; line-height: 1.85; }
.nv-mv-card.mission p { color: rgba(255,255,255,.8); }
.nv-mv-card.vision p { color: var(--nv-muted); }
.nv-mv-card .deco { position:absolute; width: 200px; height:200px; border-radius:50%; right:-70px; bottom:-90px; opacity:.25; }
.mission .deco { background: var(--nv-magenta); }
.vision .deco { background: var(--nv-orange); }

.nv-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.nv-member { text-align: center; }
.nv-member-photo { width: 100%; aspect-ratio: 1; border-radius: 28px; overflow: hidden; margin-bottom: 18px; position: relative; transition: .35s; }
.nv-member-photo img { width:100%; height:100%; object-fit: cover; transition: .5s; }
.nv-member:hover .nv-member-photo { transform: translateY(-6px); box-shadow: var(--nv-shadow-lg); }
.nv-member:hover .nv-member-photo img { transform: scale(1.04); }
.nv-member h3 { font-size: 1.1rem; margin-bottom: 4px; }
.nv-member .role { font-size: .82rem; color: var(--nv-magenta); font-weight: 600; margin-bottom: 12px; display:block; }
.nv-member p { font-size: .86rem; color: var(--nv-muted); line-height: 1.7; margin:0; text-align:left; }
.nv-member.partner .nv-member-photo { background: var(--nv-bg); display:flex; align-items:center; justify-content:center; }
.nv-member.partner .initials { font-size: 3rem; font-weight: 700; color: var(--nv-purple); }
.nv-member .tagpill { display:inline-block; font-size:.7rem; background: rgba(53,31,89,.07); color: var(--nv-purple); padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; font-weight: 600; letter-spacing:.5px; text-transform: uppercase; }

.nv-certs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: center; }
.nv-cert { background: #fff; border-radius: 18px; padding: 24px; border: 1px solid rgba(53,31,89,.07); display:flex; align-items:center; justify-content:center; height: 130px; transition:.3s; }
.nv-cert:hover { box-shadow: var(--nv-shadow); transform: translateY(-4px); }
.nv-cert img { max-height: 80px; max-width: 100%; object-fit: contain; }

/* ============================================================
   SERVICES PAGE — detailed rows
   ============================================================ */
.nv-service-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 30px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(53,31,89,.08); }
.nv-service-row:last-child { border-bottom: none; }
.nv-service-row .ico { width: 90px; height: 90px; border-radius: 22px; background: var(--nv-bg); display:flex; align-items:center; justify-content:center; }
.nv-service-row .ico img { width: 66px; height: 66px; object-fit: contain; }
.nv-service-row h3 { font-size: 1.3rem; margin-bottom: 6px; }
.nv-service-row p { margin:0; color: var(--nv-muted); font-size: .95rem; max-width: 640px; }
.nv-service-row .nv-btn { padding: 12px 22px; font-size: .85rem; }

/* ============================================================
   FILMING PAGE
   ============================================================ */
.nv-film-hero { background: #0f0a1a; color:#fff; padding: 170px 0 100px; position:relative; overflow:hidden; }
.nv-film-hero .nv-h1, .nv-film-hero h2 { color:#fff; }
.nv-film-hero p { color: rgba(255,255,255,.7); }
.nv-film-hero .glow { position:absolute; width:700px; height:700px; border-radius:50%; background: radial-gradient(circle, rgba(231,13,136,.25), transparent 65%); top:-300px; right:-200px; }
.nv-film-hero .glow2 { position:absolute; width:500px; height:500px; border-radius:50%; background: radial-gradient(circle, rgba(244,155,49,.18), transparent 65%); bottom:-250px; left:-150px; }
.nv-film-types { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.nv-film-type { background: #fff; border-radius: 22px; padding: 34px; border:1px solid rgba(53,31,89,.07); transition:.3s; }
.nv-film-type:hover { transform: translateY(-6px); box-shadow: var(--nv-shadow-lg); }
.nv-film-type .emoji { font-size: 2.4rem; margin-bottom: 14px; }
.nv-film-type h3 { font-size: 1.15rem; }
.nv-film-type p { color: var(--nv-muted); font-size: .9rem; margin:0; }
.nv-process { display:grid; grid-template-columns: repeat(5,1fr); gap: 16px; position:relative; }
.nv-process::before { content:''; position:absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--nv-purple), var(--nv-magenta), var(--nv-pink), var(--nv-orange)); }
.nv-step { text-align:center; position:relative; }
.nv-step .n { width: 68px; height: 68px; border-radius: 50%; background:#fff; border: 3px solid var(--nv-purple); display:flex; align-items:center; justify-content:center; margin: 0 auto 16px; font-weight: 700; font-size: 1.2rem; color: var(--nv-purple); box-shadow: 0 8px 24px rgba(53,31,89,.12); }
.nv-step:nth-child(2) .n { border-color: var(--nv-magenta); color: var(--nv-magenta); }
.nv-step:nth-child(3) .n { border-color: var(--nv-pink); color: var(--nv-pink); }
.nv-step:nth-child(4) .n { border-color: var(--nv-orange); color: var(--nv-orange); }
.nv-step:nth-child(5) .n { border-color: var(--nv-purple); color: var(--nv-purple); }
.nv-step h4 { font-size: .95rem; margin-bottom: 4px; }
.nv-step p { font-size: .8rem; color: var(--nv-muted); margin:0; }
.nv-equip { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.nv-equip li { background:#fff; border-radius: 16px; padding: 18px 20px; border:1px solid rgba(53,31,89,.07); display:flex; gap: 12px; align-items:center; font-weight: 500; font-size:.92rem; }
.nv-equip li span { width: 36px; height: 36px; border-radius: 10px; background: var(--nv-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.nv-cs-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.nv-cs-card { border-radius: 26px; overflow:hidden; background:#fff; border:1px solid rgba(53,31,89,.07); transition:.35s; }
.nv-cs-card:hover { transform: translateY(-8px); box-shadow: var(--nv-shadow-lg); }
.nv-cs-card .cover { height: 300px; display:flex; align-items:center; justify-content:center; padding: 40px; }
.nv-cs-card .cover img { max-height: 100%; max-width: 70%; object-fit: contain; }
.nv-cs-card .body { padding: 28px 30px 32px; }
.nv-cs-card .tags { display:flex; gap: 8px; flex-wrap:wrap; margin-bottom: 12px; }
.nv-cs-card .tags span { font-size:.7rem; font-weight:600; padding: 4px 11px; border-radius: 50px; background: rgba(53,31,89,.07); color: var(--nv-purple); text-transform: uppercase; letter-spacing:.4px; }
.nv-cs-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.nv-cs-card p { color: var(--nv-muted); font-size:.92rem; margin:0 0 18px; }

/* Single case study */
.nv-cs-hero { padding: 160px 0 0; }
.nv-cs-hero-inner { border-radius: 32px; padding: 80px 60px; display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.nv-cs-hero-inner .nv-h1 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 14px; }
.nv-cs-meta { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.nv-cs-meta div { border-top: 2px solid rgba(53,31,89,.1); padding-top: 14px; }
.nv-cs-meta strong { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:1px; color: var(--nv-muted); margin-bottom: 6px; }
.nv-cs-meta span { font-size: .92rem; font-weight: 500; color: var(--nv-purple); }
.nv-cs-block { padding: 80px 0; }
.nv-cs-block.gray { background: var(--nv-gray); }
.nv-cs-text { max-width: 760px; }
.nv-cs-text h2 { font-size: 1.9rem; }
.nv-cs-text p { color: var(--nv-muted); font-size: 1.02rem; line-height: 1.85; }
.nv-cs-gallery { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 40px; }
.nv-cs-gallery figure { margin:0; border-radius: 22px; overflow:hidden; background: #fff; border:1px solid rgba(53,31,89,.07); }
.nv-cs-gallery figure.wide { grid-column: 1 / -1; }
.nv-cs-gallery img { width:100%; height:100%; object-fit: cover; }
.nv-cs-gallery figcaption { padding: 14px 20px; font-size:.8rem; color: var(--nv-muted); border-top:1px solid rgba(53,31,89,.06); }
.nv-cs-letters { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.nv-cs-letters div { background:#fff; border-radius: 20px; padding: 28px 22px; text-align:center; border:1px solid rgba(53,31,89,.07); }
.nv-cs-letters .ltr { font-size: 3rem; font-weight: 700; line-height:1; margin-bottom: 8px; }
.nv-cs-letters strong { display:block; font-size:.95rem; color: var(--nv-purple); margin-bottom:4px; }
.nv-cs-letters span { font-size:.8rem; color: var(--nv-muted); }
.nv-swatches { display:grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-top: 30px; }
.nv-swatch { border-radius: 18px; overflow:hidden; border:1px solid rgba(53,31,89,.08); background:#fff; }
.nv-swatch .color { height: 110px; }
.nv-swatch .info { padding: 12px 14px; }
.nv-swatch strong { display:block; font-size:.82rem; color: var(--nv-purple); }
.nv-swatch span { font-size:.72rem; color: var(--nv-muted); }
.nv-cs-credit { display:flex; align-items:center; gap: 16px; background:#fff; border-radius: 20px; padding: 22px 26px; border:1px solid rgba(53,31,89,.08); margin-top: 40px; max-width: 560px; }
.nv-cs-credit .av { width: 52px; height: 52px; border-radius: 14px; background: var(--nv-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0; }
.nv-cs-credit strong { display:block; font-size:.95rem; color: var(--nv-purple); }
.nv-cs-credit span { font-size:.82rem; color: var(--nv-muted); }
.nv-cs-nav { display:flex; justify-content:space-between; gap: 20px; padding: 40px 0; border-top:1px solid rgba(53,31,89,.08); }
.nv-cs-nav a { font-weight:600; color: var(--nv-purple); }
.nv-cs-nav a:hover { color: var(--nv-magenta); }

/* ============================================================
   CONTACT
   ============================================================ */
.nv-contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:start; }
.nv-contact-card { background:#fff; border-radius: 22px; padding: 30px; border:1px solid rgba(53,31,89,.07); display:flex; gap: 18px; align-items:flex-start; transition:.3s; margin-bottom: 18px; }
.nv-contact-card:hover { box-shadow: var(--nv-shadow); transform: translateY(-3px); }
.nv-contact-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--nv-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size: 1.3rem; }
.nv-contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.nv-contact-card p, .nv-contact-card a { font-size: .92rem; color: var(--nv-muted); margin: 0; }
.nv-contact-card a:hover { color: var(--nv-magenta); }
.nv-contact-big { background: var(--nv-grad); border-radius: 28px; padding: 50px; color:#fff; box-shadow: 0 30px 80px rgba(53,31,89,.3); }
.nv-contact-big h2 { color:#fff; font-size: 1.9rem; }
.nv-contact-big p { color: rgba(255,255,255,.8); }
.nv-contact-big .nv-btn { margin-top: 12px; margin-right: 10px; }
.nv-contact-big .nv-btn-wa { background: #25d366; color: #fff; }
.nv-contact-big .nv-btn-wa:hover { background:#1ebe5d; color:#fff; transform: translateY(-2px); }
.nv-contact-big .nv-btn-mail { background: #fff; color: var(--nv-purple); }
.nv-contact-big .nv-btn-mail:hover { background: var(--nv-bg); transform: translateY(-2px); }
.nv-map { border-radius: 22px; overflow:hidden; height: 320px; border:1px solid rgba(53,31,89,.07); margin-top: 30px; }
.nv-map iframe { width:100%; height:100%; border:0; }

/* ============================================================
   BLOG — archive + single
   ============================================================ */
.nv-blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.nv-single { padding: 150px 0 80px; }
.nv-single-head { max-width: 800px; margin: 0 auto 44px; text-align:center; }
.nv-single-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-bottom: 18px; }
.nv-single-thumb { max-width: 1000px; margin: 0 auto 50px; border-radius: 28px; overflow:hidden; height: 440px; background: var(--nv-grad); }
.nv-single-thumb img { width:100%; height:100%; object-fit: cover; }
.nv-content { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; color: #2d2d3a; }
.nv-content h2 { font-size: 1.7rem; margin: 2em 0 .6em; }
.nv-content h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; }
.nv-content p { margin: 0 0 1.4em; }
.nv-content ul, .nv-content ol { padding-left: 1.4em; margin: 0 0 1.4em; list-style: disc; }
.nv-content ol { list-style: decimal; }
.nv-content li { margin-bottom: .5em; }
.nv-content a { color: var(--nv-magenta); text-decoration: underline; }
.nv-content blockquote { border-left: 4px solid var(--nv-magenta); padding: 10px 24px; margin: 1.6em 0; background: var(--nv-gray); border-radius: 0 16px 16px 0; font-style: italic; }
.nv-content strong { color: var(--nv-purple); }
.nv-author-box { max-width: 760px; margin: 60px auto 0; background: var(--nv-gray); border-radius: 22px; padding: 30px; display:flex; gap: 20px; align-items:center; }
.nv-author-box .av { width: 64px; height: 64px; border-radius: 16px; background: var(--nv-grad); flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:1.2rem; }
.nv-author-box strong { display:block; color: var(--nv-purple); margin-bottom: 4px; }
.nv-author-box p { margin:0; font-size:.9rem; color: var(--nv-muted); }
.nv-pagination { display:flex; justify-content:center; gap: 8px; margin-top: 50px; }
.nv-pagination a, .nv-pagination span { padding: 10px 16px; border-radius: 10px; font-weight:600; font-size:.9rem; color: var(--nv-purple); background:#fff; border:1px solid rgba(53,31,89,.1); }
.nv-pagination .current { background: var(--nv-purple); color:#fff; }
.nv-pagination a:hover { background: var(--nv-bg); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.nv-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.nv-reveal.in { opacity: 1; transform: translateY(0); }
.nv-reveal.d1 { transition-delay: .08s; } .nv-reveal.d2 { transition-delay: .16s; }
.nv-reveal.d3 { transition-delay: .24s; } .nv-reveal.d4 { transition-delay: .32s; }
.nv-reveal.d5 { transition-delay: .40s; } .nv-reveal.d6 { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nv-team, .nv-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nv-certs { grid-template-columns: repeat(3, 1fr); }
  .nv-footer-grid { grid-template-columns: 1fr 1fr; }
  .nv-process { grid-template-columns: repeat(3,1fr); gap: 30px; }
  .nv-process::before { display:none; }
}
@media (max-width: 900px) {
  .nv-nav { display:none; } .nv-burger { display:flex; }
  .nv-hero-grid, .nv-split, .nv-mv, .nv-contact-grid, .nv-cs-hero-inner, .nv-cs-grid, .nv-grid-2 { grid-template-columns: 1fr; }
  .nv-hero-visual { display:none; }
  .nv-grid-3, .nv-blog-grid, .nv-film-types, .nv-equip { grid-template-columns: repeat(2,1fr); }
  .nv-service-row { grid-template-columns: 70px 1fr; }
  .nv-service-row .nv-btn { grid-column: 2; justify-self: start; }
  .nv-cs-meta, .nv-cs-letters { grid-template-columns: repeat(2,1fr); }
  .nv-swatches { grid-template-columns: repeat(3,1fr); }
  .nv-cs-hero-inner { padding: 50px 30px; }
  .nv-cs-gallery { grid-template-columns: 1fr; }
  .nv-section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .nv-grid-3, .nv-grid-4, .nv-team, .nv-blog-grid, .nv-film-types, .nv-equip, .nv-certs, .nv-footer-grid, .nv-process { grid-template-columns: 1fr; }
  .nv-swatches { grid-template-columns: repeat(2,1fr); }
  .nv-hero { padding: 110px 0 60px; }
  .nv-page-hero { padding: 130px 0 60px; }
  .nv-single-thumb { height: 240px; }
}
