/*
Theme Name:   NeedAWebNow
Theme URI:    https://needawebnow.com
Description:  NeedAWebNow.com — Digital Marketing Agency
Author:       NeedAWebNow
Version:      3.0.0
Text Domain:  needawebnow
*/

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --nwn-dark:       #2D2D2D;
  --nwn-dark-deep:  #1a1a1a;
  --nwn-green:      #5BBF5B;
  --nwn-green-dark: #45A045;
  --nwn-green-lite: #EAF7EA;
  --nwn-green-glow: rgba(91,191,91,.18);
  --nwn-white:      #fff;
  --nwn-gray:       #F7F8F9;
  --nwn-gray-mid:   #EFEFEF;
  --nwn-text:       #1E1E1E;
  --nwn-muted:      #6B7280;
  --nwn-border:     #E5E7EB;
  --nwn-radius:     8px;
  --nwn-radius-lg:  14px;
  --nwn-shadow:     0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
  --nwn-shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --nwn-max-w:      1180px;
  /* Typography — distinctive pairing */
  --nwn-font-head:  'DM Sans', 'Inter', 'Segoe UI', Arial, sans-serif;
  --nwn-font-body:  'DM Sans', 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--nwn-font-body);
  color: var(--nwn-text);
  background: #fff;
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--nwn-green); text-decoration: none; }
a:hover { color: var(--nwn-green-dark); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--nwn-font-head);
  color: var(--nwn-dark);
  line-height: 1.22;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -.02em;
}
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
/* 2026-07-27: padding was 24px, one size below .nwn-header-inner's 28px
   (line ~74) — a sitewide 4px mismatch that left every page's content/title
   sitting slightly left of the header logo above it. Bumped to 28px so the
   two containers share one true left/right edge on every page, not just
   the ones we happen to be touching tonight. */
.nwn-container { max-width: var(--nwn-max-w); margin: 0 auto; padding: 0 28px; }

/* ── HEADER ─────────────────────────────────────────────── */
#nwn-header {
  background: var(--nwn-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 2px 12px rgba(0,0,0,.35);
  transition: box-shadow .2s;
}
.nwn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 66px;
  max-width: var(--nwn-max-w);
  margin: 0 auto;
}
.nwn-logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.nwn-logo:hover img { opacity: .88; }
.nwn-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nwn-nav-list a {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.nwn-nav-list a:hover {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.nwn-nav-list .nwn-nav-cta {
  background: var(--nwn-green);
  color: #fff !important;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 6px;
  margin-left: 6px;
  transition: background .2s, transform .15s;
}
.nwn-nav-list .nwn-nav-cta:hover {
  background: var(--nwn-green-dark);
  transform: translateY(-1px);
}
.nwn-nav-list .nwn-cart a {
  position: relative;
  padding: 7px 10px;
  font-size: 1.1rem;
}
.nwn-cart-count {
  background: var(--nwn-green);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  border-radius: 50%;
  padding: 2px 4px;
  position: absolute;
  top: 2px;
  right: 2px;
  line-height: 1;
  min-width: 14px;
  text-align: center;
}
.nwn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nwn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: .25s;
}
.nwn-mobile-nav {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nwn-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 28px;
}
.nwn-mobile-nav.open { display: block; }
.nwn-mobile-nav a {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 500;
}
.nwn-mobile-nav a:last-child { border: none; }

/* ── BUTTONS ────────────────────────────────────────────── */
.nwn-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nwn-green);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: var(--nwn-radius);
  font-family: var(--nwn-font-head);
  font-weight: 600;
  font-size: .925rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -.01em;
}
.nwn-btn:hover {
  background: var(--nwn-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,191,91,.32);
  color: #fff !important;
}
.nwn-btn:active { transform: translateY(0); }
.nwn-btn-outline {
  background: transparent !important;
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.9) !important;
}
.nwn-btn-outline:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.6);
  color: #fff !important;
  box-shadow: none;
  transform: translateY(-1px);
}
.nwn-btn-white {
  background: #fff !important;
  color: var(--nwn-dark) !important;
  border-color: #fff;
}
.nwn-btn-white:hover {
  background: var(--nwn-dark) !important;
  color: #fff !important;
  border-color: var(--nwn-dark);
  box-shadow: none;
}
.nwn-btn-ghost {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
}
.nwn-btn-ghost:hover {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.4);
  box-shadow: none;
}
.nwn-btn-dark {
  background: var(--nwn-dark) !important;
  color: #fff !important;
  border-color: var(--nwn-dark);
}
.nwn-btn-dark:hover { background: #111 !important; }
.nwn-btn-lg  { padding: 15px 34px; font-size: 1rem; }
.nwn-btn-sm  { padding: 8px 16px; font-size: .82rem; }

/* ── HERO ───────────────────────────────────────────────── */
.nwn-hero {
  position: relative;
  background: var(--nwn-dark-deep);
  color: #fff;
  padding: 100px 24px 88px;
  text-align: center;
  overflow: hidden;
}
/* Layered gradient for depth */
.nwn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(91,191,91,.14) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(91,191,91,.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 55%, #1e2e1e 100%);
  pointer-events: none;
}
/* Subtle grid pattern overlay */
.nwn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.nwn-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.nwn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(91,191,91,.15);
  color: #7de07d;
  border: 1px solid rgba(91,191,91,.28);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 24px;
}
.nwn-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.035em;
}
.nwn-hero h1 em {
  font-style: normal;
  color: var(--nwn-green);
  position: relative;
}
.nwn-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.68);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.nwn-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.nwn-hero-proof {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.nwn-hero-proof-item {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .01em;
}
.nwn-hero-proof-item strong {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .9rem;
}
.nwn-hero-service-line {
  margin: 20px 0 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .01em;
}

/* Ambient upward-trend motif (approved 2026-07-27 — Option 2: Upward Data Nodes).
   Fixed-size corner-anchored boxes (NOT full-bleed/stretched) so the dot
   pattern keeps its proportions at every viewport width instead of
   distorting into a smeared/stretched shape on narrow mobile screens
   (2026-07-27 mobile-stretch fix). Each box has its own tight viewBox with
   default preserveAspectRatio (xMidYMid meet), so the SVG content is scaled
   uniformly, never stretched non-uniformly. Sits above the ::before/::after
   grid layers but below .nwn-hero-inner (z-index:1). Purely decorative. */
.nwn-hero-motif-tr,
.nwn-hero-motif-bl {
  position: absolute;
  width: 260px;
  height: 170px;
  pointer-events: none;
}
.nwn-hero-motif-tr { top: 18px; right: -10px; }
.nwn-hero-motif-bl { bottom: 14px; left: -10px; }
.nwn-hero-motif-tr svg,
.nwn-hero-motif-bl svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  /* Mobile: shrink the accent and drop the second (bottom-left) cluster —
     at narrow widths two corner motifs plus the added tagline line made
     the hero read as cluttered/stretched. One small, mostly-clipped corner
     accent keeps the "growth" cue without looking cheap. */
  .nwn-hero-motif-tr {
    width: 150px;
    height: 100px;
    top: 8px;
    right: -22px;
  }
  .nwn-hero-motif-bl {
    display: none;
  }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.nwn-trust-bar {
  background: #f8f9fa;
  border-top: 1px solid var(--nwn-border);
  border-bottom: 1px solid var(--nwn-border);
  padding: 20px 24px;
}
.nwn-trust-bar-inner {
  max-width: var(--nwn-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.nwn-trust-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nwn-muted);
}
.nwn-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.nwn-trust-item {
  font-size: .82rem;
  color: #2d3748;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #d1d5db;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.nwn-trust-item:hover {
  border-color: var(--nwn-green);
  background: var(--nwn-green-lite);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.nwn-section     { padding: 80px 24px; }
.nwn-section-sm  { padding: 52px 24px; }
.nwn-section-dark {
  background: var(--nwn-dark);
  position: relative;
  overflow: hidden;
}
.nwn-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(91,191,91,.1) 0%, transparent 70%);
  pointer-events: none;
}
.nwn-section-dark h2,
.nwn-section-dark h3 { color: #fff; }
.nwn-section-dark p  { color: rgba(255,255,255,.65); }
.nwn-section-gray    { background: var(--nwn-gray); }
.nwn-section-green   { background: var(--nwn-green-lite); }
.nwn-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.nwn-section-head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin-bottom: 14px;
  font-weight: 800;
}
.nwn-section-head p {
  color: var(--nwn-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.nwn-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nwn-green);
  margin-bottom: 12px;
  display: block;
}

/* ── CARDS ──────────────────────────────────────────────── */
.nwn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  max-width: var(--nwn-max-w);
  margin: 0 auto;
}
.nwn-grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.nwn-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.nwn-card {
  background: #fff;
  border-radius: var(--nwn-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--nwn-shadow);
  border: 1px solid var(--nwn-border);
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s;
}
.nwn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nwn-shadow-lg);
  border-color: rgba(91,191,91,.25);
}
.nwn-card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.nwn-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--nwn-dark);
  font-weight: 700;
}
.nwn-card p {
  color: var(--nwn-muted);
  font-size: .9rem;
  margin: 0 0 18px;
  line-height: 1.65;
}
.nwn-card-link {
  font-size: .86rem;
  font-weight: 700;
  color: var(--nwn-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.nwn-card-link:hover { color: var(--nwn-green-dark); gap: 8px; }

/* ── WOOCOMMERCE PRODUCT GRID ───────────────────────────── */
.woocommerce-page .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: var(--nwn-max-w);
  margin: 0 auto;
  padding: 44px 24px 60px;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 22px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

.woocommerce ul.products li.product {
  background: #fff !important;
  border-radius: var(--nwn-radius-lg) !important;
  padding: 0 !important;
  box-shadow: var(--nwn-shadow) !important;
  border: 1px solid var(--nwn-border) !important;
  overflow: hidden !important;
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--nwn-shadow-lg) !important;
  border-color: rgba(91,191,91,.2) !important;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 14px;
}
.woocommerce ul.products li.product a img {
  border-radius: 8px !important;
  margin-bottom: 14px !important;
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  width: 100% !important;
  transition: transform .25s !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.03) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: .9rem !important;
  font-weight: 700 !important;
  color: var(--nwn-dark) !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
  line-height: 1.38 !important;
  letter-spacing: -.01em !important;
}
.woocommerce ul.products li.product .price {
  color: var(--nwn-green) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  padding: 0 !important;
  letter-spacing: -.01em !important;
}
.woocommerce ul.products li.product .star-rating { display: none; }
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button {
  background: var(--nwn-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  padding: 13px 16px !important;
  font-weight: 700 !important;
  font-size: .84rem !important;
  text-align: center !important;
  margin: auto 0 0 !important;
  transition: background .18s !important;
  letter-spacing: .01em !important;
  text-transform: uppercase !important;
}
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product button.button:hover {
  background: var(--nwn-green-dark) !important;
}

/* Shop page header */
.woocommerce-products-header {
  padding: 44px 24px 0;
  max-width: var(--nwn-max-w);
  margin: 0 auto;
}
.woocommerce-products-header h1 {
  font-size: 1.9rem;
  color: var(--nwn-dark);
  margin-bottom: 6px;
}
.woocommerce-ordering select {
  border: 1px solid var(--nwn-border);
  border-radius: var(--nwn-radius);
  padding: 8px 14px;
  font-size: .88rem;
  background: #fff;
}
.woocommerce-result-count {
  color: var(--nwn-muted);
  font-size: .88rem;
}
/* WC pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  justify-content: center;
  margin-top: 48px;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: none;
  color: var(--nwn-dark);
  font-weight: 600;
  transition: .15s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--nwn-green-lite);
  color: var(--nwn-green);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--nwn-green);
  color: #fff;
}

/* WC Single product */
.woocommerce div.product {
  max-width: var(--nwn-max-w);
  margin: 48px auto;
  padding: 0 24px;
}
.woocommerce div.product .product_title {
  font-size: 1.9rem;
  color: var(--nwn-dark);
  margin-bottom: 12px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--nwn-green) !important;
  font-size: 1.7rem !important;
  font-weight: 800 !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--nwn-muted);
  font-size: 1.02rem;
  margin-bottom: 24px;
  line-height: 1.75;
}
.woocommerce div.product form.cart .button {
  background: var(--nwn-green) !important;
  color: #fff !important;
  border-radius: var(--nwn-radius) !important;
  padding: 14px 30px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: none !important;
  transition: background .18s, transform .12s !important;
}
.woocommerce div.product form.cart .button:hover {
  background: var(--nwn-green-dark) !important;
  transform: translateY(-1px) !important;
}
.woocommerce div.product .woocommerce-tabs .tabs li a {
  color: var(--nwn-muted);
  font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs .tabs li.active a {
  color: var(--nwn-dark);
  font-weight: 700;
}

/* WC Cart / Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--nwn-border);
  border-radius: var(--nwn-radius);
  padding: 10px 14px;
  font-size: .95rem;
  width: 100%;
  transition: border-color .15s;
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--nwn-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(91,191,91,.14);
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--nwn-green) !important;
  color: #fff !important;
  border-radius: var(--nwn-radius) !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 11px 24px !important;
  transition: background .18s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--nwn-green-dark) !important;
}

/* ── MC20 PRICING CARDS ─────────────────────────────────── */
.nwn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
  gap: 20px;
  max-width: var(--nwn-max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.nwn-pricing-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--nwn-radius-lg);
  padding: 30px 26px 28px;
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  backdrop-filter: blur(6px);
}
.nwn-pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.nwn-pricing-card.featured {
  background: rgba(91,191,91,.12);
  border-color: rgba(91,191,91,.45);
  box-shadow: 0 0 0 1px rgba(91,191,91,.2), 0 12px 36px rgba(0,0,0,.25);
}
.nwn-pricing-card.featured:hover {
  border-color: rgba(91,191,91,.7);
  box-shadow: 0 0 0 1px rgba(91,191,91,.4), 0 20px 48px rgba(0,0,0,.3);
}
.nwn-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nwn-green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(91,191,91,.4);
}
.nwn-pricing-tier {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.nwn-pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.04em;
}
.nwn-pricing-price span {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  letter-spacing: 0;
}
.nwn-pricing-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  line-height: 1.55;
  min-height: 36px;
}
.nwn-pricing-features {
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}
.nwn-pricing-features li {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nwn-pricing-features li:last-child { border: none; }
.nwn-pricing-features li::before {
  content: '✓';
  color: var(--nwn-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.nwn-pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.25) !important;
  color: #fff !important;
  font-size: .88rem;
}
.nwn-pricing-cta:hover {
  background: rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.nwn-pricing-card.featured .nwn-pricing-cta {
  background: var(--nwn-green) !important;
  border-color: var(--nwn-green) !important;
}
.nwn-pricing-card.featured .nwn-pricing-cta:hover {
  background: var(--nwn-green-dark) !important;
  border-color: var(--nwn-green-dark) !important;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.nwn-testi {
  background: #fff;
  border-radius: var(--nwn-radius-lg);
  padding: 30px 28px;
  box-shadow: var(--nwn-shadow);
  border: 1px solid var(--nwn-border);
  border-top: 3px solid var(--nwn-green);
  transition: transform .2s, box-shadow .2s;
}
.nwn-testi:hover {
  transform: translateY(-3px);
  box-shadow: var(--nwn-shadow-lg);
}
.nwn-testi blockquote {
  margin: 0 0 16px;
  font-size: .96rem;
  color: var(--nwn-text);
  font-style: italic;
  line-height: 1.75;
  position: relative;
}
.nwn-testi blockquote::before {
  content: '"';
  font-size: 3.5rem;
  color: var(--nwn-green-lite);
  line-height: 0;
  vertical-align: -1.2rem;
  margin-right: 4px;
  font-style: normal;
  font-weight: 800;
}
.nwn-testi cite {
  font-size: .82rem;
  color: var(--nwn-muted);
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nwn-testi cite::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--nwn-green);
  border-radius: 2px;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.nwn-cta-band {
  background: var(--nwn-green);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nwn-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(0,0,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.nwn-cta-band > * { position: relative; z-index: 1; }
.nwn-cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 14px;
  font-weight: 800;
}
.nwn-cta-band p {
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ─────────────────────────────────────────────── */
#nwn-footer {
  background: var(--nwn-dark-deep);
  color: rgba(255,255,255,.6);
  padding: 72px 24px 32px;
}
.nwn-footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--nwn-max-w);
  margin: 0 auto 48px;
}
.nwn-footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  opacity: .88;
  filter: brightness(1.15);
}
.nwn-footer-tagline {
  font-size: .85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.nwn-footer-contact {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  line-height: 2;
}
.nwn-footer-contact a { color: rgba(255,255,255,.38); transition: color .15s; }
.nwn-footer-contact a:hover { color: var(--nwn-green); }
.nwn-footer-col h5 {
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 800;
}
.nwn-footer-col ul li { margin-bottom: 11px; }
.nwn-footer-col ul li a {
  color: rgba(255,255,255,.52);
  font-size: .875rem;
  transition: color .15s;
}
.nwn-footer-col ul li a:hover { color: rgba(255,255,255,.88); }
.nwn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  max-width: var(--nwn-max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.nwn-footer-bottom a { color: rgba(255,255,255,.3); transition: color .15s; }
.nwn-footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* Footer newsletter signup — carried inline styles from the Shopify markup
   never got a color for the heading (inherits the global dark h1-h6 color,
   which is unreadable on this dark footer) and relied on a `.visually-hidden`
   utility class that this theme never defined, so the "Email" label rendered
   as visible clutter next to the input instead of being screen-reader-only. */
.nwn-footer-signup h2 { color: rgba(255,255,255,.92); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── PAGE TEMPLATES ─────────────────────────────────────── */
.nwn-page-hero {
  background: var(--nwn-gray);
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--nwn-border);
}
.nwn-page-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 10px;
}
.nwn-page-hero p {
  color: var(--nwn-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.nwn-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px 60px;
  line-height: 1.8;
}
.nwn-page-content h2 { font-size: 1.55rem; margin: 40px 0 14px; }
.nwn-page-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.nwn-page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 1em; }
.nwn-page-content ul li { margin-bottom: 6px; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.nwn-breadcrumb {
  padding: 10px 24px;
  background: var(--nwn-gray-mid);
  border-bottom: 1px solid var(--nwn-border);
  font-size: .8rem;
  color: var(--nwn-muted);
  max-width: 100%;
}
.nwn-breadcrumb .nwn-container { display: flex; gap: 6px; align-items: center; }
.nwn-breadcrumb a { color: var(--nwn-muted); transition: color .15s; }
.nwn-breadcrumb a:hover { color: var(--nwn-green); }
.nwn-sep { color: var(--nwn-border); }

/* ── CONTACT PAGE — compact "above the fold" layout ──────────
 * 2026-07-27: Eddy wants the contact page's key content (contact info +
 * form) fitting in one viewport, plus a Help & Support / Call Us /
 * Knowledge Base trio surfaced. Scoped to .nwn-page-hero--compact /
 * .nwn-page-content--compact / .nwn-contact-* so no other page.php
 * page (about, training, default) is affected.
 *
 * 2026-07-27 round 2 (Eddy feedback on first pass):
 * 1) compress further — cut hero/content/card padding again, and drop the
 *    breadcrumb entirely on this page (page.php skips nwn_breadcrumb() when
 *    $nwn_is_contact) since "Home / Contact Us" wasn't earning its ~24px.
 * 2) the content column read as narrower/inset than the header bar above it.
 *    Root cause: .nwn-page-content--compact had its OWN 24px horizontal
 *    padding wrapping a .nwn-container that ALSO carries horizontal padding
 *    (see line ~59) — 48px of combined inset per side vs. the header's single
 *    28px (.nwn-header-inner). Fixed two ways: (a) this block no longer adds
 *    its own horizontal padding — .nwn-container alone provides it, and
 *    (b) .nwn-container's padding was bumped from 24px->28px sitewide (see
 *    line ~59) to exactly match .nwn-header-inner, so the header logo and
 *    every page's content/title now share one true left edge everywhere,
 *    not just here. */
.nwn-page-hero--compact { padding: 14px 0 8px; }
.nwn-page-hero--compact h1 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 2px; }
.nwn-page-hero--compact p { font-size: .9rem; }

.nwn-page-content--compact { padding: 8px 0 24px; }

.nwn-contact-trio { display: flex; flex-wrap: wrap; gap: 7px; }
.nwn-contact-trio-item {
  display: inline-flex; align-items: center; gap: 8px; flex: 1 1 200px;
  background: #f8faf8; border: 1px solid #dcefdc; border-radius: 10px;
  padding: 7px 12px; text-decoration: none; color: var(--nwn-dark);
  font-size: 12.5px; transition: border-color .12s, transform .12s;
}
.nwn-contact-trio-item:hover { border-color: var(--nwn-green); transform: translateY(-1px); }
.nwn-contact-trio-item .ic { font-size: 16px; line-height: 1; }
.nwn-contact-trio-item b { display: block; color: var(--nwn-dark); }
.nwn-contact-trio-item .sub { display: block; font-size: 10.5px; font-weight: 600; color: var(--nwn-muted); margin-top: 1px; }

.nwn-contact-grid { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; }
@media (min-width: 760px) {
  .nwn-contact-grid { grid-template-columns: 1fr 1fr; }
}

.nwn-contact-info-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.nwn-contact-info-card h2 { font-size: 1.1rem; margin: 0 0 6px; }
.nwn-contact-info-card h3 { font-size: .92rem; margin: 10px 0 4px; }
.nwn-contact-info-card p { margin: 0 0 6px; font-size: .92rem; }
.nwn-contact-info-card ul { margin: 0 0 6px; padding-left: 18px; }
.nwn-contact-info-card ul li { margin-bottom: 2px; font-size: .92rem; }
.nwn-contact-info-card .nwn-btn { display: inline-block; margin-top: 0; padding: 8px 14px; font-size: .88rem; }
/* the final h3+p+a (schedule-a-call CTA) duplicates the form sitting right
   next to this card — keep the text but shrink it so it doesn't compete. */
.nwn-contact-info-card h3:last-of-type { font-size: .85rem; margin-top: 8px; color: var(--nwn-muted); }
.nwn-contact-info-card h3:last-of-type + p { font-size: .82rem; margin-bottom: 4px; }

@media (max-width: 480px) {
  .nwn-page-hero--compact { padding: 10px 0 6px; }
  .nwn-page-content--compact { padding: 6px 0 20px; }
  .nwn-contact-trio-item { flex: 1 1 100%; }
  .nwn-contact-info-card { padding: 12px 14px; }
}

/* WC wrapper */
.nwn-wc-wrap {
  max-width: var(--nwn-max-w);
  margin: 0 auto;
  padding: 20px 24px 60px;
}

/* ── WC NOTICES ─────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--nwn-radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  border-left: 4px solid var(--nwn-green);
  background: var(--nwn-green-lite);
}
.woocommerce-error { border-left-color: #e53e3e; background: #fff5f5; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes nwn-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nwn-hero-inner { animation: nwn-fade-up .55s ease both; }
.nwn-hero-eyebrow { animation: nwn-fade-up .45s .05s ease both; }
.nwn-hero h1 { animation: nwn-fade-up .5s .1s ease both; }
.nwn-hero-sub { animation: nwn-fade-up .5s .18s ease both; }
.nwn-hero-actions { animation: nwn-fade-up .5s .24s ease both; }
.nwn-hero-proof { animation: nwn-fade-up .5s .32s ease both; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nwn-footer-top { grid-template-columns: 1fr 1fr; }
  .nwn-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nwn-nav-list { display: none; }
  .nwn-hamburger { display: flex; }
  .nwn-hero { padding: 72px 24px 60px; }
  .nwn-hero-proof { gap: 20px; }
  .nwn-footer-top { grid-template-columns: 1fr; gap: 36px; }
  .nwn-footer-bottom { flex-direction: column; text-align: center; }
  .nwn-pricing-grid { grid-template-columns: 1fr 1fr; }
  .nwn-section { padding: 60px 24px; }
  .woocommerce ul.products { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important; }
}
@media (max-width: 480px) {
  .nwn-pricing-grid { grid-template-columns: 1fr; }
  .nwn-hero h1 { letter-spacing: -.025em; }
}

/* ══════════════════════════════════════════════════════
   MEGA MENU & DROPDOWNS
══════════════════════════════════════════════════════ */
.nwn-caret {
  font-size: .65rem;
  opacity: .6;
  margin-left: 2px;
  display: inline-block;
  transition: transform .2s;
}
.nwn-has-dropdown { position: relative; }
.nwn-has-dropdown:hover .nwn-caret { transform: rotate(180deg); }

/* Standard dropdown */
.nwn-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.05);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, visibility .18s, transform .18s;
  transform: translateX(-50%) translateY(6px);
  z-index: 2000;
}
.nwn-has-dropdown:hover .nwn-dropdown,
.nwn-has-dropdown:focus-within .nwn-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nwn-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: .875rem;
  color: #374151 !important;
  font-weight: 500;
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.nwn-dropdown a:hover {
  background: #F0FDF0;
  color: var(--nwn-green) !important;
}
/* Arrow pointer on dropdown */
.nwn-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}

/* Mega menu */
.nwn-mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, visibility .18s, transform .18s;
  transform: translateX(-50%) translateY(8px);
  z-index: 2000;
  min-width: 760px;
}
.nwn-has-dropdown:hover .nwn-mega-menu,
.nwn-has-dropdown:focus-within .nwn-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nwn-mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}
.nwn-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 0;
}
.nwn-mega-col {
  padding: 16px 20px;
  border-right: 1px solid #F3F4F6;
}
.nwn-mega-col:last-child { border-right: none; }
.nwn-mega-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--nwn-green);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F3F4F6;
}
.nwn-mega-col a {
  display: block;
  padding: 7px 0;
  font-size: .855rem;
  color: #374151 !important;
  font-weight: 500;
  transition: color .12s, padding-left .12s;
  border-bottom: none !important;
}
.nwn-mega-col a:hover {
  color: var(--nwn-green) !important;
  padding-left: 4px;
}

/* ══════════════════════════════════════════════════════
   MOBILE NAV ACCORDION
══════════════════════════════════════════════════════ */
.nwn-mob-section { border-bottom: 1px solid rgba(255,255,255,.07); }
.nwn-mob-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  font-family: var(--nwn-font-head);
}
.nwn-mob-toggle span {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--nwn-green);
  transition: transform .2s;
}
.nwn-mob-toggle.open span { transform: rotate(45deg); }
.nwn-mob-sub {
  display: none;
  padding-bottom: 10px;
}
.nwn-mob-sub.open { display: block; }
.nwn-mob-sub a {
  display: block;
  color: rgba(255,255,255,.62) !important;
  font-size: .9rem;
  padding: 8px 0 8px 16px;
  border: none !important;
  transition: color .15s;
}
.nwn-mob-sub a:hover { color: var(--nwn-green) !important; }
.nwn-mob-link {
  display: block;
  color: rgba(255,255,255,.82) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nwn-mob-link:hover { color: var(--nwn-green) !important; }

/* ══════════════════════════════════════════════════════
   SERVICE / PRODUCT CATEGORY PAGE
══════════════════════════════════════════════════════ */
.nwn-cat-hero {
  background: linear-gradient(135deg, var(--nwn-dark-deep) 0%, #2d2d2d 100%);
  color: #fff;
  padding: 60px 24px 52px;
  position: relative;
  overflow: hidden;
}
.nwn-cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(91,191,91,.1) 0%, transparent 65%);
  pointer-events: none;
}
.nwn-cat-hero .nwn-container { position: relative; z-index: 1; }
.nwn-cat-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nwn-cat-hero-copy { flex: 1 1 auto; min-width: 0; }
.nwn-cat-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 800;
}
.nwn-cat-hero p {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}
.nwn-cat-hero .nwn-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .nwn-cat-hero-inner { flex-direction: column; align-items: flex-start; }
  .nwn-cat-hero .nwn-cta-row { flex-direction: row; flex-wrap: wrap; align-items: center; margin-top: 24px; }
}

/* ══════════════════════════════════════════════════════
   SHOP TOOLBAR FIX (WC)
══════════════════════════════════════════════════════ */
.woocommerce-notices-wrapper { max-width: var(--nwn-max-w); margin: 0 auto; padding: 0 24px; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 24px; }

/* Page hero breadcrumb row */
.nwn-breadcrumb {
  padding: 10px 24px;
  font-size: .8rem;
  color: var(--nwn-muted);
  background: var(--nwn-gray);
  border-bottom: 1px solid var(--nwn-border);
}


/* ── Single product: two-column layout + related products ── */
.woocommerce div.product .woocommerce-product-gallery {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.woocommerce div.product .summary {
  float: left;
  width: 48%;
  clear: none;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products {
  clear: both;
  padding-top: 48px;
}
.woocommerce div.product form.cart .button {
  width: 100% !important;
  text-align: center !important;
  margin-top: 12px !important;
}
.woocommerce div.product .related.products > h2 {
  font-size: 1.5rem;
  color: var(--nwn-dark);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}

/* ══════════════════════════════════════════════════════
   PROBLEMS SECTION
══════════════════════════════════════════════════════ */
.nwn-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.nwn-problem-card {
  background: #fff;
  border-radius: var(--nwn-radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--nwn-border);
  border-left: 4px solid #e53e3e;
  box-shadow: var(--nwn-shadow);
  transition: transform .2s, box-shadow .2s;
}
.nwn-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nwn-shadow-lg);
}
.nwn-problem-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}
.nwn-problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--nwn-dark);
}
.nwn-problem-card p {
  font-size: .88rem;
  color: var(--nwn-muted);
  line-height: 1.6;
  margin: 0;
}
.nwn-problems-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════ */
.nwn-stats-bar {
  background: var(--nwn-dark);
  padding: 56px 24px;
}
.nwn-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.nwn-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nwn-stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--nwn-green);
  letter-spacing: -.03em;
  line-height: 1;
}
.nwn-stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
}
.nwn-stat-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.nwn-hiw-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.nwn-hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.nwn-hiw-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--nwn-green) 0%, rgba(91,191,91,.3) 100%);
  margin-top: 44px;
  position: relative;
}
.nwn-hiw-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(91,191,91,.5);
}
.nwn-hiw-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nwn-green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(91,191,91,.3);
}
.nwn-hiw-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.nwn-hiw-step p {
  font-size: .88rem;
  color: var(--nwn-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   GUARANTEE
══════════════════════════════════════════════════════ */
.nwn-guarantee {
  background: var(--nwn-green-lite);
  border-top: 1px solid rgba(91,191,91,.2);
  border-bottom: 1px solid rgba(91,191,91,.2);
}
.nwn-guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.nwn-guarantee-icon {
  font-size: 4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(91,191,91,.25));
}
.nwn-guarantee-content h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--nwn-dark);
}
.nwn-guarantee-content p {
  color: #4a5568;
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════ */
/* Homepage only: the FAQ section and the lead-form section right after it
   both use .nwn-section-gray with no visual divider between them, so their
   default 80px bottom/top padding stacked into a ~130px dead gray gap with
   nothing in it. Trim the FAQ section's own bottom padding to close that up
   while leaving its top padding (and every other .nwn-section-gray on the
   site) untouched. */
.nwn-faq-section { padding-bottom: 40px; }
.nwn-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.nwn-faq-item {
  border-bottom: 1px solid var(--nwn-border);
}
.nwn-faq-item:first-child {
  border-top: 1px solid var(--nwn-border);
}
.nwn-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nwn-dark);
  cursor: pointer;
  font-family: var(--nwn-font-head);
  gap: 16px;
  transition: color .15s;
}
.nwn-faq-q:hover { color: var(--nwn-green); }
.nwn-faq-q[aria-expanded="true"] { color: var(--nwn-green); }
.nwn-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nwn-gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--nwn-green);
  transition: background .15s, transform .2s;
  line-height: 1;
}
.nwn-faq-q[aria-expanded="true"] .nwn-faq-icon {
  background: var(--nwn-green);
  color: #fff;
}
.nwn-faq-a {
  padding: 0 4px 20px;
}
.nwn-faq-a p {
  color: var(--nwn-muted);
  font-size: .93rem;
  line-height: 1.75;
  margin: 0;
}
.nwn-faq-a[hidden] { display: none; }

/* ══════════════════════════════════════════════════════
   TESTIMONIAL STARS
══════════════════════════════════════════════════════ */
.nwn-testi-stars {
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════
   FEATURED PRODUCTS WRAPPER — force 4-col, no sidebar
══════════════════════════════════════════════════════ */
.nwn-featured-products-wrap .woocommerce,
.nwn-featured-products-wrap {
  width: 100%;
}
.nwn-featured-products-wrap ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.nwn-featured-products-wrap ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ══════════════════════════════════════════════════════
   WC PRODUCT CARDS — deeper styling override
══════════════════════════════════════════════════════ */
.woocommerce ul.products li.product {
  border-radius: var(--nwn-radius-lg) !important;
  background: #fff !important;
  border: 1px solid var(--nwn-border) !important;
  box-shadow: var(--nwn-shadow) !important;
  overflow: hidden !important;
  transition: transform .22s, box-shadow .22s !important;
  position: relative !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--nwn-shadow-lg) !important;
  border-color: var(--nwn-green) !important;
}
.woocommerce ul.products li.product img {
  border-radius: 0 !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  transition: transform .35s !important;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.04) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: var(--nwn-dark) !important;
  padding: 14px 14px 4px !important;
  line-height: 1.35 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--nwn-green) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 0 14px 10px !important;
  display: block !important;
}
.woocommerce ul.products li.product .button {
  display: block !important;
  width: calc(100% - 28px) !important;
  margin: 0 14px 14px !important;
  text-align: center !important;
  background: var(--nwn-green) !important;
  color: #fff !important;
  border-radius: var(--nwn-radius) !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  padding: 10px !important;
  letter-spacing: .3px !important;
  text-transform: uppercase !important;
  transition: background .15s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--nwn-green-dark) !important;
}

/* ══════════════════════════════════════════════════════
   SERVICES SECTION overrides
══════════════════════════════════════════════════════ */
.nwn-services-section .nwn-card {
  border-top: 3px solid var(--nwn-green);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nwn-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nwn-hiw-grid { flex-direction: column; align-items: center; }
  .nwn-hiw-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--nwn-green) 0%, rgba(91,191,91,.3) 100%); margin: 0; }
  .nwn-hiw-connector::after { right: -4px; top: auto; bottom: -6px; border-left-color: transparent; border-top-color: rgba(91,191,91,.5); }
  .nwn-guarantee-inner { flex-direction: column; text-align: center; gap: 24px; }
  .nwn-featured-products-wrap ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .nwn-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nwn-problems-grid { grid-template-columns: 1fr; }
  .nwn-featured-products-wrap ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ══════════════════════════════════════════════════════
   WC PRODUCT GRID — 3 columns on shop/category pages
══════════════════════════════════════════════════════ */
.woocommerce .products.columns-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  float: none !important;
  clear: both !important;
}
.woocommerce .products.columns-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.woocommerce .products.columns-3 li.product,
.woocommerce .products.columns-4 li.product {
  float: none !important;
  margin: 0 !important;
  width: 100% !important;
}
/* Shop/category page wrapper — no sidebar, full width */
.nwn-wc-wrap .woocommerce-products-header { display: none; }
.nwn-wc-wrap .woocommerce-result-count { color: var(--nwn-muted); font-size: .85rem; margin-bottom: 8px; }
.nwn-wc-wrap .woocommerce-ordering select {
  border: 1px solid var(--nwn-border);
  border-radius: var(--nwn-radius);
  padding: 7px 12px;
  font-size: .85rem;
  color: var(--nwn-dark);
}
/* WC notices full-width */
.woocommerce-notices-wrapper { padding: 0 !important; }
/* Remove WC default product image placeholder grey */
.woocommerce ul.products li.product a img.wp-post-image {
  background: var(--nwn-gray-mid);
}

@media (max-width: 768px) {
  .woocommerce .products.columns-3,
  .woocommerce .products.columns-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 420px) {
  .woocommerce .products.columns-3,
  .woocommerce .products.columns-4 {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════
   LOGO SIZING — both variants identical dimensions
══════════════════════════════════════════════════════ */
.nwn-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nwn-logo-img { height: 36px; }
}


/* ── Lead forms ─────────────────────────────────────── */
.nwn-lead-form-card {
  background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
  border: 1px solid var(--nwn-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--nwn-shadow);
  max-width: 860px;
  margin: 0 auto;
}
.nwn-lead-form-head h3 { margin: 0 0 8px; font-size: 1.45rem; }
.nwn-lead-form-head p { margin: 0 0 20px; color: var(--nwn-muted); }
.nwn-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.nwn-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--nwn-dark);
}
.nwn-form-grid input,
.nwn-form-grid textarea {
  width: 100%;
  border: 1px solid var(--nwn-border);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.nwn-form-grid textarea { min-height: 110px; resize: vertical; }
.nwn-form-full { grid-column: 1 / -1; }
.nwn-lead-form button { margin-top: 16px; border: 0; cursor: pointer; }
.nwn-form-success {
  background: #ebf9eb;
  color: #2f6f2f;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .nwn-form-grid { grid-template-columns: 1fr; }
  .nwn-lead-form-card { padding: 22px; }
}

/* ══════════════════════════════════════════════════════
   TEXT-WRAP BALANCE — fix awkward/orphaned line breaks (2026-07-26)
   Homepage QA pass: headlines and short titles were breaking at
   accidental points (single words alone on the last line, e.g. hero
   h1 "...Doesn't Generate / Leads" at 375–390px, or "Why growing
   brands / choose / NeedAWebNow" at 375px). text-wrap:balance asks
   the browser to choose break points that even out line lengths
   instead of the default greedy fill, which fixes this without
   touching markup or copy. Support: Chrome/Edge 114+, Safari 17.4+,
   Firefox 121+ — unsupported browsers silently fall back to normal
   wrapping (no regression). "pretty" is the same idea for longer
   body copy (keeps the *last* line from being a lone short orphan
   without force-balancing every line); Chrome/Edge only today, but
   it's a no-op enhancement elsewhere so it's safe to ship now.
══════════════════════════════════════════════════════ */
.nwn-hero h1,
.nwn-section-head h2,
.nwn-cta-band h2,
.nwn-guarantee-content h2,
.nwn-card h3,
.nwn-problem-card h3,
.nwn-hiw-step h3 {
  text-wrap: balance;
}
.nwn-hero-sub,
.nwn-section-head p,
.nwn-cta-band p,
.nwn-guarantee-content p,
.nwn-card p,
.nwn-problem-card p,
.nwn-testi blockquote,
.nwn-faq-a p,
.nwn-stat-sub {
  text-wrap: pretty;
}

/* ══════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR — live countdown, clickable (2026-07-26)
   Replaces the static "Global Enterprise Development
   Technologies..." strip with a clickable free-audit offer that
   ticks down to local midnight and resets automatically the next
   day (same honest-daily-urgency pattern as the PowerX mockups'
   "OFFER EXPIRES IN" bar). Kept to a single line at all widths —
   font-size/gaps scale down at narrow viewports instead of
   wrapping, with tabular-nums on the timer so the digits don't
   jitter the layout as they tick.
══════════════════════════════════════════════════════ */
.nwn-top-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f4fbf4;
  border-bottom: 1px solid #e5f5e5;
  padding: 10px 14px;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: #2f6f2f;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color .15s ease, color .15s ease;
}
.nwn-top-cta:hover,
.nwn-top-cta:focus-visible {
  background: #e5f5e5;
  color: #234f23;
  text-decoration: none;
}
.nwn-top-cta .nwn-announce-emoji {
  flex: 0 0 auto;
}
.nwn-top-cta .nwn-announce-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nwn-top-cta .nwn-announce-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .01em;
  background: rgba(47, 111, 47, .12);
  border-radius: 4px;
  padding: 1px 6px;
  display: inline-block;
}
@media (max-width: 600px) {
  .nwn-top-cta {
    padding: 8px 10px;
    font-size: .72rem;
    gap: 4px;
    letter-spacing: -.01em;
  }
  .nwn-top-cta .nwn-announce-timer {
    padding: 1px 4px;
  }
}
@media (max-width: 400px) {
  .nwn-top-cta {
    font-size: .62rem;
    padding: 7px 8px;
  }
}
