@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #111827;
}

/* Layout helpers */
.nc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.nc-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(249, 250, 251, 0.85);
  border-bottom: 1px solid #e5e7eb;
}

.nc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nc-logo {
  font-weight: 700;
  font-size: 20px;
}

.nc-nav a {
  margin-left: 20px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.nc-nav a:hover {
  color: #111827;
}

/* Hero */
.nc-hero {
  padding: 140px 0 160px;
}

.nc-hero-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.nc-hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.nc-hero-text p {
  font-size: 16px;
  color: #4b5563;
  max-width: 420px;
  margin: 0 0 24px;
}

.nc-hero-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.nc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.nc-btn-primary {
  background: #00b894;
  color: #ffffff;
}

.nc-btn-primary:hover {
  background: #00a982;
}

.nc-btn-ghost {
  background: transparent;
  color: #111827;
  border-color: #d1d5db;
}

.nc-btn-ghost:hover {
  background: #f3f4f6;
}


/* Mobile */
@media (max-width: 768px) {
  .nc-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .nc-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .nc-hero-actions {
    justify-content: center;
  }
}

/* Typography refinement */
.nc-hero-text h1 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nc-hero-text p {
  font-weight: 400;
  line-height: 1.55;
}


.hero-phone {
  width: 360px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Final phone mockup system */
.nc-hero-mockup {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
}

.hero-phone {
  width: 360px;
  height: 720px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WHY NOCENTS SECTION — REFINED */
.nc-why {
  padding: 100px 0 120px;
  background: #fdfdfd;
  border-top: 1px solid #f1f3f5;
}

.nc-section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: #111827;
  letter-spacing: -0.5px;
}

.nc-why-inner {
  max-width: 920px;
}

.nc-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}

.nc-why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
  letter-spacing: -0.25px;
}

.nc-why-item p {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 360px;
}

/* Make columns look more consistent */
.nc-why-item {
  padding-right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .nc-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .nc-why-item p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* WHY NOCENTS SECTION */
.nc-why {
  padding: 120px 0;
  background: #ffffff;
}

.nc-section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: #111827;
}

.nc-why-inner {
  max-width: 960px;
}

.nc-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}

.nc-why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.nc-why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Mobile */
@media (max-width: 768px) {
  .nc-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

/* ========================= */
/* FEATURES SECTION          */
/* ========================= */

.nc-features {
  padding: 120px 0;
  background: #ffffff;
}

.nc-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111827;
  letter-spacing: -0.3px;
}

.nc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.nc-feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.nc-feature-item p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.55;
  max-width: 360px;
}

/* Mobile */
@media (max-width: 900px) {
  .nc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nc-features-grid {
    grid-template-columns: 1fr;
  }
  .nc-feature-item p {
    max-width: 100%;
  }
}

/* ========================= */
/* APP SCREENS SECTION       */
/* ========================= */

.nc-screens {
  padding: 120px 0;
  background: #f9fafb;
}

.nc-screens-row {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
}

.nc-screens-row::-webkit-scrollbar {
  height: 8px;
}

.nc-screens-row::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.nc-screen-item {
  flex: 0 0 280px;
  height: 560px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-screen-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modern Carousel */
.nc-carousel {
  padding: 120px 0;
  text-align: center;
}

.nc-carousel h2 {
  font-size: 34px;
  margin-bottom: 48px;
  font-weight: 700;
}

.nc-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 32px;
  padding: 20px;
  justify-content: center;
  scrollbar-width: none;
}

.nc-carousel-track::-webkit-scrollbar {
  display: none;
}

.nc-carousel-card {
  scroll-snap-align: center;
  flex: 0 0 260px;
  height: 540px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Slight zoom for center-focused effect */
.nc-carousel-card:active {
  transform: scale(0.97);
}

.nc-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Edge fade for premium feel */
.nc-carousel::before,
.nc-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.nc-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f9fafb 0%, transparent 100%);
}

.nc-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f9fafb 0%, transparent 100%);
}

/* =============================
   MODERN SCROLL SNAP CAROUSEL
   ============================= */

.nc-carousel {
  padding: 120px 0;
  text-align: center;
}

.nc-carousel h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #0f172a;
}

/* The wrapper that scrolls */
.nc-carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 40px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nc-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Each card */
.nc-carousel-card {
  flex: 0 0 280px;
  height: 560px;
  border-radius: 32px;
  background: white;
  scroll-snap-align: center;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.10),
    0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.nc-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Personas Section */
.nc-personas {
  padding: 120px 0;
  text-align: center;
}

.nc-personas h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.nc-personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.nc-persona-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.nc-persona-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.nc-persona-card p {
  color: #4b5563;
  line-height: 1.55;
}

/* Mobile */
@media (max-width: 768px) {
  .nc-personas-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Privacy Section */
.nc-privacy {
  padding: 140px 0;
  background: #ffffff;
  text-align: center;
}

.nc-privacy h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.nc-privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nc-privacy-card {
  padding: 32px;
  border-radius: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.nc-privacy-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.nc-privacy-card p {
  color: #4b5563;
  line-height: 1.6;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .nc-privacy-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA Section */
.nc-final-cta {
  padding: 160px 0;
  text-align: center;
  background: #f0fdfa; /* subtle mint-tinted white */
}

.nc-final-cta-inner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.nc-final-cta-inner p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 32px;
}

.nc-final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .nc-final-cta-actions {
    flex-direction: column;
  }
}

/* FAQ Section */
.nc-faq {
  padding: 120px 0;
}

.nc-faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}

.nc-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.nc-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
}

.nc-faq-question .chevron {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #6b7280;
}

.nc-faq-answer {
  display: none;
  padding: 8px 0 20px 0;
  color: #4b5563;
}
.nc-faq-item.open .nc-faq-answer {
  display: block;
}


.nc-faq-item.open .chevron {
  transform: rotate(90deg);
}

/* ======================= */
/* FINAL CTA SECTION */
/* ======================= */

.nc-final-cta {
  padding: 140px 0;
  text-align: center;
  background: #f9fafb;
}

.nc-final-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #111827;
}

.nc-final-sub {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 36px;
}

.nc-final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.nc-final-micro {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .nc-final-actions {
    flex-direction: column;
  }

  .nc-final-cta h2 {
    font-size: 28px;
  }
}
