/* ==========================================================================
   Northvane Theme — Main Stylesheet
   Design system: dark background, gold accent, clean typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Colours */
    --bg:            #0A0A0A;
    --bg-card:       #111111;
    --bg-card-hover: #181818;
    --gold:          #C9A84C;
    --gold-light:    #E0BF72;
    --gold-dim:      rgba(201,168,76,0.15);
    --text:          #F0EDE8;
    --text-muted:    #888888;
    --text-on-gold:  #0A0A0A;
    --border:        rgba(255,255,255,0.08);
    --border-gold:   rgba(201,168,76,0.3);

    /* Typography */
    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-gap:  96px;
    --card-radius:  12px;
    --btn-radius:   6px;

    /* Transitions */
    --transition:   0.25s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--text); }
p { margin: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.nv-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.nv-section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
.nv-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.nv-h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
}

.nv-h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    margin-bottom: 10px;
}

.nv-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.nv-body-lg { font-size: 18px; line-height: 1.7; color: var(--text); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.nv-btn--primary {
    background: var(--gold);
    color: var(--text-on-gold);
    border-color: var(--gold);
}
.nv-btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--text-on-gold);
    box-shadow: 0 0 24px rgba(201,168,76,0.35);
}

.nv-btn--secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--border-gold);
}
.nv-btn--secondary:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold-light);
}

.nv-btn--sm { padding: 10px 20px; font-size: 13px; }

/* --------------------------------------------------------------------------
   6. HEADER & NAV
   -------------------------------------------------------------------------- */

/* Push all page content below the fixed header */
body { padding-top: 72px; }
/* But hero and page-hero have their own top padding, so remove the dupe */
.nv-hero       { padding-top: 100px; margin-top: -72px; }
.nv-page-hero  { padding-top: 140px; margin-top: -72px; }

.nv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.nv-header.scrolled { background: rgba(10,10,10,0.97); }

.nv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nv-logo {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
}
.nv-logo span { color: var(--gold); }
.nv-logo:hover { color: var(--text); }

/* Logo wordmark — SVG icon + text */
.nv-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.nv-logo__img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
}
.nv-logo__text {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
    line-height: 1;
}
.nv-logo__accent { color: var(--gold); }
.nv-logo:hover .nv-logo__text { color: var(--text); }

/* Custom logo image sizing (when set via WP Customizer) */
.nv-logo .custom-logo-link { display: flex; align-items: center; }
.nv-logo img.custom-logo,
.nv-logo .custom-logo-link img { height: 40px; width: auto; display: block; }

.nv-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nv-nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    position: relative;
    transition: color var(--transition);
}
.nv-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nv-nav__link:hover, .nv-nav__link.current-menu-item { color: var(--text); }
.nv-nav__link:hover::after, .nv-nav__link.current-menu-item::after { width: 100%; }

.nv-nav__cta { margin-left: 16px; }

/* Hamburger */
.nv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nv-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}
.nv-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nv-hamburger.open span:nth-child(2) { opacity: 0; }
.nv-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nv-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
}
.nv-mobile-menu.open { display: flex; }
.nv-mobile-menu__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.nv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.nv-hero__smoke {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.nv-hero__inner { position: relative; max-width: 780px; }

.nv-hero__title {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    margin: 8px 0 20px;
}

.nv-hero__sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

.nv-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.nv-hero__scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.nv-hero__scroll-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.nv-hero__trusted {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.nv-hero__trusted-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* PAGE HERO (interior pages) */
.nv-page-hero {
    padding-top: 140px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   8. BENTO MOSAIC
   -------------------------------------------------------------------------- */
.nv-bento { padding: 40px 24px; }
.nv-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.nv-bento__tile--placeholder {
    height: 120px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.nv-bento__tile--placeholder:nth-child(1) { grid-column: span 2; height: 180px; }
.nv-bento__tile--placeholder:nth-child(4) { grid-column: span 2; height: 100px; }

/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */
.nv-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.nv-section-header--center { justify-content: center; text-align: center; margin-bottom: 48px; }

/* --------------------------------------------------------------------------
   10. CARDS (base)
   -------------------------------------------------------------------------- */
.nv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 28px;
    transition: border-color var(--transition), background var(--transition);
}
.nv-card:hover { border-color: var(--border-gold); background: var(--bg-card-hover); }

/* --------------------------------------------------------------------------
   11. SERVICES GRID
   -------------------------------------------------------------------------- */
.nv-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Equal 3-column variant (home page) */
.nv-services__grid--equal {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ── Service Pillar Card ── */
.nv-service-pillar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.nv-service-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.nv-service-pillar:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}
.nv-service-pillar:hover::before { opacity: 1; }

.nv-service-pillar__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.nv-service-pillar__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.nv-service-pillar__title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}
.nv-service-pillar__body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}
.nv-service-pillar__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.nv-service-pillar__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}
.nv-service-pillar__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.7;
}
.nv-service-pillar:hover .nv-service-pillar__list li { color: var(--text); }
.nv-service-pillar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
    transition: gap var(--transition), color var(--transition);
    margin-top: auto;
}
.nv-service-pillar__cta:hover { color: var(--gold-light); gap: 12px; }

/* Legacy card styles (services page detail cards) */
.nv-service-card__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.nv-service-card__title { margin-bottom: 12px; }
.nv-service-card__body { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.nv-service-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nv-service-card__link::after { content: '→'; }
.nv-service-card__link:hover { color: var(--gold-light); }

.nv-sub-grid { display: grid; gap: 8px; }
.nv-sub-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Service detail cards (services page) */
.nv-service-detail-card {
    display: flex;
    flex-direction: column;
}
.nv-service-detail-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 10px;
    color: var(--gold);
    margin-bottom: 16px;
    flex-shrink: 0;
}
.nv-service-detail-card__body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}
.nv-pricing-band {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    margin-bottom: 16px;
}
.nv-pricing-band__label { font-size: 12px; color: var(--text-muted); }
.nv-pricing-band__price { font-size: 15px; font-weight: 600; color: var(--gold); }
.nv-service-section-header { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. PROCESS
   -------------------------------------------------------------------------- */
.nv-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.nv-process-card {
    position: relative;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
}
.nv-process-card__num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: 12px;
}
.nv-process-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.nv-process-card__body { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   13. STATS
   -------------------------------------------------------------------------- */
.nv-stats {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(201,168,76,0.04) 50%, var(--bg) 100%);
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.nv-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.nv-stat-item__num {
    font-family: var(--font-head);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.nv-stat-item__label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.nv-stat-item__note { font-size: 11px; color: var(--border); margin-top: 4px; }

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.nv-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nv-testimonial-card { display: flex; flex-direction: column; }
.nv-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.nv-testimonial-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.nv-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.nv-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.nv-testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--text); }
.nv-testimonial-card__role { font-size: 12px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. ABOUT SPLIT
   -------------------------------------------------------------------------- */
.nv-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.nv-about-split__image--placeholder {
    aspect-ratio: 4 / 3;
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    position: relative;
    overflow: hidden;
}
.nv-about-split__image--placeholder svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* --------------------------------------------------------------------------
   16. VALUES
   -------------------------------------------------------------------------- */
.nv-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.nv-value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 10px;
    color: var(--gold);
    margin-bottom: 16px;
}
.nv-value-card__body { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   17. TEAM
   -------------------------------------------------------------------------- */
.nv-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.nv-team-card { text-align: center; }
.nv-team-card__avatar { margin-bottom: 16px; }
.nv-team-card__avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 auto;
}
.nv-team-card__name { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.nv-team-card__role { font-size: 13px; color: var(--gold); margin-bottom: 12px; }
.nv-team-card__bio { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   18. OUR WORK PAGE
   -------------------------------------------------------------------------- */
.nv-work-filters {
    display: flex;
    gap: 8px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.nv-work-filter {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.nv-work-filter--active, .nv-work-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.nv-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nv-case-card { padding: 0; overflow: hidden; }
.nv-case-card__image--placeholder {
    height: 200px;
    background: #0f0f0f;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.nv-case-card__image--placeholder svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.nv-case-card__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    padding: 4px 12px;
    color: var(--gold);
}
.nv-case-card__body { padding: 24px; }
.nv-case-card__sector { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.nv-case-card__text { font-size: 14px; color: var(--text-muted); margin-top: 10px; margin-bottom: 20px; line-height: 1.6; }
.nv-case-card__metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.nv-case-metric__num { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--gold); }
.nv-case-metric__label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* --------------------------------------------------------------------------
   19. CONTACT PAGE
   -------------------------------------------------------------------------- */
.nv-contact-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}
.nv-contact-form {}

/* Form elements */
.nv-form-row { margin-bottom: 20px; }
.nv-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.nv-form-label span { color: var(--gold); }
.nv-form-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
.nv-form-input:focus {
    border-color: var(--border-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.nv-form-input::placeholder { color: var(--text-muted); }
.nv-form-select { cursor: pointer; }
.nv-form-textarea { resize: vertical; min-height: 120px; }
.nv-form-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Contact info */
.nv-contact-info-card {}
.nv-contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.nv-contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.nv-contact-info-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nv-contact-info-item__label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.nv-contact-info-item__value { font-size: 14px; font-weight: 500; color: var(--text); }
a.nv-contact-info-item__value:hover { color: var(--gold); }

.nv-expect-list { display: flex; flex-direction: column; gap: 10px; counter-reset: expect; }
.nv-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    counter-increment: expect;
}
.nv-expect-list li::before {
    content: counter(expect);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.nv-social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.nv-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}
.nv-social-link:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* WPForms overrides */
.wpforms-form .wpforms-field-label { color: var(--text) !important; font-family: var(--font-body) !important; font-size: 13px !important; font-weight: 600 !important; }
.wpforms-form input, .wpforms-form select, .wpforms-form textarea {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    font-family: var(--font-body) !important;
    border-radius: 6px !important;
}
.wpforms-form input:focus, .wpforms-form select:focus, .wpforms-form textarea:focus {
    border-color: var(--border-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
    outline: none !important;
}
.wpforms-submit-container .wpforms-submit {
    background: var(--gold) !important;
    color: var(--text-on-gold) !important;
    border: none !important;
    border-radius: var(--btn-radius) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 14px 28px !important;
    cursor: pointer !important;
    transition: background var(--transition) !important;
}
.wpforms-submit-container .wpforms-submit:hover { background: var(--gold-light) !important; }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.nv-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

/* 4-column grid */
.nv-footer__grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

/* Brand column */
.nv-footer__brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}
.nv-footer__brand-name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}
.nv-footer__brand-name span { color: var(--gold); }
.nv-footer__tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Social icons in footer */
.nv-social {
    display: flex;
    gap: 8px;
}
.nv-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all var(--transition);
}
.nv-social a svg { flex-shrink: 0; }
.nv-social a:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* Link columns */
.nv-footer__col-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}
.nv-footer__links { display: flex; flex-direction: column; gap: 10px; }
.nv-footer__links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.nv-footer__links a:hover { color: var(--gold); }

/* Contact column */
.nv-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.nv-footer__contact-item { font-size: 14px; color: var(--text-muted); }
.nv-footer__contact-item a { color: var(--text-muted); }
.nv-footer__contact-item a:hover { color: var(--gold); }

/* Bottom bar */
.nv-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    margin-top: 0;
}
.nv-footer__copy {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}
.nv-footer__disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    width: 100%;
    line-height: 1.6;
    text-align: left;
}
.nv-footer__disclaimer strong { color: var(--text); font-weight: 600; }

/* --------------------------------------------------------------------------
   21. CTA FINAL (gold smoke banner)
   -------------------------------------------------------------------------- */
.nv-cta-final {
    position: relative;
    padding: var(--section-gap) 0;
    overflow: hidden;
    text-align: center;
}
.nv-cta-final__smoke {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.nv-cta-final__inner { position: relative; }
.nv-cta-final__title { margin: 12px auto 16px; max-width: 640px; }
.nv-cta-final__sub { margin-bottom: 32px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   22. SKIP LINK (accessibility)
   -------------------------------------------------------------------------- */
.nv-skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    padding: 12px 16px;
    background: var(--gold);
    color: var(--text-on-gold);
    font-weight: 700;
    font-size: 14px;
    z-index: 10000;
    transition: top 0s;
}
.nv-skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nv-services__grid { grid-template-columns: repeat(2, 1fr); }
    .nv-services__grid--equal { grid-template-columns: repeat(2, 1fr); }
    .nv-process__grid { grid-template-columns: repeat(2, 1fr); }
    .nv-values__grid { grid-template-columns: repeat(2, 1fr); }
    .nv-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nv-footer__disclaimer { text-align: left; }
    .nv-contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-gap: 48px; }

    .nv-nav, .nv-nav__cta { display: none; }
    .nv-hamburger { display: flex; }

    .nv-hero__title { font-size: clamp(36px, 8vw, 56px); }
    .nv-page-hero { padding-top: 100px; padding-bottom: 40px; }

    .nv-services__grid { grid-template-columns: 1fr; }
    .nv-services__grid--equal { grid-template-columns: 1fr; }
    .nv-process__grid { grid-template-columns: 1fr; }
    .nv-about-split { grid-template-columns: 1fr; gap: 40px; }
    .nv-testimonials__grid { grid-template-columns: 1fr; }
    .nv-work__grid { grid-template-columns: 1fr; }
    .nv-team__grid { grid-template-columns: 1fr; }
    .nv-values__grid { grid-template-columns: 1fr; }
    .nv-stats__grid { grid-template-columns: 1fr; gap: 32px; }
    .nv-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .nv-footer__bottom { flex-direction: column; }
    .nv-footer__disclaimer { text-align: left; max-width: 100%; }
    .nv-bento__grid { grid-template-columns: repeat(2, 1fr); }
    .nv-section-header { flex-direction: column; }
}

@media (max-width: 480px) {
    .nv-container { padding-left: 16px; padding-right: 16px; }
    .nv-hero__ctas { flex-direction: column; }
    /* Only full-width in forms & contact split — card buttons stay auto */
    .nv-contact-form .nv-btn,
    .nv-cta-final .nv-btn { width: 100%; justify-content: center; }
    .nv-hero__ctas .nv-btn { width: auto; }
}

/* ==========================================================================
   24. FRAMER-INSPIRED HOME REDESIGN (v2)
   Classes: nv-pill-badge, nv-hero2, nv-trusted, nv-about2, nv-services2,
            nv-svc2-card, nv-process2, nv-step2, nv-stats2, nv-testi2, nv-cta2
   ========================================================================== */

/* ── Utility: display heading (larger than nv-h2) ── */
.nv-display-h2 {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 12px 0 20px;
}

/* ── Utility: large button ── */
.nv-btn--lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* ── Utility: ghost button ── */
.nv-btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.nv-btn--ghost:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ── Utility: inline arrow text link ── */
.nv-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition), color var(--transition);
    margin-top: 28px;
}
.nv-text-link:hover {
    color: var(--gold-light);
    gap: 10px;
}

/* --------------------------------------------------------------------------
   PILL BADGE (eyebrow component)
   -------------------------------------------------------------------------- */
.nv-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-gold);
    background: var(--gold-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin-bottom: 20px;
}

.nv-pill-badge--subtle {
    border-color: var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
}

.nv-pill-badge--available {
    border-color: rgba(52,199,89,0.4);
    background: rgba(52,199,89,0.08);
    color: #34C759;
}

.nv-pill-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.nv-pill-badge--available .nv-pill-badge__dot {
    animation: nv-pulse 2s ease-in-out infinite;
}
.nv-pill-badge:not(.nv-pill-badge--available):not(.nv-pill-badge--subtle) .nv-pill-badge__dot {
    animation: nv-pulse-gold 2s ease-in-out infinite;
}

@keyframes nv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}
@keyframes nv-pulse-gold {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   HERO v2 — centered editorial
   -------------------------------------------------------------------------- */
.nv-hero2 {
    position: relative;
    min-height: 100vh;
    margin-top: -72px;                      /* pull up behind fixed header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: calc(72px + 100px);        /* header height + breathing room */
    padding-bottom: 0;
    overflow: hidden;
    background: var(--bg);
}

.nv-hero2__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 15% 90%, rgba(201,168,76,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.nv-hero2__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
    width: 100%;
}

.nv-hero2__title {
    font-family: var(--font-head);
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0 0 28px;
    max-width: 16ch;
}

.nv-hero2__sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
}

.nv-hero2__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 52px;
}

.nv-hero2__scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nv-hero2__scroll-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

/* Trusted-by strip */
.nv-trusted {
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 24px 0;
    background: rgba(255,255,255,0.015);
    backdrop-filter: blur(4px);
}

.nv-trusted .nv-container {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nv-trusted__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.nv-trusted__tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nv-trusted__tags span {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.nv-trusted__sep {
    color: var(--border-gold);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   ABOUT v2 — two-column split with floating stat
   -------------------------------------------------------------------------- */
.nv-about2 {
    background: var(--bg);
}

.nv-about2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nv-about2__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nv-about2__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
}

.nv-about2__skills span {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    transition: all var(--transition);
}
.nv-about2__skills span:hover {
    border-color: var(--border-gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.nv-about2__visual {
    position: relative;
}

.nv-about2__img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.nv-about2__img-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,0.06) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    max-height: 420px;
}

.nv-about2__stat-float {
    position: absolute;
    bottom: -20px;
    left: -28px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

.nv-about2__stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.nv-about2__stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   SERVICES v2 — asymmetric grid
   -------------------------------------------------------------------------- */
.nv-services2 {
    background: var(--bg);
}

.nv-services2__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nv-services2__header-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

.nv-services2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.nv-svc2-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.nv-svc2-stack .nv-svc2-card {
    flex: 1;
}

/* Base card */
.nv-svc2-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.nv-svc2-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
    opacity: 0;
    transition: opacity var(--transition);
}
.nv-svc2-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.nv-svc2-card:hover::before { opacity: 1; }

/* Featured (tall) card — Digital Marketing */
.nv-svc2-card--featured {
    padding: 40px;
    justify-content: space-between;
}
.nv-svc2-card--featured .nv-svc2-card__title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}

.nv-svc2-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.nv-svc2-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    color: var(--gold);
    flex-shrink: 0;
}

.nv-svc2-card__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.nv-svc2-card__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

.nv-svc2-card__body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
}

.nv-svc2-card__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.nv-svc2-item {
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    white-space: nowrap;
}

.nv-svc2-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-top: auto;
    transition: gap var(--transition), color var(--transition);
}
.nv-svc2-card__link:hover {
    color: var(--gold-light);
    gap: 11px;
}

/* --------------------------------------------------------------------------
   PROCESS v2 — numbered steps (2-column image+steps)
   -------------------------------------------------------------------------- */
.nv-process2 {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nv-process2__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
}
.nv-process2__header > div:first-child {
    flex: 1 1 300px;
}
.nv-process2__header-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

.nv-process2__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.nv-step2 {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background var(--transition);
}
.nv-step2:last-child { border-right: none; }
.nv-step2:hover { background: rgba(201,168,76,0.04); }

.nv-step2__num {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    color: rgba(201,168,76,0.18);
    line-height: 1;
    letter-spacing: -0.03em;
}

.nv-step2__title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.nv-step2__body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* --------------------------------------------------------------------------
   STATS v2 — horizontal strip with dividers
   -------------------------------------------------------------------------- */
.nv-stats2 {
    padding: 56px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nv-stats2__grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.nv-stats2__item {
    flex: 1;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nv-stats2__divider {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
    height: 64px;
}

.nv-stats2__num {
    font-family: var(--font-head);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

.nv-stats2__label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS v2 — featured card + grid
   -------------------------------------------------------------------------- */
.nv-testi2 {
    background: var(--bg);
}

.nv-testi2__header {
    margin-bottom: 40px;
}

.nv-testi2__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* Side panel — 2×2 inner grid */
.nv-testi2__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Base testimonial card */
.nv-testi2-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}
.nv-testi2-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.nv-testi2-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.nv-testi2-card--featured .nv-testi2-card__avatar {
    width: 56px;
    height: 56px;
    font-size: 15px;
}

.nv-testi2-card__stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.nv-testi2-card__quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin: 0 0 24px;
    flex-grow: 1;
}

.nv-testi2-card--featured .nv-testi2-card__quote {
    font-size: 17px;
}

.nv-testi2-card__author {
    margin-top: auto;
}

.nv-testi2-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.nv-testi2-card__role {
    font-size: 12px;
    color: var(--text-muted);
}

.nv-testi2-card__rating {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   CTA v2 — "Available for new clients" footer CTA
   -------------------------------------------------------------------------- */
.nv-cta2 {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.nv-cta2__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.nv-cta2__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nv-cta2__title {
    font-family: var(--font-head);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 16px;
    max-width: 16ch;
}

.nv-cta2__sub {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 400px;
}

/* --------------------------------------------------------------------------
   MARQUEE STRIP — animated expertise ticker
   -------------------------------------------------------------------------- */
.nv-marquee-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
}
.nv-marquee-track {
    display: flex;
    white-space: nowrap;
}
.nv-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    animation: nv-marquee 35s linear infinite;
    flex-shrink: 0;
}
.nv-marquee-content span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nv-marquee-sep {
    color: var(--gold) !important;
    opacity: 0.5;
    font-size: 14px !important;
}
@keyframes nv-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
    .nv-marquee-content { animation: none; }
}

/* --------------------------------------------------------------------------
   FAQ — accordion
   -------------------------------------------------------------------------- */
.nv-faq {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.nv-faq__header {
    margin-bottom: 40px;
}
.nv-faq__list {
    max-width: 780px;
}
.nv-faq__item {
    border-bottom: 1px solid var(--border);
}
.nv-faq__item:last-child {
    border-bottom: none;
}
.nv-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    line-height: 1.3;
    transition: color var(--transition);
}
.nv-faq__q:hover { color: var(--gold); }

.nv-faq__icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}
.nv-faq__item.open .nv-faq__icon {
    transform: rotate(180deg);
    color: var(--gold);
}
.nv-faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.nv-faq__item.open .nv-faq__a {
    max-height: 400px;
}
.nv-faq__a p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}
/* --------------------------------------------------------------------------
   PROMO BANNER
   -------------------------------------------------------------------------- */
.nv-promo-banner {
    background: linear-gradient(90deg, #1c1500 0%, #2b1e00 50%, #1c1500 100%);
    border-top: 1px solid rgba(201,168,76,0.25);
    border-bottom: 2px solid var(--gold);
    padding: 11px 0;
}
.nv-promo-banner__text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-left: 12px;
}
.nv-promo-banner__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-left: 20px;
}
.nv-promo-banner__link:hover { opacity: 0.75; }
@media (max-width: 768px) {
    .nv-promo-banner .nv-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .nv-promo-banner__text { margin-left: 0; }
    .nv-promo-banner__link { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   PRICING TIERS GRID
   -------------------------------------------------------------------------- */
.nv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .nv-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOATING ACTION BUTTON
   -------------------------------------------------------------------------- */
.nv-whatsapp-fab {
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 13px 20px 13px 15px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.nv-whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
    color: #fff;
}
.nv-whatsapp-fab__icon { flex-shrink: 0; }
.nv-whatsapp-fab__label { white-space: nowrap; }
@media (max-width: 480px) {
    .nv-whatsapp-fab { padding: 14px; border-radius: 50%; }
    .nv-whatsapp-fab__label { display: none; }
}

/* --------------------------------------------------------------------------
   Testimonials — featured card stretches to match side panel height
   -------------------------------------------------------------------------- */
.nv-testi2-card--featured {
    /* align-self: stretch removed */
}

/* --------------------------------------------------------------------------
   24b. RESPONSIVE — new v2 components
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
    .nv-services2__grid { grid-template-columns: 1fr; }
    .nv-about2__grid    { grid-template-columns: 1fr; gap: 48px; }
    .nv-process2__steps { grid-template-columns: repeat(2, 1fr); }
    .nv-step2 { border-right: none; border-bottom: 1px solid var(--border); }
    .nv-step2:nth-child(odd)  { border-right: 1px solid var(--border); }
    .nv-step2:last-child      { border-bottom: none; }
    .nv-step2:nth-last-child(2) { border-bottom: none; }
    .nv-testi2__grid  { grid-template-columns: 1fr; }
    .nv-about2__stat-float { left: auto; right: 16px; }
}

@media (max-width: 768px) {
    .nv-hero2 { padding-top: 100px; min-height: auto; }
    .nv-hero2__title { font-size: clamp(42px, 10vw, 64px); }
    .nv-hero2__ctas  { flex-direction: column; align-items: center; }
    .nv-hero2__ctas .nv-btn { width: 100%; max-width: 320px; }
    .nv-display-h2   { font-size: clamp(32px, 8vw, 52px); }
    .nv-trusted .nv-container { flex-direction: column; align-items: flex-start; gap: 10px; }
    .nv-services2__header { flex-direction: column; align-items: flex-start; }
    .nv-services2__header-ctas { width: 100%; }
    .nv-process2__header { flex-direction: column; align-items: flex-start; }
    .nv-process2__steps { grid-template-columns: 1fr; }
    .nv-step2 { border-right: none; border-bottom: 1px solid var(--border); }
    .nv-step2:last-child { border-bottom: none; }
    .nv-step2:nth-last-child(2) { border-bottom: 1px solid var(--border); }
    .nv-step2:nth-child(odd) { border-right: none; }
    .nv-stats2__grid  { flex-direction: column; gap: 0; }
    .nv-stats2__item  { padding: 32px 20px; }
    .nv-stats2__divider { width: 64px; height: 1px; }
    .nv-testi2__grid  { grid-template-columns: 1fr; }
    .nv-testi2__side  { grid-template-columns: 1fr; }
    .nv-about2__st