/* ============================================================
   NEXT LEVEL PROJECT — Page-Specific Styles
   Premium editorial. Public-facing sales page.
   ============================================================ */

/* --- HERO --- */
.nl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.nl-hero-bg {
  position: absolute;
  inset: 0;
}
.nl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.nl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.3) 30%,
    rgba(0,0,0,0.7) 70%,
    rgba(0,0,0,0.95) 100%
  );
}
.nl-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 8vw, 120px);
  width: 100%;
}
.nl-hero-label {
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
}
.nl-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}
.nl-hero-headline em {
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}
.nl-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 40px;
}
.nl-hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

/* --- CTA BUTTON --- */
.nl-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 20px 56px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.25);
}
.nl-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,83,0.35);
}
.nl-cta-btn--large {
  padding: 22px 56px;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-align: center;
}
.nl-cta-block {
  text-align: center;
  margin-top: 56px;
}

/* --- SECTIONS --- */
.nl-section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.nl-section--dark { background: #0a0a0a; }
.nl-section--mid { background: #111; }
.nl-section--alt { background: #161616; }
.nl-section--light { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* --- NARROW CONTENT COLUMN --- */
.nl-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* --- TYPOGRAPHY --- */
.nl-body-lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-weight: 400;
}
.nl-body {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.nl-body strong {
  color: var(--white);
  font-weight: 600;
}
.nl-body-accent {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-top: 32px;
  line-height: 1.3;
}
.nl-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
}
.nl-heading em {
  font-style: normal;
  color: var(--accent);
}

/* --- TRUTH SECTION (two-col) --- */
.nl-truth-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.nl-pullquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 200;
  line-height: 1.35;
  color: var(--accent);
  letter-spacing: 0.02em;
  padding-left: 28px;
  border-left: 3px solid var(--accent);
  position: sticky;
  top: 120px;
}

/* --- SPLIT LAYOUT --- */
.nl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.nl-split-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.nl-split-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- PRESS LOGOS (text-based) --- */
.nl-press {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nl-press-items {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nl-press-items span {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nl-press-items span:hover {
  color: rgba(255,255,255,0.45);
}

/* --- TESTIMONIALS --- */
.nl-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.nl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nl-testimonial-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Featured card: full width, 3 cols */
.nl-testimonial-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border-color: rgba(212,168,83,0.2);
  padding: 40px;
}

/* Wide card: spans 2 cols, but on a 3-col grid this leaves 1 col.
   We pair wides carefully: wide + single, or single + wide */
.nl-testimonial-card--wide {
  grid-column: span 2;
}

.nl-testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,168,83,0.3);
  flex-shrink: 0;
}
.nl-testimonial-card--featured .nl-testimonial-photo {
  width: 80px;
  height: 80px;
}
.nl-testimonial-body {
  flex: 1;
  min-width: 0;
}
.nl-testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 16px;
}
.nl-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.nl-testimonial-role {
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
}

/* --- LIGHT TESTIMONIALS (now dark to match design system) --- */
.nl-section--light .nl-testimonial-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: none;
}
.nl-section--light .nl-testimonial-quote {
  color: rgba(255,255,255,0.82);
}
.nl-section--light .nl-testimonial-name {
  color: var(--white);
}
.nl-section--light .nl-testimonial-role {
  color: var(--accent);
}
.nl-section--light .nl-testimonial-photo {
  border-color: rgba(212,168,83,0.3);
}

/* --- STEPS --- */
.nl-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.nl-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nl-step:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nl-step-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  letter-spacing: 0.05em;
}
.nl-step-content {
  flex: 1;
}
.nl-step-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.nl-step-desc {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}

/* --- APPLICATION FORM --- */
.nl-form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 52px);
}
.nl-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.nl-form-header .section-label {
  color: var(--accent);
}
.nl-form-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nl-form-row {
  display: flex;
  gap: 16px;
}
.nl-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nl-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.nl-form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nl-form-input,
.nl-form-textarea,
.nl-form-select {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.nl-form-input::placeholder,
.nl-form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.nl-form-input:focus,
.nl-form-textarea:focus,
.nl-form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}
.nl-form-textarea {
  resize: vertical;
  min-height: 80px;
}
.nl-form-select {
  appearance: auto;
  cursor: pointer;
  color-scheme: dark;
}
.nl-form-select option {
  background: #1a1a1a;
  color: rgba(255,255,255,0.9);
}
.nl-form-submit {
  text-align: center;
  margin-top: 24px;
}
.nl-form-submit .nl-cta-btn {
  width: 100%;
  max-width: 480px;
}
.nl-form-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-top: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nl-truth-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nl-pullquote {
    position: relative;
    top: 0;
  }
  .nl-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nl-split-image {
    max-width: 600px;
  }
  .nl-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nl-testimonial-card--wide {
    grid-column: span 2;
  }
  .nl-testimonial-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nl-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .nl-testimonial-card--wide,
  .nl-testimonial-card--featured {
    grid-column: 1;
  }
  .nl-testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .nl-hero {
    min-height: 85vh;
  }
  .nl-step {
    gap: 20px;
  }
  .nl-step-num {
    min-width: 48px;
    font-size: 32px;
  }
  .nl-form-row--half {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nl-hero-headline {
    font-size: clamp(28px, 8vw, 44px);
  }
  .nl-hero-sub {
    font-size: 17px;
  }
  .nl-cta-btn {
    padding: 18px 32px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  .nl-cta-btn--large {
    padding: 20px 28px;
    font-size: 15px;
  }
  .nl-testimonial-card {
    padding: 24px;
  }
  .nl-form-wrapper {
    padding: 28px 20px;
  }
}

@media (max-width: 375px) {
  .nl-hero {
    min-height: 80vh;
  }
  .nl-hero-label {
    font-size: 15px;
  }
  .nl-body-lead {
    font-size: 18px;
  }
  .nl-body {
    font-size: 18px;
  }
}
