/* ═══ HERO ═══════════════════════════════════════════════════ */
.nfc-hero {
  background: linear-gradient(135deg, #0a1322 0%, #051422 60%, #0d1f3c 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nfc-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(165,133,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.nfc-hero__badge {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a58542;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
}
.nfc-hero__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
}
.nfc-hero__desc {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══ INTRO ═══════════════════════════════════════════════════ */
.nfc-intro-section {
  padding: 80px 0;
}
.nfc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nfc-intro__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a58542;
  font-family: 'Raleway', sans-serif;
  display: block;
  margin-bottom: 16px;
}
.nfc-intro__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #051422;
  line-height: 1.2;
  margin: 0 0 24px;
}
.nfc-intro__text p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.nfc-intro__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ═══ STEPS ══════════════════════════════════════════════════ */
.nfc-steps-section {
  background: #f9f9f9;
  padding: 80px 0;
}
.nfc-steps-header {
  text-align: center;
  margin-bottom: 60px;
}
.nfc-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a58542;
  font-family: 'Raleway', sans-serif;
  display: block;
  margin-bottom: 12px;
}
.nfc-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #051422;
  margin: 0 0 12px;
}
.nfc-subtitle {
  color: #6b7280;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.nfc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.nfc-step {
  background: #fff;
  padding: 0 0 28px;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nfc-step__num {
  font-family: 'Raleway', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(165,133,66,0.15);
  line-height: 1;
  padding: 20px 20px 0;
}
.nfc-step__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
}
.nfc-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.nfc-step:hover .nfc-step__img {
  transform: scale(1.04);
}
.nfc-step__title {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #051422;
  margin: 0 0 10px;
  padding: 0 20px;
}
.nfc-step__text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  padding: 0 20px;
}

/* ═══ AVANTAGES ══════════════════════════════════════════════ */
.nfc-avantages-section {
  background: #051422;
  padding: 80px 0;
}
.nfc-avantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.nfc-avantage {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(165,133,66,0.3);
  padding: 28px;
  border-top: 3px solid #a58542;
  transition: background 0.2s;
}
.nfc-avantage:hover {
  background: rgba(255,255,255,0.08);
}
.nfc-avantage__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.nfc-avantage__title {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}
.nfc-avantage__text {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nfc-intro { grid-template-columns: 1fr; }
  .nfc-intro__visual { order: -1; }
  .nfc-intro__img { height: 300px; }
  .nfc-steps { grid-template-columns: 1fr; gap: 24px; }
  .nfc-avantages { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nfc-hero { padding: 80px 0 60px; }
  .nfc-avantages { grid-template-columns: 1fr; }
}
