:root {
  --np-coral: #FF6B6B;
  --np-purple: #6A0572;
  --np-blue: #4FACFE;
  --np-dark: #1A1A2E;
  --np-light: #F8F9FA;
  --np-white: #FFFFFF;
  --np-text: #333344;
  --np-font: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--np-font);
  color: var(--np-text);
  background-color: var(--np-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Top Navigation */
.np-top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.np-brand-mark {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--np-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.np-mark-icon {
  font-size: 1.8rem;
}

.np-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 500;
}

.np-nav-links a:hover {
  color: var(--np-coral);
}

.np-action-btn-small {
  background: var(--np-purple);
  color: var(--np-white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
}

.np-action-btn-small:hover {
  background: var(--np-dark);
}

/* Hero Section */
#np-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: var(--np-dark);
  color: var(--np-white);
}

.np-blob-shape-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: linear-gradient(45deg, var(--np-purple), var(--np-coral));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: morph 15s ease-in-out infinite alternate;
}

.np-blob-shape-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: linear-gradient(135deg, var(--np-blue), var(--np-purple));
  border-radius: 60% 40% 30% 70% / 50% 40% 60% 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
}

@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 70% 30% 50% 50% / 30% 70% 40% 60%; }
}

.np-mega-text-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.np-huge-headline {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  background: linear-gradient(to right, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.np-hero-sub {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.np-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.np-action-btn-large {
  background: var(--np-coral);
  color: var(--np-white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  transition: transform 0.2s;
}

.np-action-btn-large:hover {
  transform: translateY(-3px);
}

.np-trust-badge {
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
#np-origins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 8rem 6%;
  align-items: center;
  background: var(--np-white);
}

.np-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--np-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.np-origins-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.np-stat-highlight {
  color: var(--np-blue);
  font-size: 1.5rem;
  font-weight: 900;
}

.np-inline-link {
  color: var(--np-purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.np-origins-visual img {
  border-radius: 20px;
  box-shadow: -15px 15px 0 var(--np-coral);
}

/* Services Section */
#np-capabilities {
  padding: 7rem 4%;
  background: var(--np-light);
}

.np-cap-header {
  text-align: center;
  margin-bottom: 4rem;
}

.np-cap-sub {
  font-size: 1.2rem;
  color: #666;
}

.np-tactics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.np-tactic-card {
  background: var(--np-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.np-tactic-card:hover {
  transform: translateY(-10px);
}

.np-tactic-card img {
  height: 200px;
}

.np-tactic-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
  color: var(--np-dark);
}

.np-tactic-card p {
  padding: 0 1.5rem 2rem;
  color: #666;
  font-size: 0.95rem;
}

.np-process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  background: var(--np-dark);
  color: var(--np-white);
  padding: 4rem;
  border-radius: 24px;
  margin-bottom: 6rem;
}

.np-process-visual {
  flex: 1;
  min-width: 300px;
}

.np-process-visual img {
  border-radius: 12px;
}

.np-process-steps {
  flex: 1;
  min-width: 300px;
}

.np-process-steps h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--np-blue);
}

.np-step-list {
  list-style: none;
  counter-reset: np-counter;
}

.np-step-list li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.np-step-list li::before {
  counter-increment: np-counter;
  content: counter(np-counter);
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  background: var(--np-coral);
  color: var(--np-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.np-faq-block {
  max-width: 800px;
  margin: 0 auto;
}

.np-faq-block h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--np-dark);
}

.np-faq-item {
  background: var(--np-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.np-faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--np-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.np-faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--np-purple);
  transition: transform 0.3s;
}

.np-faq-item.np-faq-active .np-faq-trigger::after {
  transform: rotate(45deg);
}

.np-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.np-faq-item.np-faq-active .np-faq-content {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* Testimonials */
#np-praise {
  padding: 6rem 4%;
  background: var(--np-white);
  text-align: center;
}

.np-praise-scroller {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.np-praise-card {
  background: var(--np-light);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 450px;
  text-align: left;
  position: relative;
}

.np-praise-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--np-blue);
  opacity: 0.2;
  font-family: serif;
}

.np-praise-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.np-praise-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.np-praise-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.np-praise-author span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--np-dark);
}

.np-praise-author em {
  font-weight: 400;
  font-size: 0.85rem;
  color: #666;
}

/* Contact Form */
#np-connect {
  padding: 8rem 4%;
  background: linear-gradient(135deg, var(--np-dark), #2a2a4a);
  color: var(--np-white);
}

.np-connect-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.np-connect-info .np-section-title {
  color: var(--np-white);
}

.np-connect-info p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.np-connect-img {
  border-radius: 16px;
  opacity: 0.8;
}

.np-form-layout {
  background: var(--np-white);
  padding: 3rem;
  border-radius: 20px;
  color: var(--np-text);
}

.np-input-group {
  margin-bottom: 1.5rem;
}

.np-input-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.np-input-group input,
.np-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9f9f9;
}

.np-input-group input:focus,
.np-input-group textarea:focus {
  outline: none;
  border-color: var(--np-purple);
  background: var(--np-white);
}

.np-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--np-coral);
  color: var(--np-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.np-submit-btn:hover {
  background: var(--np-dark);
}

.np-tiny-disclaimer {
  font-size: 0.75rem;
  color: #888;
  margin-top: 1rem;
  text-align: center;
}

/* Footer */
.np-foot-base {
  background: #0f0f1d;
  color: #aaa;
  padding: 4rem 4% 1.5rem;
}

.np-foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.np-foot-col h4 {
  color: var(--np-white);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.np-foot-col p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.np-foot-col a:hover {
  color: var(--np-coral);
}

.np-foot-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

/* Responsive Leakage & Adjustments */
@media (max-width: 900px) {
  #np-origins,
  .np-connect-inner {
    grid-template-columns: 1fr;
  }
  
  .np-process-row {
    padding: 2rem;
  }

  .np-huge-headline {
    font-size: 3.5rem;
  }
}

@media (max-width: 600px) {
  .np-nav-links {
    display: none; /* simplified for mobile */
  }
  #np-hero {
    padding: 6rem 1.5rem 3rem;
  }
  .np-form-layout {
    padding: 1.5rem;
  }
}
