.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ============================================================
   NUANS REPORT CANADA — Global Design System
   Site: nuansreportcanada.ca
   Add this to: Elementor > Custom CSS  OR  Appearance > Customize > Additional CSS
   ============================================================ */

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --maple:       #C8102E;
  --maple-dark:  #9B0D23;
  --maple-light: #F5E6EA;
  --navy:        #002D42;
  --navy-mid:    #284162;
  --gold:        #D4A017;
  --gold-light:  #FEF3C7;
  --slate:       #333333;
  --silver:      #FAFAFA;
  --border:      #E2E8F0;
  --white:       #FFFFFF;
  --text:        #333333;
  --muted:       #718096;
  --success:     #276749;
  --success-bg:  #E6F4EE;
  --tag-bg:      #EBF4FF;
  --tag-color:   #284162;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}
p, li, td, th, label, input, select, textarea, button {
  font-family: 'DM Sans', sans-serif;
}

/* ---------- HEADER / NAVBAR ---------- */
.nr-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nr-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nr-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--maple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.nr-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nr-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.nr-logo-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.nr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nr-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.nr-nav a:hover { background: var(--silver); color: var(--navy); }
.nr-nav a.active { color: var(--maple); font-weight: 600; }
.nr-nav-cta {
  background: var(--maple) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nr-nav-cta:hover { background: var(--maple-dark) !important; }

/* Mobile hamburger */
.nr-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nr-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nr-mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.nr-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nr-mobile-menu a:last-child { border-bottom: none; }
.nr-mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nr-nav { display: none; }
  .nr-hamburger { display: flex; }
}

/* ---------- TRUST BAR ---------- */
.nr-trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nr-trust-bar span { display: flex; align-items: center; gap: 6px; }
.nr-trust-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---------- HERO SECTION ---------- */
.nr-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3a5c 100%);
  color: white;
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nr-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.nr-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.nr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.2);
  border: 1px solid rgba(200,16,46,0.45);
  color: #ffccd4;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.nr-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: white;
  max-width: 780px;
  margin: 0 auto 16px;
  line-height: 1.15;
}
.nr-hero h1 em { color: var(--gold); font-style: normal; }
.nr-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 36px;
}
.nr-hero-search {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 580px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  text-align: left;
}
.nr-hero-search label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}
.nr-hero-search-row {
  display: flex;
  gap: 10px;
}
.nr-hero-search input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--slate);
  outline: none;
  transition: border-color 0.2s;
}
.nr-hero-search input:focus { border-color: var(--maple); }
.nr-hero-search input::placeholder { color: var(--muted); }
.nr-hero-search-btn {
  background: var(--maple);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nr-hero-search-btn:hover { background: var(--maple-dark); }
.nr-hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.nr-hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.nr-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.nr-hero-trust-icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ---------- SECTION WRAPPER ---------- */
.nr-section {
  padding: 72px 24px;
}
.nr-section-light { background: var(--white); }
.nr-section-gray  { background: var(--silver); }
.nr-section-navy  { background: var(--navy); color: white; }
.nr-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.nr-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 10px;
}
.nr-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.nr-section-title.white { color: white; }
.nr-section-sub {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.nr-section-sub.white { color: rgba(255,255,255,0.72); }
.nr-center { text-align: center; }
.nr-center .nr-section-sub { margin-left: auto; margin-right: auto; }

/* ---------- BREADCRUMB ---------- */
.nr-breadcrumb {
  background: var(--silver);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.nr-breadcrumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.nr-breadcrumb a {
  color: var(--navy-mid);
  text-decoration: none;
  font-weight: 500;
}
.nr-breadcrumb a:hover { color: var(--maple); }
.nr-breadcrumb-sep { color: var(--border); font-size: 12px; }
.nr-breadcrumb-current { color: var(--maple); font-weight: 600; }

/* ---------- BUTTONS ---------- */
.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.nr-btn-primary {
  background: var(--maple);
  color: white;
}
.nr-btn-primary:hover { background: var(--maple-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(200,16,46,0.3); }
.nr-btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--border);
}
.nr-btn-secondary:hover { border-color: var(--navy); }
.nr-btn-navy {
  background: var(--navy);
  color: white;
}
.nr-btn-navy:hover { background: var(--navy-mid); }
.nr-btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.nr-btn-gold:hover { background: #c49010; }
.nr-btn-sm { padding: 9px 18px; font-size: 13.5px; }
.nr-btn-lg { padding: 17px 36px; font-size: 17px; }
.nr-btn-full { width: 100%; }

/* ---------- HOW IT WORKS STEPS ---------- */
.nr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.nr-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--maple) 0%, var(--maple-light) 100%);
}
.nr-step {
  text-align: center;
  position: relative;
}
.nr-step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--maple) 0%, var(--maple-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(200,16,46,0.25);
}
.nr-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.nr-step p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- PROVINCE CARDS ---------- */
.nr-province-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nr-province-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.nr-province-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--maple);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nr-province-card:hover { border-color: var(--maple); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.nr-province-card:hover::before { transform: scaleX(1); }
.nr-province-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.nr-province-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.nr-province-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.nr-province-price {
  display: inline-block;
  background: var(--maple-light);
  color: var(--maple-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.nr-province-link {
  font-size: 13px;
  color: var(--navy-mid);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ---------- PRICE CARDS ---------- */
.nr-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  background: white;
  transition: box-shadow 0.2s;
}
.nr-price-card:hover { box-shadow: var(--shadow-md); }
.nr-price-card.featured {
  border-color: var(--maple);
  background: linear-gradient(160deg, #fff5f7 0%, white 100%);
}
.nr-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maple);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.nr-price-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.nr-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--maple);
  line-height: 1;
  margin: 12px 0 4px;
}
.nr-price-currency {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.nr-price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.nr-price-delivery {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--success-bg);
  color: var(--success);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.nr-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nr-price-list li {
  font-size: 14px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.nr-price-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- TESTIMONIAL CARDS ---------- */
.nr-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.nr-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.nr-testimonial blockquote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0 0 20px;
  font-style: italic;
}
.nr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nr-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.nr-author-info strong { font-size: 14px; font-weight: 700; color: var(--navy); display: block; }
.nr-author-info span  { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ACCORDION ---------- */
.nr-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nr-faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
}
.nr-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
  transition: background 0.2s;
}
.nr-faq-q:hover { background: var(--silver); }
.nr-faq-q.open { background: var(--maple-light); color: var(--maple-dark); }
.nr-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-weight: 400;
  color: var(--navy);
}
.nr-faq-q.open .nr-faq-icon {
  background: var(--maple);
  color: white;
  transform: rotate(45deg);
}
.nr-faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.nr-faq-a.open { display: block; }

/* ---------- TRUST BADGES ---------- */
.nr-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--silver);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.nr-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}
.nr-badge-icon {
  font-size: 18px;
}

/* ---------- BLOG PREVIEW CARDS ---------- */
.nr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nr-blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s;
}
.nr-blog-card:hover { box-shadow: var(--shadow-md); }
.nr-blog-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.nr-blog-body { padding: 22px; }
.nr-blog-category {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 8px;
}
.nr-blog-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.nr-blog-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.nr-blog-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- CONTACT INFO STRIP ---------- */
.nr-contact-strip {
  background: var(--navy);
  color: white;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.nr-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.nr-contact-item a { color: var(--gold); text-decoration: none; font-weight: 600; }
.nr-contact-item a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.nr-footer {
  background: #001826;
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}
.nr-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.nr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.nr-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}
.nr-footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.nr-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.nr-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nr-footer-col a:hover { color: white; }
.nr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.nr-footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 700px;
}
.nr-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nr-footer-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.nr-footer-links a:hover { color: white; }

/* ---------- INLINE INFO BOXES ---------- */
.nr-notice {
  background: var(--gold-light);
  border: 1px solid rgba(212,160,23,0.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  color: #5A3E00;
  margin: 16px 0;
}
.nr-notice strong { color: #3D2900; }
.nr-info-box {
  background: var(--tag-bg);
  border: 1px solid rgba(40,65,98,0.18);
  border-left: 4px solid var(--navy-mid);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--slate);
  margin: 16px 0;
}
.nr-success-box {
  background: var(--success-bg);
  border: 1px solid rgba(39,103,73,0.25);
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  color: #1a4330;
}

/* ---------- FEATURE LIST ---------- */
.nr-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nr-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--slate);
}
.nr-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--success-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- TWO COLUMN LAYOUT ---------- */
.nr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.nr-two-col-left {}
.nr-two-col-right {}

/* ---------- ORDER CARD (Sticky Sidebar) ---------- */
.nr-order-card {
  background: white;
  border: 2px solid var(--maple);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}
.nr-order-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.nr-order-price {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--maple);
  line-height: 1;
  margin: 10px 0 4px;
}
.nr-order-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.nr-order-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nr-order-features li {
  font-size: 13.5px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nr-order-features li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ---------- TABLES ---------- */
.nr-table-wrap { overflow-x: auto; margin: 20px 0; }
.nr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 500px;
}
.nr-table thead th {
  background: var(--navy);
  color: white;
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nr-table thead th:first-child { border-radius: 8px 0 0 0; }
.nr-table thead th:last-child  { border-radius: 0 8px 0 0; }
.nr-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  vertical-align: top;
}
.nr-table tbody tr:last-child td { border-bottom: none; }
.nr-table tbody tr:hover { background: var(--silver); }
.nr-table tbody td:first-child { font-weight: 600; color: var(--navy); }

/* ---------- STAT COUNTER ROW ---------- */
.nr-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.nr-stat {
  text-align: center;
}
.nr-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--maple);
  line-height: 1;
  margin-bottom: 4px;
}
.nr-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---------- CTA BAND ---------- */
.nr-cta-band {
  background: linear-gradient(135deg, var(--maple) 0%, var(--maple-dark) 100%);
  color: white;
  text-align: center;
  padding: 64px 24px;
}
.nr-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}
.nr-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
}
.nr-cta-band .nr-btn-gold { font-size: 17px; padding: 16px 40px; }

/* ---------- FORM STYLES ---------- */
.nr-form-wrap {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.nr-form-step-bar {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}
.nr-form-step-item {
  display: flex;
  align-items: center;
  flex: 1;
}
.nr-form-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}
.nr-form-step-circle.active { background: var(--maple); color: white; }
.nr-form-step-circle.done { background: var(--success); color: white; }
.nr-form-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 8px;
  white-space: nowrap;
}
.nr-form-step-label.active { color: var(--navy); }
.nr-form-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}
.nr-form-step-line.done { background: var(--success); }
.nr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.nr-form-row.single { grid-template-columns: 1fr; }
.nr-form-row.triple { grid-template-columns: 1fr 1fr 1fr; }
.nr-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nr-field-required { color: var(--maple); }
.nr-input, .nr-select, .nr-textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--slate);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nr-input:focus, .nr-select:focus, .nr-textarea:focus {
  border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.nr-textarea { resize: vertical; min-height: 100px; }
.nr-field-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nr-province-grid { grid-template-columns: repeat(2, 1fr); }
  .nr-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nr-two-col { grid-template-columns: 1fr; gap: 32px; }
  .nr-order-card { position: static; }
}

@media (max-width: 768px) {
  .nr-steps { grid-template-columns: 1fr; }
  .nr-steps::before { display: none; }
  .nr-price-grid { grid-template-columns: 1fr; }
  .nr-testimonials { grid-template-columns: 1fr; }
  .nr-blog-grid { grid-template-columns: 1fr; }
  .nr-form-row { grid-template-columns: 1fr; }
  .nr-form-row.triple { grid-template-columns: 1fr; }
  .nr-stats { gap: 32px; }
  .nr-contact-strip { gap: 16px; }
  .nr-section { padding: 48px 20px; }
}

@media (max-width: 540px) {
  .nr-province-grid { grid-template-columns: 1fr 1fr; }
  .nr-footer-grid { grid-template-columns: 1fr; }
  .nr-footer-bottom { flex-direction: column; }
  .nr-hero-search-row { flex-direction: column; }
}/* End custom CSS */