/* ============================================================
   NeverPeak Performance Lab — Shared Stylesheet
   neverpeak.fit
   ============================================================

   TABLE OF CONTENTS
   1. Tokens & Variables
   2. Reset & Base
   3. Typography Scale
   4. Layout Utilities
   5. Navigation
   6. Buttons & CTAs
   7. Section Labels & Headings
   8. Hero
   9. Data Strip
   10. Ticker / Banner
   11. Split Sections (2-col grid)
   12. Lab Feature (image + text)
   13. Compare Cards
   14. Fact / Credential Rows
   15. Process Path
   16. Outcomes Grid
   17. Forms
   18. CTA Band
   19. Footer
   20. Responsive
   ============================================================ */


/* ── 1. TOKENS & VARIABLES ── */
:root {
  /* Backgrounds */
  --bg-primary:   #18181E;
  --bg-secondary: #1E1E26;
  --bg-card:      rgba(240, 237, 232, 0.03);

  /* Text */
  --text-primary:  #F0EDE8;
  --text-body:     rgba(240, 237, 232, 0.78);
  --text-muted:    rgba(240, 237, 232, 0.50);
  --text-dimmed:   rgba(240, 237, 232, 0.35);

  /* Accent */
  --accent:        #C8184A;
  --accent-hover:  #a8123d;
  --accent-subtle: rgba(200, 24, 74, 0.07);
  --accent-border: rgba(200, 24, 74, 0.40);

  /* Borders / Dividers */
  --border:        rgba(240, 237, 232, 0.10);
  --border-light:  rgba(240, 237, 232, 0.07);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad:  72px 56px;
  --section-pad-sm: 48px 24px;

  /* Radius */
  --radius: 3px;
  --radius-sm: 2px;

  /* Transitions */
  --transition: 0.2s ease;

  /* Max width */
  --max-width: 1200px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ── 3. TYPOGRAPHY SCALE ── */
.np-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.np-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.np-h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.np-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
}

.np-body + .np-body {
  margin-top: 14px;
}

.np-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.np-small {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ── 4. LAYOUT UTILITIES ── */
.np-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.np-section {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.np-section--alt {
  background: var(--bg-secondary);
}

.np-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.np-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.np-divider-right {
  border-right: 1px solid var(--border);
}


/* ── 5. NAVIGATION ── */
.np-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 56px;
  border-bottom: 1px solid var(--border);
  background: rgba(24, 24, 30, 0.97);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.np-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.np-logo-mark {
  display: flex;
  align-items: center;
  gap: 11px;
}

.np-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.np-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dimmed);
  padding-left: 35px;
}

.np-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.np-nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
  text-decoration: none;
}

.np-nav-links a:hover,
.np-nav-links a.active {
  color: var(--text-primary);
}

.np-nav-links a.active {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}


/* ── 6. BUTTONS & CTAs ── */
.np-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition);
  line-height: 1;
}

.np-btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-primary);
}

.np-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}

.np-btn-ghost:hover {
  color: var(--text-primary);
}

.np-btn-ghost span {
  border-bottom: 1px solid rgba(240, 237, 232, 0.3);
  padding-bottom: 2px;
}

.np-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 237, 232, 0.25);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.np-btn-outline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Nav book button */
.np-nav-book {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px !important;
  transition: background var(--transition) !important;
}

.np-nav-book:hover {
  background: var(--accent-hover) !important;
  color: var(--text-primary) !important;
  border-bottom: none !important;
}


/* ── 7. SECTION LABELS ── */
.np-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.np-label--dim {
  color: var(--text-dimmed);
}

.np-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.np-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}


/* ── 8. HERO ── */
.np-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.np-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.42) saturate(0.7);
}

.np-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 24, 30, 1) 0%,
    rgba(24, 24, 30, 0.6) 50%,
    rgba(24, 24, 30, 0.05) 100%
  );
}

.np-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 68px;
  width: 100%;
  max-width: 740px;
}

/* Interior hero — shorter, for inner pages */
.np-hero--interior {
  min-height: 320px;
  align-items: center;
}

.np-hero--interior .np-hero-content {
  padding: 80px 56px;
  max-width: 100%;
}

.np-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.82);
  margin: 0 0 40px;
  font-weight: 300;
  max-width: 580px;
}

.np-hero-sub strong {
  color: var(--text-primary);
  font-weight: 600;
}

.np-hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}


/* ── 9. DATA STRIP ── */
.np-data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}

.np-data-item {
  padding: 30px 36px;
  border-right: 1px solid var(--border);
}

.np-data-item:last-child {
  border-right: none;
}

.np-data-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.np-data-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ── 10. TICKER / BANNER ── */
.np-ticker {
  background: var(--accent);
  padding: 15px 56px;
  display: flex;
  align-items: center;
  gap: 26px;
  overflow: hidden;
}

.np-ticker-text {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0.93;
}

.np-ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240, 237, 232, 0.45);
  flex-shrink: 0;
}


/* ── 11. SPLIT SECTIONS ── */
.np-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.np-split-left {
  padding: var(--section-pad);
  border-right: 1px solid var(--border);
  background: var(--bg-primary);
}

.np-split-right {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}


/* ── 12. LAB FEATURE ── */
.np-lab-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 460px;
}

.np-lab-img-wrap {
  position: relative;
  overflow: hidden;
}

.np-lab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: brightness(0.78) saturate(0.8);
  display: block;
}

.np-lab-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg-primary) 100%);
}

.np-lab-content {
  padding: var(--section-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
}


/* ── 13. COMPARE CARDS ── */
.np-compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.np-compare-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--bg-card);
}

.np-compare-card--active {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
}

.np-compare-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--text-dimmed);
}

.np-compare-label--accent {
  color: var(--accent);
}

.np-compare-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.np-compare-text--active {
  color: rgba(240, 237, 232, 0.88);
}

.np-vs-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 237, 232, 0.25);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.np-vs-line::before,
.np-vs-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}


/* ── 14. FACT / CREDENTIAL ROWS ── */
.np-facts {
  display: flex;
  flex-direction: column;
}

.np-fact {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}

.np-fact:first-child {
  padding-top: 0;
}

.np-fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.np-fact-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}

.np-fact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.np-fact-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}


/* ── 15. PROCESS PATH ── */
.np-process {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.np-process-head {
  margin-bottom: 52px;
}

.np-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}

.np-steps::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 9%;
  right: 9%;
  height: 0;
  border-top: 1px dashed rgba(200, 24, 74, 0.35);
}

.np-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.np-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 16px;
}

.np-step-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.np-step-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ── 16. OUTCOMES GRID ── */
.np-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 44px;
}

.np-outcome {
  background: var(--bg-primary);
  padding: 30px 26px;
}

.np-outcome-icon {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

.np-outcome-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.np-outcome-body {
  font-size: 13px;
  line-height: 1.78;
  color: var(--text-body);
}


/* ── 17. FORMS ── */
.np-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.np-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.np-label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.np-input,
.np-select,
.np-textarea {
  background: rgba(240, 237, 232, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
}

.np-input:focus,
.np-select:focus,
.np-textarea:focus {
  outline: none;
  border-color: var(--accent-border);
}

.np-input::placeholder,
.np-textarea::placeholder {
  color: var(--text-dimmed);
}

.np-textarea {
  resize: vertical;
  min-height: 120px;
}

.np-select {
  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 d='M1 1l5 5 5-5' stroke='rgba(240,237,232,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.np-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.np-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.np-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.np-checkbox-label {
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
}

.np-form-note {
  font-size: 12px;
  color: var(--text-dimmed);
  line-height: 1.6;
}


/* ── 18. CTA BAND ── */
.np-cta-band {
  padding: 88px 56px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.np-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.1;
}

.np-cta-band p {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.np-cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.np-phone-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.np-phone-link:hover {
  color: var(--text-primary);
}

.np-phone-link i {
  color: var(--accent);
}


/* ── 19. FOOTER ── */
.np-footer {
  padding: 30px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.np-footer-copy {
  font-size: 12px;
  color: var(--text-dimmed);
  line-height: 1.8;
}

.np-footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.np-footer-links a {
  font-size: 12px;
  color: var(--text-dimmed);
  text-decoration: none;
  transition: color var(--transition);
}

.np-footer-links a:hover {
  color: var(--text-muted);
}


/* ── HAMBURGER TOGGLE ── */
.np-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.np-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

/* X state when open */
.np-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.np-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.np-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── 20. RESPONSIVE ── */
@media (max-width: 900px) {
  :root {
    --section-pad: 56px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

  /* Nav */
  .np-nav {
    padding: 16px 24px;
    position: relative;
  }

  .np-nav-toggle {
    display: flex;
  }

  .np-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(24, 24, 30, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 99;
  }

  .np-nav-links.is-open {
    display: flex;
  }

  .np-nav-links a:not(.np-nav-book) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-muted);
  }

  .np-nav-links a:not(.np-nav-book):last-of-type {
    border-bottom: none;
  }

  .np-nav-book {
    display: block !important;
    margin-top: 16px;
    text-align: center;
    padding: 13px 24px !important;
    font-size: 15px !important;
  }

  /* Hero */
  .np-hero {
    min-height: 520px;
  }

  .np-hero-content {
    padding: 0 24px 52px;
  }

  .np-hero--interior .np-hero-content {
    padding: 56px 24px;
  }

  .np-hero-sub {
    font-size: 15px;
  }

  .np-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Data strip: 2x2 grid, fix orphan borders */
  .np-data-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-data-item:nth-child(2),
  .np-data-item:nth-child(4) {
    border-right: none;
  }

  .np-data-item:nth-child(1),
  .np-data-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  /* Ticker */
  .np-ticker {
    padding: 14px 24px;
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Split sections stack */
  .np-split,
  .np-lab-feature {
    grid-template-columns: 1fr;
  }

  .np-split-left,
  .np-split-right {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .np-split-right {
    border-bottom: none;
  }

  /* Lab feature image */
  .np-lab-img-wrap {
    min-height: 260px;
  }

  .np-lab-img-fade {
    background: linear-gradient(to bottom, transparent 40%, var(--bg-primary) 100%);
  }

  /* Process steps — horizontal icon + text */
  .np-process {
    padding: var(--section-pad);
  }

  .np-process-head {
    margin-bottom: 36px;
  }

  .np-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .np-steps::before {
    display: none;
  }

  .np-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
  }

  .np-step-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 2px;
  }

  /* Outcomes: 1 column */
  .np-outcomes-grid {
    grid-template-columns: 1fr;
  }

  /* Section padding */
  .np-section {
    padding: var(--section-pad);
  }

  /* Forms */
  .np-field-row {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .np-cta-band {
    padding: 56px 24px;
  }

  .np-cta-row {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer */
  .np-footer {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .np-footer-copy {
    text-align: center;
  }

  .np-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .np-h1 {
    font-size: 34px;
  }

  .np-data-num {
    font-size: 26px;
  }

  .np-ticker-text {
    font-size: 15px;
  }

  .np-btn-primary {
    width: 100%;
    text-align: center;
  }

  .np-btn-ghost {
    align-self: flex-start;
  }
}
