@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ─── DARK THEME (default) ─── */
:root,
[data-theme="dark"] {
  --bg:           #2a2a2e;
  --bg-alt:       #1e1e21;
  --bg-card:      #313136;
  --text:         #f0ece6;
  --text-muted:   #a09890;
  --copper:       #b87333;
  --copper-lt:    #d4956a;
  --copper-br:    #e8b48a;
  --copper-grad:  linear-gradient(135deg, #b87333 0%, #d4956a 40%, #e8c49a 60%, #c8843e 100%);
  --copper-sub:   rgba(184,115,51,0.12);
  --copper-bdr:   rgba(184,115,51,0.3);
  --border:       rgba(255,255,255,0.06);
  --row-alt:      rgba(255,255,255,0.03);
  --row-hover:    rgba(184,115,51,0.08);
  --shadow:       0 8px 40px rgba(184,115,51,0.15);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.3);
  --nav-bg:       rgba(30,30,33,0.96);
  --input-bg:     rgba(255,255,255,0.06);
  --input-bdr:    rgba(184,115,51,0.3);
  --input-focus:  rgba(184,115,51,0.6);
}

/* ─── LIGHT THEME ─── */
[data-theme="light"] {
  --bg:           #f7f4f0;
  --bg-alt:       #ffffff;
  --bg-card:      #ffffff;
  --text:         #1e1a17;
  --text-muted:   #7a6e66;
  --copper:       #9a6028;
  --copper-lt:    #b87333;
  --copper-br:    #c8843e;
  --copper-grad:  linear-gradient(135deg, #9a6028 0%, #b87333 40%, #d4956a 60%, #a56a30 100%);
  --copper-sub:   rgba(184,115,51,0.08);
  --copper-bdr:   rgba(184,115,51,0.22);
  --border:       rgba(0,0,0,0.07);
  --row-alt:      rgba(184,115,51,0.04);
  --row-hover:    rgba(184,115,51,0.06);
  --shadow:       0 8px 40px rgba(0,0,0,0.1);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.08);
  --nav-bg:       rgba(255,255,255,0.97);
  --input-bg:     rgba(0,0,0,0.03);
  --input-bdr:    rgba(184,115,51,0.25);
  --input-focus:  rgba(184,115,51,0.5);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

html[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184,115,51,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(184,115,51,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── CONTAINER ─── */
.npc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.npc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.npc-btn-primary {
  background: var(--copper-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,115,51,0.3);
}

.npc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,115,51,0.4);
}

.npc-btn-outline {
  background: transparent;
  color: var(--copper-lt);
  border: 1px solid var(--copper-bdr);
}

.npc-btn-outline:hover {
  background: var(--copper-sub);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.npc-btn-full { width: 100%; }

/* ─── NAVBAR ─── */
.npc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--copper-bdr);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
}

.npc-navbar.scrolled { box-shadow: var(--shadow-sm); }

.npc-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.npc-nav-logo { display: flex; align-items: center; }
.npc-nav-logo img { height: 44px; width: auto; }

.npc-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.npc-nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}

.npc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--copper);
  transition: left 0.2s, right 0.2s;
}

.npc-nav-link:hover,
.npc-nav-link.active { color: var(--copper-lt); }

.npc-nav-link.active::after,
.npc-nav-link:hover::after { left: 16px; right: 16px; }

.npc-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle */
.npc-theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--copper-sub);
  border: 1px solid var(--copper-bdr);
  color: var(--copper-lt);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.npc-theme-toggle:hover {
  background: var(--copper-sub);
  border-color: var(--copper);
  transform: rotate(20deg);
}

.npc-theme-toggle svg { width: 18px; height: 18px; }

[data-theme="dark"] .npc-icon-sun  { display: block; }
[data-theme="dark"] .npc-icon-moon { display: none; }
[data-theme="light"] .npc-icon-sun  { display: none; }
[data-theme="light"] .npc-icon-moon { display: block; }

/* Hamburger */
.npc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.npc-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--copper-lt);
  border-radius: 2px;
  transition: all 0.3s;
}

.npc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.npc-hamburger.open span:nth-child(2) { opacity: 0; }
.npc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.npc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.npc-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(184,115,51,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.npc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.npc-hero-logo {
  height: 100px; width: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 20px rgba(184,115,51,0.4));
  animation: npcFadeUp 0.8s ease both;
}

.npc-hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid var(--copper-bdr);
  border-radius: 2px;
  animation: npcFadeUp 0.8s 0.1s ease both;
}

.npc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: var(--copper-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: npcFadeUp 0.8s 0.2s ease both;
}

.npc-hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.85;
  animation: npcFadeUp 0.8s 0.3s ease both;
}

.npc-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: npcFadeUp 0.8s 0.4s ease both;
}

.npc-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.npc-scroll-hint span {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--copper-bdr), transparent);
  margin: 0 auto;
  animation: npcScrollLine 2s ease infinite;
}

/* ─── SECTIONS ─── */
.npc-section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.npc-section-about   { background: var(--bg-alt); }
.npc-section-pricing { background: var(--bg); }
.npc-section-contact { background: var(--bg-alt); }

.npc-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.npc-eyebrow {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.npc-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.npc-section-line {
  width: 48px; height: 2px;
  background: var(--copper-grad);
  margin: 0 auto 20px;
}

.npc-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── ABOUT ─── */
.npc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.npc-about-text p {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 1.4em;
}

.npc-about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.npc-feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--copper-bdr);
  border-radius: 6px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.npc-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper-grad);
  opacity: 0;
  transition: opacity 0.25s;
}

.npc-feature-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.npc-feature-card:hover::before { opacity: 1; }

.npc-feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--copper-sub);
  border: 1px solid var(--copper-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper-lt);
}

.npc-feature-icon svg { width: 20px; height: 20px; }

.npc-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper-lt);
  margin-bottom: 6px;
}

.npc-feature-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── PRICING TABS ─── */
.npc-pricing-tabs {
  display: flex;
  border: 1px solid var(--copper-bdr);
  border-radius: 4px;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto 40px;
  background: var(--bg-alt);
}

.npc-pricing-tab {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  line-height: 1.4;
}

.npc-pricing-tab:not(:last-child) { border-right: 1px solid var(--copper-bdr); }

.npc-pricing-tab .npc-tab-sub {
  display: block;
  font-size: 0.65em;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  margin-top: 2px;
}

.npc-pricing-tab.active {
  background: var(--copper-grad);
  color: #fff;
}

.npc-pricing-tab.active .npc-tab-sub { color: rgba(255,255,255,0.8); opacity: 1; }

/* ─── PRICING PANEL ─── */
.npc-pricing-panel { display: none; }
.npc-pricing-panel.active { display: block; animation: npcFadeUp 0.35s ease both; }

/* ─── TABLE ─── */
.npc-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--copper-bdr);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 0 auto;
}

.npc-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.npc-pricing-table thead tr {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--copper-bdr);
  position: relative;
}

.npc-pricing-table thead tr::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper-grad);
}

.npc-pricing-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--copper-lt);
  white-space: nowrap;
}

.npc-pricing-table th:last-child { text-align: right; }

.npc-pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.npc-pricing-table tbody tr:last-child { border-bottom: none; }
.npc-pricing-table tbody tr:nth-child(even) { background: var(--row-alt); }
.npc-pricing-table tbody tr:hover { background: var(--row-hover); }

.npc-pricing-table td {
  padding: 15px 24px;
  vertical-align: middle;
}

.npc-pricing-table td:last-child { text-align: right; }

.npc-docs-range {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.npc-price-value,
.npc-price-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper-lt);
}

.npc-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.npc-table-note {
  padding: 14px 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─── ORNAMENT DIVIDER ─── */
.npc-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 300px;
  margin: 56px auto;
}

.npc-ornament::before,
.npc-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
}

.npc-ornament::before { background: linear-gradient(to right, transparent, var(--copper-bdr)); }
.npc-ornament::after  { background: linear-gradient(to left,  transparent, var(--copper-bdr)); }

.npc-ornament-dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(184,115,51,0.5);
}

/* ─── INFO GRID ─── */
.npc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.npc-info-card {
  background: var(--bg-card);
  border: 1px solid var(--copper-bdr);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.npc-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper-grad);
  opacity: 0.6;
}

.npc-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.npc-info-card .npc-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.npc-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--copper-lt);
  margin-bottom: 10px;
}

.npc-info-card p,
.npc-info-card li {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.npc-info-card ul { padding: 0; }

.npc-info-card ul li {
  padding-left: 14px;
  position: relative;
}

.npc-info-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.7rem;
  line-height: 1.75;
}

.npc-price-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper-br);
}

.npc-pricing-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--copper-bdr);
}

.npc-pricing-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

/* ─── CONTACT ─── */
.npc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.npc-contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--copper-lt);
  margin-bottom: 4px;
}

.npc-contact-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}

.npc-contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.npc-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.npc-contact-item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--copper);
  margin-top: 2px;
}

.npc-contact-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.npc-contact-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

a.npc-contact-value:hover { color: var(--copper-lt); }

/* ─── FORM ─── */
.npc-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--copper-bdr);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.npc-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--copper-grad);
}

.npc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.npc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.npc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.npc-form-group label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.npc-form-group input,
.npc-form-group select,
.npc-form-group textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-bdr);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.npc-form-group input::placeholder,
.npc-form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.npc-form-group input:focus,
.npc-form-group select:focus,
.npc-form-group textarea:focus {
  outline: none;
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}

.npc-form-group textarea { resize: vertical; min-height: 120px; }

.npc-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a09890' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ─── FOOTER ─── */
.npc-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--copper-bdr);
  padding: 48px 0 28px;
}

.npc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.npc-footer-brand { display: flex; align-items: center; gap: 16px; }
.npc-footer-brand img { height: 44px; width: auto; }

.npc-footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--copper-lt);
  letter-spacing: 0.08em;
}

.npc-footer-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.npc-footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }

.npc-footer-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.npc-footer-nav a:hover { color: var(--copper-lt); }

.npc-footer-bottom {
  text-align: center;
}

.npc-footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── ANIMATIONS ─── */
@keyframes npcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes npcScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.npc-will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.npc-will-animate.npc-visible {
  opacity: 1;
  transform: none;
}

/* Cascade delay for cards */
.npc-feature-card:nth-child(2).npc-will-animate { transition-delay: 0.1s; }
.npc-feature-card:nth-child(3).npc-will-animate { transition-delay: 0.2s; }
.npc-info-card:nth-child(2).npc-will-animate     { transition-delay: 0.1s; }
.npc-info-card:nth-child(3).npc-will-animate     { transition-delay: 0.2s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .npc-about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .npc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .npc-nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--copper-bdr);
    flex-direction: column;
    padding: 12px 0;
    backdrop-filter: blur(12px);
  }

  .npc-nav-links.open { display: flex; }

  .npc-nav-link { padding: 14px 24px; width: 100%; }
  .npc-nav-link::after { display: none; }

  .npc-hamburger { display: flex; }

  .npc-hero-cta { flex-direction: column; align-items: center; }
  .npc-hero-cta .npc-btn { width: 100%; max-width: 280px; }

  .npc-form-row { grid-template-columns: 1fr; }
  .npc-form-wrap { padding: 28px 20px; }

  .npc-footer-inner { flex-direction: column; text-align: center; }
  .npc-footer-nav { justify-content: center; }
}

@media (max-width: 560px) {
  .npc-section { padding: 72px 0; }

  .npc-pricing-tabs {
    flex-direction: column;
    max-width: 100%;
  }

  .npc-pricing-tab:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--copper-bdr);
  }

  .npc-pricing-table th,
  .npc-pricing-table td { padding: 12px 16px; }

  .npc-price-value,
  .npc-price-range { font-size: 0.95rem; }
}
